library(MASS)
library(glmnet)
library(caret)
library(forcats)
library(foreign)
library(magrittr)
library(tidyverse)
options(scipen = 9999)
This is a short introductory guide that shows the basic procedures to weight a survey. Please keep in mind that there are many different ways of weighting a survey. This guide intends to be a practical document and intentionally avoids explaining complex or advanced methods. Instead, It aims at providing a standard way of weighting and a limited number of variations.
For more information you can check the following introductory texts:
And the book accompaining the R ‘survey’ package:
It is important to note that this guide focuses on surveys based on ‘probability sample’. These are surveys where all units in our statistical population have a chance of being selected and the probability of selection is known to the researcher. A brief note on how to weight non-probability samples is included at the end of the guide.
Weighting is done to reduce survey bias. Informally explained, weighting consists on making our sample of survey respondents (more) representative of our statistical population. By statistical population I mean all those units for which we want to compute estimates.
There are four basic steps in weighting. These are:
The first step consists on computing weights to take into account the differences of units in the probability of being sampled. ‘Being sampled’ means being selected from the survey frame (i.e. the list of all units) to be approached for a survey response. This step can be skipped if all units in the survey frame have the same probability of being sampled. This happens, for example 1) when all units in the survey frame are approached for the sample or; 2) when the sampling design corresponds to either ‘simple random sampling without replacement’ or ‘stratified random sampling without replacement’ and the distribution of sampled units across stratums is proportional to the number of units in each stratum. These are called ‘self-weighted’ surveys.
In the second step we need to adjust our responses by the differences in probabilities of sampled units to reply to our survey. Our estimates would be biased if some profile of sampled units had higher propensity to reply than another and these profiles had differences in the dependent variables (i.e. our variables of interest). In this step, we need to estimate the probability of response using information available for both respondents and non-respondents. Non-response adjustment is not needed if all sampled units responded to the survey.
The third step consists on adjusting our weights using available information about total population estimates. Note that this requieres data that is different from that needed in non-response adjustment (second step). Here we need auxiliary data which tells us information (i.e. estimates such as proportions, means, sums, counts) about the statistical population. The same variables should be available from our respondents but here we don’t need information about non-respondents.
The last step is to check the variablity in our computed weights. High variation in weights can lead to some observations having too much importance in our sample. Even if weights reduce bias, they might largely inflate variance of estimates. Therefore, some survey practitioners worry about dealing with highly unequal weights.
We first import data into R.
sample.data <- read.spss("data/ESS7SDDFe1_1.sav", to.data.frame = T) %>%
filter(cntry == "United Kingdom")
paradata <- read.spss("data/ess7CFe02_1.sav", to.data.frame = T) %>%
filter(cntry == "United Kingdom")
responses <- read.spss("data/ESS7e02_1.sav", to.data.frame = T) %>%
filter(cntry == "United Kingdom")
original.weights <- responses %>% select(idno ,dweight, pspwght, pweight)
We select the variables we are going to use in our analysis. Here we just write the names of the variables we intend to use.
vars.sample.data <- c("idno", "psu", "prob")
# Note: In sample file, domain and stratify variables could be useful for other countries.
vars.paradata <- c("idno", "typesamp", "interva", "telnum",
"agea_1", "gendera1", "type", "access",
"physa", "littera", "vandaa")
# Note: In paradata file, age of sampled unit could be useful for other countries.
resp.id <- c("idno")
resp.y <- c("cgtsmke", "cgtsday",
"alcfreq", "alcwkdy", "alcwknd")
resp.x <- c("vote", "prtvtbgb",
"prtclbgb", "prtdgcl",
"ctzcntr", "ctzshipc",
"brncntr","cntbrthc",
"gndr", "agea", "hhmmb","eisced",
"pdwrk", "edctn", "uempla", "uempli", "rtrd",
"wrkctra", "hinctnta")
Then we keep the variable labels (although these are not common in R).
selected.labels.sample.data <- attributes(sample.data)$variable.labels[which(names(sample.data) %in% vars.sample.data)]
selected.labels.paradata <- attributes(paradata)$variable.labels[which(names(paradata) %in% vars.paradata)]
selected.labels.responses <- attributes(responses)$variable.labels[which(names(responses) %in% c(resp.y, resp.x))]
attributes(responses)$variable.labels %>%
cbind(names(responses),.) %>%
as_data_frame %>%
write_csv("interim_output/variable_labels.csv")
Now we do the selection of variables from the three data sets.
sample.data %<>%
.[vars.sample.data]
paradata %<>%
.[vars.paradata]
responses %<>%
.[which(names(responses) %in% c(resp.id, resp.y, resp.x))]
We merge the ‘paradata’ file containing all sampled units with the ‘survey responses’ file. In a real situation, there would also be a ‘survey frame’ dataset. This would be a third data file from which the sample was selected. Ideally, the ‘survey frame’ would include all units from the population.
data <- paradata %>%
left_join(sample.data, by = "idno") %>%
left_join(responses, by = "idno") %>%
arrange(interva)
rm(paradata,
sample.data,
responses)
And we add the labels we kept before.
# Note: There are other variables that could be selected from paradata (i.e. result of visits, refusals, etc.)
attributes(data)$variable.labels <- c(selected.labels.paradata, selected.labels.sample.data[!names(selected.labels.sample.data) %in% "idno"],
selected.labels.responses)
Recoding daily cigarette consumption. All those that responded that don’t smoke should have a 0.
data$cgtsday[data$cgtsmke %in% c("I have never smoked",
"I don't smoke now but I used to",
"I have only smoked a few times")] <- 0
data$alcohol_day <- NA
data$alcohol_day <- (data$alcwkdy * 5 + data$alcwknd *2)/7
data$alcohol_day[which(data$alcfreq == "Several times a week")] <- data$alcohol_day / 2.5
data$alcohol_day[which(data$alcfreq == "Once a week")] <- data$alcohol_day/7
data$alcohol_day[which(data$alcfreq == "2-3 times a month")] <- data$alcohol_day/10
data$alcohol_day[which(data$alcfreq == "Once a month")] <- data$alcohol_day/30
data$alcohol_day[which(data$alcfreq == "Less than once a month")] <- data$alcohol_day/50
data$alcohol_day[which(data$alcfreq == "Never")] <- 0
resp.y <- c(resp.y, "alcohol_day")
The merged data set contains sampled respondents and non-respondents. It contains a total of 5600 units and 38 variables.
dim(data)
## [1] 5600 38
The data set contains information about 2265 respondents and 3335 non-respondents.
And this is a list of the variables it contains (with their labels). idno is the individual identification variable.
cbind(names(data),attributes(data)$variable.labels) %>%
as_data_frame() %>%
print()
## # A tibble: 38 × 2
## V1
## <chr>
## 1 idno
## 2 typesamp
## 3 interva
## 4 telnum
## 5 agea_1
## 6 gendera1
## 7 type
## 8 access
## 9 physa
## 10 littera
## # ... with 28 more rows, and 1 more variables: V2 <chr>
Here I will try to give population estimates for cigarette and alcohol consumption in the UK. These will be our ‘y’ variables or variables of interest. The information for these variables was obtained from survey responses. The idea is to first give descriptives of the distribution of these two variables such as quantiles and mean. Then I will do a simple extrapolation and compute total cigarette and alcohol consumption for the whole UK.
These are our y variables:
data[resp.y]
## cgtsmke cgtsday alcfreq
## 1 I have never smoked 0 Once a week
## 2 I smoke daily 10 Once a week
## 3 I have never smoked 0 Several times a week
## 4 I have never smoked 0 Never
## 5 I smoke daily 20 2-3 times a month
## 6 I don't smoke now but I used to 0 Several times a week
## 7 I don't smoke now but I used to 0 Once a week
## 8 I smoke daily 15 Never
## 9 I have never smoked 0 Never
## 10 I smoke daily 20 Several times a week
## 11 I don't smoke now but I used to 0 Several times a week
## 12 I smoke daily 10 Once a week
## 13 I smoke daily 40 Once a week
## 14 I have never smoked 0 Several times a week
## 15 I don't smoke now but I used to 0 Less than once a month
## 16 I have never smoked 0 Once a week
## 17 I don't smoke now but I used to 0 Never
## 18 I smoke daily 18 Several times a week
## 19 I have never smoked 0 Several times a week
## 20 I don't smoke now but I used to 0 Once a week
## 21 I have never smoked 0 Several times a week
## 22 I have never smoked 0 Several times a week
## 23 I have only smoked a few times 0 Several times a week
## 24 I have never smoked 0 Once a week
## 25 I don't smoke now but I used to 0 Never
## 26 I have never smoked 0 Once a week
## 27 I smoke daily 30 2-3 times a month
## 28 I have never smoked 0 Less than once a month
## 29 I don't smoke now but I used to 0 Once a month
## 30 I smoke daily 15 2-3 times a month
## 31 I don't smoke now but I used to 0 Several times a week
## 32 I have only smoked a few times 0 Several times a week
## 33 I don't smoke now but I used to 0 Never
## 34 I have only smoked a few times 0 Never
## 35 I have never smoked 0 Never
## 36 I have never smoked 0 Never
## 37 I have never smoked 0 Several times a week
## 38 I have never smoked 0 Never
## 39 I smoke daily 20 Less than once a month
## 40 I don't smoke now but I used to 0 2-3 times a month
## 41 I have never smoked 0 Never
## 42 I have never smoked 0 Less than once a month
## 43 I don't smoke now but I used to 0 Once a week
## 44 I have never smoked 0 Several times a week
## 45 I smoke daily 2 Once a week
## 46 I smoke daily 10 Once a week
## 47 I have never smoked 0 2-3 times a month
## 48 I have never smoked 0 Several times a week
## 49 I have never smoked 0 2-3 times a month
## 50 I don't smoke now but I used to 0 Every day
## 51 I have only smoked a few times 0 Once a week
## 52 I have never smoked 0 Never
## 53 I have never smoked 0 Several times a week
## 54 I smoke daily 10 Less than once a month
## 55 I have never smoked 0 Never
## 56 I smoke but not every day 4 Never
## 57 I have never smoked 0 Once a week
## 58 I have never smoked 0 Never
## 59 I smoke but not every day 2 Every day
## 60 I don't smoke now but I used to 0 Several times a week
## 61 I smoke daily 5 Several times a week
## 62 I don't smoke now but I used to 0 2-3 times a month
## 63 I have never smoked 0 Never
## 64 I have never smoked 0 Never
## 65 I don't smoke now but I used to 0 Several times a week
## 66 I don't smoke now but I used to 0 Once a week
## 67 I have never smoked 0 Several times a week
## 68 I don't smoke now but I used to 0 2-3 times a month
## 69 I have never smoked 0 Never
## 70 I don't smoke now but I used to 0 Every day
## 71 I have never smoked 0 Less than once a month
## 72 I don't smoke now but I used to 0 Several times a week
## 73 I don't smoke now but I used to 0 Several times a week
## 74 I don't smoke now but I used to 0 Less than once a month
## 75 I have only smoked a few times 0 Every day
## 76 I don't smoke now but I used to 0 Once a week
## 77 I smoke but not every day 4 Once a week
## 78 I smoke daily 2 Several times a week
## 79 I have never smoked 0 Every day
## 80 I have never smoked 0 Once a month
## 81 I have never smoked 0 2-3 times a month
## 82 I have only smoked a few times 0 Once a week
## 83 I don't smoke now but I used to 0 Several times a week
## 84 I have never smoked 0 Never
## 85 I smoke daily 10 Less than once a month
## 86 I have never smoked 0 Never
## 87 I don't smoke now but I used to 0 Every day
## 88 I have never smoked 0 Once a month
## 89 I have never smoked 0 Several times a week
## 90 I don't smoke now but I used to 0 Several times a week
## 91 I don't smoke now but I used to 0 Never
## 92 I have never smoked 0 Once a week
## 93 I have never smoked 0 Several times a week
## 94 I have never smoked 0 2-3 times a month
## 95 I have never smoked 0 Less than once a month
## 96 I have never smoked 0 Never
## 97 I smoke daily 10 Every day
## 98 I smoke daily 15 Several times a week
## 99 I smoke daily 15 Several times a week
## 100 I have never smoked 0 Once a week
## 101 I have never smoked 0 Several times a week
## 102 I smoke daily 4 Less than once a month
## 103 I have never smoked 0 Never
## 104 I smoke daily 15 Never
## 105 I don't smoke now but I used to 0 Several times a week
## 106 I don't smoke now but I used to 0 Several times a week
## 107 I have never smoked 0 Less than once a month
## 108 I smoke daily 6 2-3 times a month
## 109 I have never smoked 0 Once a month
## 110 I have never smoked 0 Several times a week
## 111 I have never smoked 0 Less than once a month
## 112 I have never smoked 0 2-3 times a month
## 113 I have never smoked 0 Once a week
## 114 I don't smoke now but I used to 0 Several times a week
## 115 I have never smoked 0 Less than once a month
## 116 I have never smoked 0 Less than once a month
## 117 I have only smoked a few times 0 Every day
## 118 I don't smoke now but I used to 0 Several times a week
## 119 I have never smoked 0 Several times a week
## 120 I have never smoked 0 Every day
## 121 I have never smoked 0 Never
## 122 I don't smoke now but I used to 0 Once a week
## 123 I don't smoke now but I used to 0 Less than once a month
## 124 I don't smoke now but I used to 0 Once a week
## 125 I have never smoked 0 Less than once a month
## 126 I have never smoked 0 Several times a week
## 127 I smoke daily 10 Never
## 128 I have only smoked a few times 0 Several times a week
## 129 I have never smoked 0 Never
## 130 I don't smoke now but I used to 0 Once a week
## 131 I have only smoked a few times 0 Less than once a month
## 132 I smoke daily 40 Never
## 133 I have never smoked 0 Several times a week
## 134 I have never smoked 0 Never
## 135 I smoke but not every day 2 Several times a week
## 136 I have never smoked 0 Several times a week
## 137 I have never smoked 0 Less than once a month
## 138 I smoke daily 20 Several times a week
## 139 I don't smoke now but I used to 0 Several times a week
## 140 I smoke daily 12 Never
## 141 I smoke daily 20 Never
## 142 I smoke daily 20 Once a week
## 143 I smoke daily 10 Never
## 144 I smoke daily 3 Never
## 145 I smoke daily 10 2-3 times a month
## 146 I have never smoked 0 Never
## 147 I have never smoked 0 Several times a week
## 148 I have only smoked a few times 0 Never
## 149 I have only smoked a few times 0 Several times a week
## 150 I have only smoked a few times 0 Every day
## 151 I have never smoked 0 2-3 times a month
## 152 I have never smoked 0 Never
## 153 I smoke daily 18 Several times a week
## 154 I have never smoked 0 Never
## 155 I have never smoked 0 Several times a week
## 156 I don't smoke now but I used to 0 Never
## 157 I smoke daily 10 Less than once a month
## 158 I don't smoke now but I used to 0 Less than once a month
## 159 I smoke but not every day 10 Once a month
## 160 I have never smoked 0 2-3 times a month
## 161 I don't smoke now but I used to 0 Every day
## 162 I don't smoke now but I used to 0 Several times a week
## 163 I have never smoked 0 Several times a week
## 164 I have only smoked a few times 0 Never
## 165 I smoke daily 3 Every day
## 166 I have never smoked 0 Once a week
## 167 I have never smoked 0 Never
## 168 I have never smoked 0 Less than once a month
## 169 I have never smoked 0 Once a week
## 170 I smoke daily 3 2-3 times a month
## 171 I have only smoked a few times 0 Several times a week
## 172 I don't smoke now but I used to 0 Never
## 173 I have never smoked 0 Never
## 174 I smoke daily 5 2-3 times a month
## 175 I have never smoked 0 Less than once a month
## 176 I don't smoke now but I used to 0 Several times a week
## 177 I smoke daily 20 Less than once a month
## 178 I have only smoked a few times 0 Never
## 179 I have never smoked 0 Several times a week
## 180 I have never smoked 0 2-3 times a month
## 181 I have never smoked 0 Several times a week
## 182 I don't smoke now but I used to 0 Once a month
## 183 I smoke but not every day 5 Once a week
## 184 I have only smoked a few times 0 Several times a week
## 185 I smoke but not every day 2 Less than once a month
## 186 I have never smoked 0 Several times a week
## 187 I have never smoked 0 Never
## 188 I smoke daily 10 Never
## 189 I don't smoke now but I used to 0 2-3 times a month
## 190 I smoke daily 5 Never
## 191 I smoke daily 20 Several times a week
## 192 I have never smoked 0 2-3 times a month
## 193 I have never smoked 0 Several times a week
## 194 I smoke daily 12 Several times a week
## 195 I don't smoke now but I used to 0 Several times a week
## 196 I don't smoke now but I used to 0 Several times a week
## 197 I don't smoke now but I used to 0 Several times a week
## 198 I have never smoked 0 2-3 times a month
## 199 I have only smoked a few times 0 Every day
## 200 I have never smoked 0 Several times a week
## 201 I have never smoked 0 Once a week
## 202 I have never smoked 0 Once a month
## 203 I don't smoke now but I used to 0 Several times a week
## 204 I don't smoke now but I used to 0 Never
## 205 I smoke daily 10 Several times a week
## 206 I don't smoke now but I used to 0 Never
## 207 I smoke daily 20 Less than once a month
## 208 I have never smoked 0 Once a week
## 209 I have never smoked 0 Several times a week
## 210 I have only smoked a few times 0 Less than once a month
## 211 I don't smoke now but I used to 0 Several times a week
## 212 I have only smoked a few times 0 2-3 times a month
## 213 I have only smoked a few times 0 Once a week
## 214 I smoke but not every day 2 Several times a week
## 215 I have never smoked 0 Several times a week
## 216 I have never smoked 0 2-3 times a month
## 217 I smoke daily 5 Once a week
## 218 I don't smoke now but I used to 0 Every day
## 219 I smoke daily 20 Less than once a month
## 220 I have never smoked 0 Less than once a month
## 221 I have never smoked 0 Several times a week
## 222 I have only smoked a few times 0 Once a week
## 223 I don't smoke now but I used to 0 Never
## 224 I have only smoked a few times 0 Never
## 225 I have never smoked 0 Once a week
## 226 I have never smoked 0 Never
## 227 I have never smoked 0 Once a week
## 228 I have never smoked 0 Never
## 229 I have never smoked 0 Every day
## 230 I don't smoke now but I used to 0 Less than once a month
## 231 I smoke daily 20 Once a month
## 232 I don't smoke now but I used to 0 Every day
## 233 I smoke daily 15 Once a week
## 234 I have never smoked 0 Several times a week
## 235 I have never smoked 0 Once a month
## 236 I don't smoke now but I used to 0 Every day
## 237 I have only smoked a few times 0 Once a week
## 238 I don't smoke now but I used to 0 Never
## 239 I smoke daily 10 Once a week
## 240 I have never smoked 0 Never
## 241 I smoke daily 10 Less than once a month
## 242 I have only smoked a few times 0 Once a month
## 243 I don't smoke now but I used to 0 Never
## 244 I have only smoked a few times 0 Several times a week
## 245 I have only smoked a few times 0 Once a week
## 246 I don't smoke now but I used to 0 2-3 times a month
## 247 I have only smoked a few times 0 2-3 times a month
## 248 I have never smoked 0 Several times a week
## 249 I smoke daily 2 Once a week
## 250 I have never smoked 0 Once a week
## 251 I have never smoked 0 Once a week
## 252 I have never smoked 0 2-3 times a month
## 253 I have never smoked 0 Once a week
## 254 I don't smoke now but I used to 0 Several times a week
## 255 I have never smoked 0 Several times a week
## 256 I have never smoked 0 Never
## 257 I smoke daily 20 Several times a week
## 258 I have never smoked 0 2-3 times a month
## 259 I don't smoke now but I used to 0 Several times a week
## 260 I have never smoked 0 Several times a week
## 261 I don't smoke now but I used to 0 Never
## 262 I have never smoked 0 Never
## 263 I don't smoke now but I used to 0 2-3 times a month
## 264 I have only smoked a few times 0 Several times a week
## 265 I don't smoke now but I used to 0 Several times a week
## 266 I have only smoked a few times 0 Several times a week
## 267 I don't smoke now but I used to 0 Once a week
## 268 I don't smoke now but I used to 0 Less than once a month
## 269 I have only smoked a few times 0 Once a week
## 270 I smoke daily 20 Once a week
## 271 I have never smoked 0 2-3 times a month
## 272 I have only smoked a few times 0 Several times a week
## 273 I have never smoked 0 Several times a week
## 274 I have only smoked a few times 0 Once a week
## 275 I smoke but not every day 3 2-3 times a month
## 276 I have never smoked 0 Less than once a month
## 277 I have never smoked 0 Once a week
## 278 I have never smoked 0 Once a week
## 279 I have never smoked 0 Once a week
## 280 I smoke daily 20 Less than once a month
## 281 I have never smoked 0 Less than once a month
## 282 I have never smoked 0 Never
## 283 I have never smoked 0 Once a week
## 284 I have never smoked 0 Never
## 285 I have never smoked 0 Once a week
## 286 I smoke but not every day 1 Several times a week
## 287 I have only smoked a few times 0 Never
## 288 I smoke daily 15 Once a week
## 289 I smoke daily 20 Never
## 290 I have never smoked 0 Once a week
## 291 I don't smoke now but I used to 0 Never
## 292 I have never smoked 0 Once a week
## 293 I don't smoke now but I used to 0 Several times a week
## 294 I don't smoke now but I used to 0 Less than once a month
## 295 I have never smoked 0 Never
## 296 I don't smoke now but I used to 0 Every day
## 297 I don't smoke now but I used to 0 Several times a week
## 298 I smoke daily 20 Less than once a month
## 299 I don't smoke now but I used to 0 Every day
## 300 I have only smoked a few times 0 Never
## 301 I have never smoked 0 Less than once a month
## 302 I have never smoked 0 2-3 times a month
## 303 I have never smoked 0 Never
## 304 I smoke daily 5 Several times a week
## 305 I smoke daily 8 Several times a week
## 306 I have never smoked 0 Every day
## 307 I smoke but not every day 3 Several times a week
## 308 I don't smoke now but I used to 0 Once a week
## 309 I have never smoked 0 Several times a week
## 310 I don't smoke now but I used to 0 Never
## 311 I don't smoke now but I used to 0 Once a month
## 312 I don't smoke now but I used to 0 Several times a week
## 313 I have only smoked a few times 0 Once a week
## 314 I smoke daily 5 Never
## 315 I smoke daily 15 Several times a week
## 316 I have never smoked 0 Never
## 317 I have never smoked 0 Several times a week
## 318 I have never smoked 0 Once a week
## 319 I don't smoke now but I used to 0 Several times a week
## 320 I smoke daily 5 Several times a week
## 321 I have only smoked a few times 0 Several times a week
## 322 I have only smoked a few times 0 Several times a week
## 323 I smoke daily 15 2-3 times a month
## 324 I smoke but not every day 2 Several times a week
## 325 I have never smoked 0 Once a month
## 326 I don't smoke now but I used to 0 Once a week
## 327 I don't smoke now but I used to 0 Never
## 328 I smoke daily 20 Once a week
## 329 I smoke daily 4 Less than once a month
## 330 I have never smoked 0 Once a week
## 331 I don't smoke now but I used to 0 Less than once a month
## 332 I have only smoked a few times 0 Several times a week
## 333 I don't smoke now but I used to 0 Several times a week
## 334 I smoke daily 15 Once a week
## 335 I have only smoked a few times 0 Several times a week
## 336 I don't smoke now but I used to 0 Several times a week
## 337 I have never smoked 0 Once a month
## 338 I have never smoked 0 Never
## 339 I have never smoked 0 Never
## 340 I have never smoked 0 2-3 times a month
## 341 I have never smoked 0 Never
## 342 I have only smoked a few times 0 Less than once a month
## 343 I don't smoke now but I used to 0 Several times a week
## 344 I don't smoke now but I used to 0 Several times a week
## 345 I have never smoked 0 Several times a week
## 346 I smoke daily 20 Less than once a month
## 347 I smoke daily 10 Never
## 348 I have never smoked 0 Less than once a month
## 349 I have never smoked 0 Less than once a month
## 350 I have never smoked 0 Never
## 351 I have never smoked 0 2-3 times a month
## 352 I have never smoked 0 Never
## 353 I don't smoke now but I used to 0 Every day
## 354 I have never smoked 0 2-3 times a month
## 355 I have never smoked 0 Several times a week
## 356 I have never smoked 0 Several times a week
## 357 I have only smoked a few times 0 2-3 times a month
## 358 I have never smoked 0 Never
## 359 I have only smoked a few times 0 Less than once a month
## 360 I smoke daily 15 Never
## 361 I smoke daily 15 Once a week
## 362 I don't smoke now but I used to 0 Never
## 363 I have never smoked 0 Never
## 364 I don't smoke now but I used to 0 Several times a week
## 365 I smoke daily 5 2-3 times a month
## 366 I have never smoked 0 Several times a week
## 367 I don't smoke now but I used to 0 Less than once a month
## 368 I don't smoke now but I used to 0 Several times a week
## 369 I don't smoke now but I used to 0 Never
## 370 I have only smoked a few times 0 Once a week
## 371 I have never smoked 0 Several times a week
## 372 I have never smoked 0 Less than once a month
## 373 I don't smoke now but I used to 0 Several times a week
## 374 I have never smoked 0 Once a week
## 375 I have never smoked 0 Never
## 376 I smoke daily 3 Never
## 377 I smoke daily 15 Several times a week
## 378 I smoke daily 20 Every day
## 379 I don't smoke now but I used to 0 Several times a week
## 380 I don't smoke now but I used to 0 Never
## 381 I have never smoked 0 Never
## 382 I have only smoked a few times 0 Several times a week
## 383 I have never smoked 0 Never
## 384 I have never smoked 0 Never
## 385 I have never smoked 0 2-3 times a month
## 386 I have never smoked 0 Less than once a month
## 387 I have never smoked 0 2-3 times a month
## 388 I have never smoked 0 Several times a week
## 389 I don't smoke now but I used to 0 Several times a week
## 390 I don't smoke now but I used to 0 Never
## 391 I have never smoked 0 Several times a week
## 392 I don't smoke now but I used to 0 Less than once a month
## 393 I smoke daily 10 Once a week
## 394 I don't smoke now but I used to 0 2-3 times a month
## 395 I don't smoke now but I used to 0 Several times a week
## 396 I have never smoked 0 Several times a week
## 397 I smoke daily 50 Never
## 398 I have never smoked 0 2-3 times a month
## 399 I don't smoke now but I used to 0 Several times a week
## 400 I have never smoked 0 2-3 times a month
## 401 I have never smoked 0 Once a week
## 402 I smoke but not every day 5 Several times a week
## 403 I have never smoked 0 Every day
## 404 I have never smoked 0 Several times a week
## 405 I have never smoked 0 Once a week
## 406 I have never smoked 0 Several times a week
## 407 I don't smoke now but I used to 0 Several times a week
## 408 I have never smoked 0 Never
## 409 I have never smoked 0 Once a week
## 410 I have only smoked a few times 0 Once a month
## 411 I don't smoke now but I used to 0 Once a month
## 412 I have never smoked 0 Once a week
## 413 I smoke but not every day 1 Once a month
## 414 I have never smoked 0 2-3 times a month
## 415 I have never smoked 0 Once a week
## 416 I have only smoked a few times 0 Once a week
## 417 I don't smoke now but I used to 0 Several times a week
## 418 I don't smoke now but I used to 0 Less than once a month
## 419 I have never smoked 0 Never
## 420 I don't smoke now but I used to 0 Every day
## 421 I don't smoke now but I used to 0 Several times a week
## 422 I have never smoked 0 Several times a week
## 423 I smoke daily 10 Less than once a month
## 424 I don't smoke now but I used to 0 Once a month
## 425 I have never smoked 0 Several times a week
## 426 I have never smoked 0 Several times a week
## 427 I don't smoke now but I used to 0 Every day
## 428 I have never smoked 0 Less than once a month
## 429 I have never smoked 0 Less than once a month
## 430 I don't smoke now but I used to 0 Several times a week
## 431 I don't smoke now but I used to 0 Less than once a month
## 432 I don't smoke now but I used to 0 Less than once a month
## 433 I smoke daily 20 Less than once a month
## 434 I have never smoked 0 Never
## 435 I don't smoke now but I used to 0 Every day
## 436 I have never smoked 0 Once a week
## 437 I have never smoked 0 Never
## 438 I don't smoke now but I used to 0 Several times a week
## 439 I don't smoke now but I used to 0 Less than once a month
## 440 I have never smoked 0 Once a week
## 441 I don't smoke now but I used to 0 Less than once a month
## 442 I have never smoked 0 Never
## 443 I have never smoked 0 Once a week
## 444 I have never smoked 0 Less than once a month
## 445 I smoke daily NA Every day
## 446 I smoke daily 0 Once a week
## 447 I smoke but not every day 8 Several times a week
## 448 I don't smoke now but I used to 0 Several times a week
## 449 I don't smoke now but I used to 0 Several times a week
## 450 I don't smoke now but I used to 0 Several times a week
## 451 I have never smoked 0 Once a week
## 452 I have only smoked a few times 0 Never
## 453 I have never smoked 0 Once a month
## 454 I smoke daily 10 2-3 times a month
## 455 I have never smoked 0 Never
## 456 I smoke daily 20 Never
## 457 I don't smoke now but I used to 0 Once a month
## 458 I don't smoke now but I used to 0 Less than once a month
## 459 I have never smoked 0 Several times a week
## 460 I have never smoked 0 Once a month
## 461 I have never smoked 0 2-3 times a month
## 462 I have only smoked a few times 0 Several times a week
## 463 I smoke but not every day 1 Once a week
## 464 I don't smoke now but I used to 0 Every day
## 465 I smoke daily 15 Less than once a month
## 466 I have never smoked 0 Several times a week
## 467 I smoke daily 7 Once a week
## 468 I have never smoked 0 Once a week
## 469 I smoke daily 20 Every day
## 470 I don't smoke now but I used to 0 Every day
## 471 I have never smoked 0 Several times a week
## 472 I have never smoked 0 Every day
## 473 I smoke daily 20 Once a week
## 474 I smoke daily 13 Several times a week
## 475 I don't smoke now but I used to 0 Less than once a month
## 476 I have never smoked 0 Several times a week
## 477 I don't smoke now but I used to 0 Less than once a month
## 478 I have never smoked 0 Several times a week
## 479 I have never smoked 0 Less than once a month
## 480 I have only smoked a few times 0 2-3 times a month
## 481 I don't smoke now but I used to 0 Several times a week
## 482 I smoke daily 20 Never
## 483 I smoke daily 13 Once a week
## 484 I have never smoked 0 Several times a week
## 485 I have only smoked a few times 0 Never
## 486 I have only smoked a few times 0 Every day
## 487 I have only smoked a few times 0 Less than once a month
## 488 I have never smoked 0 Once a week
## 489 I don't smoke now but I used to 0 Once a week
## 490 I have never smoked 0 Less than once a month
## 491 I have never smoked 0 Several times a week
## 492 I smoke daily 5 Once a week
## 493 I have never smoked 0 Once a month
## 494 I have never smoked 0 Once a week
## 495 I smoke daily 18 Less than once a month
## 496 I have never smoked 0 Never
## 497 I don't smoke now but I used to 0 2-3 times a month
## 498 I have never smoked 0 Several times a week
## 499 I have only smoked a few times 0 2-3 times a month
## 500 I don't smoke now but I used to 0 Every day
## 501 I smoke daily 4 Once a week
## 502 I have only smoked a few times 0 Every day
## 503 I don't smoke now but I used to 0 Several times a week
## 504 I have never smoked 0 Never
## 505 I have never smoked 0 Never
## 506 I have never smoked 0 Several times a week
## 507 I have only smoked a few times 0 Several times a week
## 508 I smoke daily 15 Several times a week
## 509 I smoke but not every day 5 2-3 times a month
## 510 I have only smoked a few times 0 Never
## 511 I smoke daily 8 2-3 times a month
## 512 I don't smoke now but I used to 0 Several times a week
## 513 I have never smoked 0 Never
## 514 I have never smoked 0 Never
## 515 I smoke daily 5 Several times a week
## 516 I have never smoked 0 Less than once a month
## 517 I have never smoked 0 Never
## 518 I don't smoke now but I used to 0 Once a week
## 519 I smoke daily 15 2-3 times a month
## 520 I have never smoked 0 Once a month
## 521 I smoke daily 20 Several times a week
## 522 I have never smoked 0 Never
## 523 I have never smoked 0 Several times a week
## 524 I smoke daily 15 Several times a week
## 525 I have never smoked 0 2-3 times a month
## 526 I have only smoked a few times 0 Several times a week
## 527 I don't smoke now but I used to 0 Several times a week
## 528 I smoke daily 20 Once a week
## 529 I smoke daily 12 Once a week
## 530 I don't smoke now but I used to 0 2-3 times a month
## 531 I don't smoke now but I used to 0 Less than once a month
## 532 I smoke but not every day 2 Several times a week
## 533 I don't smoke now but I used to 0 Several times a week
## 534 I have only smoked a few times 0 2-3 times a month
## 535 I smoke daily 5 Never
## 536 I have never smoked 0 Less than once a month
## 537 I have never smoked 0 Once a month
## 538 I have never smoked 0 Less than once a month
## 539 I have never smoked 0 2-3 times a month
## 540 I smoke daily 12 Every day
## 541 I don't smoke now but I used to 0 Several times a week
## 542 I don't smoke now but I used to 0 Every day
## 543 I don't smoke now but I used to 0 Less than once a month
## 544 I don't smoke now but I used to 0 Less than once a month
## 545 I don't smoke now but I used to 0 Several times a week
## 546 I have only smoked a few times 0 Several times a week
## 547 I don't smoke now but I used to 0 Once a month
## 548 I have never smoked 0 Never
## 549 I have never smoked 0 2-3 times a month
## 550 I don't smoke now but I used to 0 Less than once a month
## 551 I have never smoked 0 Several times a week
## 552 I have never smoked 0 Several times a week
## 553 I have only smoked a few times 0 Several times a week
## 554 I have never smoked 0 Once a week
## 555 I have never smoked 0 Once a week
## 556 I don't smoke now but I used to 0 Every day
## 557 I have never smoked 0 Less than once a month
## 558 I don't smoke now but I used to 0 Every day
## 559 I smoke but not every day 1 2-3 times a month
## 560 I don't smoke now but I used to 0 2-3 times a month
## 561 I have never smoked 0 Several times a week
## 562 I smoke daily 10 Once a month
## 563 I have never smoked 0 Several times a week
## 564 I smoke daily 10 Once a week
## 565 I have only smoked a few times 0 Once a week
## 566 I smoke daily 15 Never
## 567 I have never smoked 0 Several times a week
## 568 I smoke daily 6 2-3 times a month
## 569 I smoke but not every day 1 2-3 times a month
## 570 I have only smoked a few times 0 Once a week
## 571 I smoke daily 10 Once a month
## 572 I have never smoked 0 Once a week
## 573 I don't smoke now but I used to 0 Never
## 574 I have only smoked a few times 0 Several times a week
## 575 I have never smoked 0 Less than once a month
## 576 I have never smoked 0 Once a month
## 577 I have never smoked 0 Never
## 578 I don't smoke now but I used to 0 Several times a week
## 579 I smoke daily 10 Once a week
## 580 I have never smoked 0 2-3 times a month
## 581 I smoke but not every day 5 Once a week
## 582 I have never smoked 0 Once a week
## 583 I smoke but not every day 2 Less than once a month
## 584 I have never smoked 0 Once a week
## 585 I have only smoked a few times 0 Never
## 586 I have only smoked a few times 0 Several times a week
## 587 I don't smoke now but I used to 0 Once a week
## 588 I have never smoked 0 Never
## 589 I have never smoked 0 Once a week
## 590 I have never smoked 0 Never
## 591 I have never smoked 0 Several times a week
## 592 I have never smoked 0 Several times a week
## 593 I don't smoke now but I used to 0 Never
## 594 I have only smoked a few times 0 Once a week
## 595 I don't smoke now but I used to 0 Less than once a month
## 596 I have never smoked 0 Once a week
## 597 I have never smoked 0 Less than once a month
## 598 I have only smoked a few times 0 Several times a week
## 599 I smoke daily 10 Once a week
## 600 I have never smoked 0 Several times a week
## 601 I don't smoke now but I used to 0 Every day
## 602 I smoke daily 30 Never
## 603 I smoke daily 20 Never
## 604 I smoke daily NA Every day
## 605 I don't smoke now but I used to 0 Never
## 606 I have never smoked 0 Never
## 607 I have never smoked 0 Less than once a month
## 608 I don't smoke now but I used to 0 Once a week
## 609 I don't smoke now but I used to 0 Several times a week
## 610 I don't smoke now but I used to 0 Once a month
## 611 I have never smoked 0 Several times a week
## 612 I don't smoke now but I used to 0 Less than once a month
## 613 I have never smoked 0 Never
## 614 I have never smoked 0 Once a month
## 615 I have never smoked 0 Once a month
## 616 I have never smoked 0 2-3 times a month
## 617 I have never smoked 0 Once a week
## 618 I don't smoke now but I used to 0 2-3 times a month
## 619 I have never smoked 0 Never
## 620 I smoke daily 25 Never
## 621 I smoke daily 15 Less than once a month
## 622 I don't smoke now but I used to 0 Never
## 623 I smoke daily 10 2-3 times a month
## 624 I don't smoke now but I used to 0 Less than once a month
## 625 I have never smoked 0 Never
## 626 I have never smoked 0 Never
## 627 I don't smoke now but I used to 0 Less than once a month
## 628 I smoke daily 9 Once a month
## 629 I have never smoked 0 Several times a week
## 630 I smoke daily 10 Once a week
## 631 I smoke daily 20 Never
## 632 I have only smoked a few times 0 Less than once a month
## 633 I have never smoked 0 Less than once a month
## 634 I don't smoke now but I used to 0 2-3 times a month
## 635 I have only smoked a few times 0 Once a week
## 636 I have only smoked a few times 0 Once a week
## 637 I have never smoked 0 Less than once a month
## 638 I don't smoke now but I used to 0 Less than once a month
## 639 I smoke daily 25 Once a week
## 640 I don't smoke now but I used to 0 Less than once a month
## 641 I have never smoked 0 Every day
## 642 I have never smoked 0 Several times a week
## 643 I have never smoked 0 Several times a week
## 644 I have never smoked 0 Less than once a month
## 645 I don't smoke now but I used to 0 Several times a week
## 646 I have never smoked 0 Once a week
## 647 I have only smoked a few times 0 2-3 times a month
## 648 I smoke daily 12 Less than once a month
## 649 I don't smoke now but I used to 0 Once a week
## 650 I smoke daily 14 Once a month
## 651 I smoke daily 15 2-3 times a month
## 652 I have never smoked 0 Once a month
## 653 I don't smoke now but I used to 0 Every day
## 654 I have never smoked 0 Never
## 655 I smoke daily 10 Never
## 656 I don't smoke now but I used to 0 2-3 times a month
## 657 I smoke daily 20 Once a week
## 658 I have never smoked 0 2-3 times a month
## 659 I don't smoke now but I used to 0 Several times a week
## 660 I don't smoke now but I used to 0 Several times a week
## 661 I have only smoked a few times 0 2-3 times a month
## 662 I have never smoked 0 Once a week
## 663 I smoke but not every day 1 Every day
## 664 I smoke daily 12 Once a week
## 665 I smoke daily 10 2-3 times a month
## 666 I don't smoke now but I used to 0 Never
## 667 I have never smoked 0 Once a week
## 668 I smoke daily 10 Several times a week
## 669 I have never smoked 0 Once a week
## 670 I have never smoked 0 Several times a week
## 671 I don't smoke now but I used to 0 Several times a week
## 672 I have never smoked 0 Once a week
## 673 I don't smoke now but I used to 0 Several times a week
## 674 I have never smoked 0 Once a week
## 675 I don't smoke now but I used to 0 Several times a week
## 676 I smoke daily 3 Several times a week
## 677 I have never smoked 0 Once a week
## 678 I don't smoke now but I used to 0 Never
## 679 I don't smoke now but I used to 0 Once a week
## 680 I don't smoke now but I used to 0 Never
## 681 I have never smoked 0 Once a week
## 682 I don't smoke now but I used to 0 Once a week
## 683 I don't smoke now but I used to 0 Less than once a month
## 684 I smoke daily 10 Once a week
## 685 I have never smoked 0 Once a week
## 686 I smoke daily NA Every day
## 687 I smoke daily 2 Never
## 688 I don't smoke now but I used to 0 Never
## 689 I smoke daily 8 Every day
## 690 I don't smoke now but I used to 0 Several times a week
## 691 I have never smoked 0 Never
## 692 I don't smoke now but I used to 0 Several times a week
## 693 I don't smoke now but I used to 0 Once a week
## 694 I don't smoke now but I used to 0 Several times a week
## 695 I have never smoked 0 Never
## 696 I have never smoked 0 Every day
## 697 I have never smoked 0 Less than once a month
## 698 I have never smoked 0 Once a month
## 699 I have never smoked 0 Never
## 700 I have never smoked 0 Once a week
## 701 I have never smoked 0 Once a week
## 702 I have only smoked a few times 0 2-3 times a month
## 703 I have never smoked 0 Once a week
## 704 I have only smoked a few times 0 Less than once a month
## 705 I have only smoked a few times 0 2-3 times a month
## 706 I have never smoked 0 Never
## 707 I have never smoked 0 Several times a week
## 708 I have only smoked a few times 0 Never
## 709 I smoke daily 30 Never
## 710 I don't smoke now but I used to 0 Less than once a month
## 711 I smoke daily 20 Several times a week
## 712 I have never smoked 0 Never
## 713 I don't smoke now but I used to 0 Several times a week
## 714 I have never smoked 0 Once a week
## 715 I don't smoke now but I used to 0 Never
## 716 I have never smoked 0 Several times a week
## 717 I don't smoke now but I used to 0 Never
## 718 I have never smoked 0 Never
## 719 I have never smoked 0 Every day
## 720 I don't smoke now but I used to 0 Every day
## 721 I have never smoked 0 Less than once a month
## 722 I smoke daily 3 2-3 times a month
## 723 I have never smoked 0 Never
## 724 I don't smoke now but I used to 0 <NA>
## 725 I smoke daily 5 Never
## 726 I smoke daily 7 Several times a week
## 727 I smoke daily 25 Less than once a month
## 728 I have only smoked a few times 0 Never
## 729 I have never smoked 0 Once a week
## 730 I don't smoke now but I used to 0 Once a week
## 731 I smoke daily 30 Less than once a month
## 732 I smoke daily 15 Once a week
## 733 I have never smoked 0 Never
## 734 I smoke but not every day 3 2-3 times a month
## 735 I have never smoked 0 Never
## 736 I have never smoked 0 Once a month
## 737 I have never smoked 0 Several times a week
## 738 I have never smoked 0 Several times a week
## 739 I have only smoked a few times 0 Every day
## 740 I have only smoked a few times 0 Once a week
## 741 I don't smoke now but I used to 0 Every day
## 742 I have never smoked 0 Several times a week
## 743 I smoke but not every day 5 Several times a week
## 744 I don't smoke now but I used to 0 Less than once a month
## 745 I have never smoked 0 Once a week
## 746 I have never smoked 0 Less than once a month
## 747 I have never smoked 0 Never
## 748 I have never smoked 0 Never
## 749 I have never smoked 0 Less than once a month
## 750 I have never smoked 0 Less than once a month
## 751 I don't smoke now but I used to 0 2-3 times a month
## 752 I don't smoke now but I used to 0 Once a month
## 753 I have never smoked 0 Never
## 754 I don't smoke now but I used to 0 Several times a week
## 755 I smoke daily 25 Less than once a month
## 756 I have never smoked 0 Once a week
## 757 I have never smoked 0 Several times a week
## 758 I have never smoked 0 Never
## 759 I have only smoked a few times 0 Less than once a month
## 760 I have never smoked 0 2-3 times a month
## 761 I have never smoked 0 Less than once a month
## 762 I smoke daily 8 Never
## 763 I have only smoked a few times 0 Several times a week
## 764 I have never smoked 0 Never
## 765 I smoke daily 15 Never
## 766 I have never smoked 0 Several times a week
## 767 I don't smoke now but I used to 0 Every day
## 768 I have never smoked 0 2-3 times a month
## 769 I smoke daily 20 Less than once a month
## 770 I don't smoke now but I used to 0 Several times a week
## 771 I have never smoked 0 Once a week
## 772 I have never smoked 0 Never
## 773 I have never smoked 0 Never
## 774 I don't smoke now but I used to 0 Less than once a month
## 775 I don't smoke now but I used to 0 Several times a week
## 776 I have never smoked 0 Less than once a month
## 777 I have never smoked 0 Once a week
## 778 I have never smoked 0 Several times a week
## 779 I smoke daily 20 Several times a week
## 780 I smoke daily 16 Less than once a month
## 781 I have never smoked 0 Never
## 782 I have never smoked 0 Never
## 783 I don't smoke now but I used to 0 Several times a week
## 784 I have never smoked 0 Once a week
## 785 I have only smoked a few times 0 Several times a week
## 786 I have never smoked 0 Never
## 787 I have never smoked 0 Once a week
## 788 I smoke but not every day 7 Several times a week
## 789 I have never smoked 0 Less than once a month
## 790 I have never smoked 0 Several times a week
## 791 I have never smoked 0 Several times a week
## 792 I have never smoked 0 Several times a week
## 793 I don't smoke now but I used to 0 Less than once a month
## 794 I don't smoke now but I used to 0 Less than once a month
## 795 I have never smoked 0 Once a week
## 796 I don't smoke now but I used to 0 Several times a week
## 797 I smoke daily 5 Several times a week
## 798 I smoke daily 5 Never
## 799 I have never smoked 0 2-3 times a month
## 800 I have never smoked 0 Several times a week
## 801 I smoke daily 10 Every day
## 802 I don't smoke now but I used to 0 Never
## 803 I have never smoked 0 Never
## 804 I don't smoke now but I used to 0 Never
## 805 I smoke daily 9 Once a month
## 806 I have never smoked 0 Never
## 807 I smoke daily 17 Every day
## 808 I don't smoke now but I used to 0 Less than once a month
## 809 I have only smoked a few times 0 Once a week
## 810 I smoke daily 15 Several times a week
## 811 I have never smoked 0 Never
## 812 I don't smoke now but I used to 0 Less than once a month
## 813 I have never smoked 0 2-3 times a month
## 814 I smoke daily 10 2-3 times a month
## 815 I have never smoked 0 Several times a week
## 816 I smoke daily 0 Several times a week
## 817 I smoke daily 20 Never
## 818 I have never smoked 0 Every day
## 819 I have never smoked 0 Several times a week
## 820 I have never smoked 0 2-3 times a month
## 821 I have never smoked 0 Once a week
## 822 I have only smoked a few times 0 Never
## 823 I smoke daily 12 Several times a week
## 824 I smoke daily 20 Several times a week
## 825 I don't smoke now but I used to 0 Once a week
## 826 I have never smoked 0 Less than once a month
## 827 I don't smoke now but I used to 0 Less than once a month
## 828 I don't smoke now but I used to 0 Once a week
## 829 I have never smoked 0 Once a month
## 830 I have never smoked 0 Several times a week
## 831 I smoke but not every day NA Several times a week
## 832 I don't smoke now but I used to 0 Once a week
## 833 I have never smoked 0 Never
## 834 I smoke daily 10 Several times a week
## 835 I have only smoked a few times 0 Once a week
## 836 I have never smoked 0 Once a week
## 837 I have never smoked 0 Less than once a month
## 838 I smoke daily 20 Several times a week
## 839 I have never smoked 0 Once a month
## 840 I don't smoke now but I used to 0 2-3 times a month
## 841 I don't smoke now but I used to 0 2-3 times a month
## 842 I smoke daily 15 Once a week
## 843 I don't smoke now but I used to 0 Every day
## 844 I smoke daily 20 Never
## 845 I have never smoked 0 Several times a week
## 846 I smoke daily 5 Once a week
## 847 I have never smoked 0 Never
## 848 I don't smoke now but I used to 0 Once a week
## 849 I don't smoke now but I used to 0 Never
## 850 I have never smoked 0 Never
## 851 I don't smoke now but I used to 0 2-3 times a month
## 852 I have never smoked 0 Never
## 853 I don't smoke now but I used to 0 Once a week
## 854 I have never smoked 0 Several times a week
## 855 I smoke daily 20 2-3 times a month
## 856 I have never smoked 0 Several times a week
## 857 I don't smoke now but I used to 0 Several times a week
## 858 I don't smoke now but I used to 0 Less than once a month
## 859 I have never smoked 0 Once a week
## 860 I have never smoked 0 Never
## 861 I have never smoked 0 Never
## 862 I have only smoked a few times 0 Every day
## 863 I have only smoked a few times 0 Less than once a month
## 864 I have never smoked 0 Never
## 865 I have only smoked a few times 0 Once a week
## 866 I don't smoke now but I used to 0 Several times a week
## 867 I have only smoked a few times 0 Once a month
## 868 I don't smoke now but I used to 0 Several times a week
## 869 I don't smoke now but I used to 0 Several times a week
## 870 I have never smoked 0 Once a week
## 871 I have never smoked 0 Once a week
## 872 I have never smoked 0 2-3 times a month
## 873 I don't smoke now but I used to 0 Never
## 874 I don't smoke now but I used to 0 Once a week
## 875 I smoke daily 14 Once a week
## 876 I have never smoked 0 Several times a week
## 877 I smoke but not every day NA 2-3 times a month
## 878 I have never smoked 0 2-3 times a month
## 879 I have only smoked a few times 0 Several times a week
## 880 I have never smoked 0 Once a week
## 881 I smoke daily 20 Several times a week
## 882 I have never smoked 0 Several times a week
## 883 I have never smoked 0 Never
## 884 I have never smoked 0 Less than once a month
## 885 I have never smoked 0 Once a week
## 886 I don't smoke now but I used to 0 Never
## 887 I have never smoked 0 Less than once a month
## 888 I have never smoked 0 Once a week
## 889 I have never smoked 0 Never
## 890 I have never smoked 0 Less than once a month
## 891 I have only smoked a few times 0 Once a month
## 892 I smoke daily 20 Less than once a month
## 893 I have never smoked 0 Never
## 894 I have never smoked 0 Never
## 895 I have never smoked 0 Less than once a month
## 896 I smoke daily 18 Never
## 897 I don't smoke now but I used to 0 Never
## 898 I smoke but not every day 3 Once a week
## 899 I have never smoked 0 Never
## 900 I have never smoked 0 Less than once a month
## 901 I have never smoked 0 Once a month
## 902 I have never smoked 0 Several times a week
## 903 I have only smoked a few times 0 Several times a week
## 904 I have only smoked a few times 0 Several times a week
## 905 I smoke daily 20 Several times a week
## 906 I don't smoke now but I used to 0 Several times a week
## 907 I have never smoked 0 Several times a week
## 908 I smoke daily 10 2-3 times a month
## 909 I don't smoke now but I used to 0 Once a month
## 910 I don't smoke now but I used to 0 Once a week
## 911 I have never smoked 0 Once a month
## 912 I have never smoked 0 Never
## 913 I smoke daily 10 Less than once a month
## 914 I don't smoke now but I used to 0 Less than once a month
## 915 I have never smoked 0 Once a month
## 916 I have never smoked 0 Several times a week
## 917 I smoke daily 4 Every day
## 918 I smoke daily 5 Several times a week
## 919 I smoke daily 15 Several times a week
## 920 I have never smoked 0 Once a month
## 921 I smoke daily 10 Less than once a month
## 922 I have never smoked 0 Less than once a month
## 923 I have never smoked 0 Several times a week
## 924 I don't smoke now but I used to 0 Never
## 925 I don't smoke now but I used to 0 Once a week
## 926 I have never smoked 0 Less than once a month
## 927 I smoke but not every day 1 Once a week
## 928 I smoke daily 10 Once a week
## 929 I have only smoked a few times 0 2-3 times a month
## 930 I don't smoke now but I used to 0 Once a week
## 931 I don't smoke now but I used to 0 Never
## 932 I have never smoked 0 Never
## 933 I don't smoke now but I used to 0 Several times a week
## 934 I smoke daily 3 Every day
## 935 I have never smoked 0 Once a week
## 936 I smoke daily 20 Every day
## 937 I have never smoked 0 Once a week
## 938 I don't smoke now but I used to 0 Less than once a month
## 939 I don't smoke now but I used to 0 Several times a week
## 940 I have never smoked 0 Several times a week
## 941 I don't smoke now but I used to 0 Every day
## 942 I don't smoke now but I used to 0 Several times a week
## 943 I don't smoke now but I used to 0 Never
## 944 I have never smoked 0 Once a week
## 945 I smoke daily 20 Every day
## 946 I have never smoked 0 Never
## 947 I have never smoked 0 Never
## 948 I have never smoked 0 Several times a week
## 949 I don't smoke now but I used to 0 Once a week
## 950 I have only smoked a few times 0 2-3 times a month
## 951 I have never smoked 0 Less than once a month
## 952 I smoke daily 30 Once a week
## 953 I don't smoke now but I used to 0 2-3 times a month
## 954 I have never smoked 0 Several times a week
## 955 I smoke daily 8 Once a week
## 956 I have never smoked 0 Several times a week
## 957 I don't smoke now but I used to 0 Every day
## 958 I have only smoked a few times 0 Never
## 959 I have never smoked 0 Never
## 960 I have only smoked a few times 0 Several times a week
## 961 I don't smoke now but I used to 0 Several times a week
## 962 I smoke daily 15 Every day
## 963 I don't smoke now but I used to 0 Several times a week
## 964 I smoke daily 15 Once a week
## 965 I have never smoked 0 Once a week
## 966 I don't smoke now but I used to 0 Every day
## 967 I don't smoke now but I used to 0 Several times a week
## 968 I have never smoked 0 Once a week
## 969 I have never smoked 0 Once a week
## 970 I have never smoked 0 Several times a week
## 971 I have never smoked 0 Every day
## 972 I don't smoke now but I used to 0 Once a week
## 973 I have never smoked 0 Less than once a month
## 974 I have never smoked 0 Less than once a month
## 975 I smoke daily 20 Several times a week
## 976 I don't smoke now but I used to 0 Several times a week
## 977 I have never smoked 0 Never
## 978 I smoke but not every day 1 Several times a week
## 979 I have never smoked 0 Never
## 980 I smoke daily 18 Once a month
## 981 I have never smoked 0 Every day
## 982 I don't smoke now but I used to 0 Every day
## 983 I smoke daily 10 Never
## 984 I have never smoked 0 Several times a week
## 985 I have never smoked 0 Several times a week
## 986 I have never smoked 0 Never
## 987 I have never smoked 0 Once a week
## 988 I have never smoked 0 Never
## 989 I don't smoke now but I used to 0 Never
## 990 I smoke daily 3 Several times a week
## 991 I don't smoke now but I used to 0 Several times a week
## 992 I have never smoked 0 Once a week
## 993 I have never smoked 0 Once a month
## 994 I have never smoked 0 Never
## 995 I have never smoked 0 Less than once a month
## 996 I have never smoked 0 Less than once a month
## 997 I have never smoked 0 Every day
## 998 I don't smoke now but I used to 0 Less than once a month
## 999 I have never smoked 0 Never
## 1000 I have never smoked 0 Never
## 1001 I have never smoked 0 Once a week
## 1002 I have never smoked 0 Never
## 1003 I have never smoked 0 Never
## 1004 I don't smoke now but I used to 0 Never
## 1005 I smoke but not every day 5 Once a week
## 1006 I smoke daily 20 <NA>
## 1007 I don't smoke now but I used to 0 Never
## 1008 I smoke but not every day 2 Once a week
## 1009 I smoke but not every day 1 Several times a week
## 1010 I have only smoked a few times 0 Never
## 1011 I smoke daily 10 Several times a week
## 1012 I smoke but not every day 3 Several times a week
## 1013 I have only smoked a few times 0 Several times a week
## 1014 I smoke daily 10 Once a week
## 1015 I don't smoke now but I used to 0 Once a week
## 1016 I have never smoked 0 Several times a week
## 1017 I smoke daily 10 Several times a week
## 1018 I don't smoke now but I used to 0 Several times a week
## 1019 I have never smoked 0 Less than once a month
## 1020 I don't smoke now but I used to 0 Never
## 1021 I have never smoked 0 Every day
## 1022 I have never smoked 0 2-3 times a month
## 1023 I don't smoke now but I used to 0 Less than once a month
## 1024 I don't smoke now but I used to 0 Several times a week
## 1025 I have never smoked 0 Less than once a month
## 1026 I smoke daily 10 Every day
## 1027 I have never smoked 0 Less than once a month
## 1028 I have never smoked 0 Never
## 1029 I smoke daily 5 2-3 times a month
## 1030 I have never smoked 0 Less than once a month
## 1031 I don't smoke now but I used to 0 Once a week
## 1032 I smoke daily 10 Less than once a month
## 1033 I have never smoked 0 Several times a week
## 1034 I don't smoke now but I used to 0 Several times a week
## 1035 I have never smoked 0 Once a month
## 1036 I have never smoked 0 Once a month
## 1037 I have never smoked 0 Once a week
## 1038 I don't smoke now but I used to 0 Several times a week
## 1039 I have never smoked 0 Several times a week
## 1040 I smoke daily 6 Several times a week
## 1041 I smoke but not every day 3 Once a month
## 1042 I don't smoke now but I used to 0 Several times a week
## 1043 I have only smoked a few times 0 Once a week
## 1044 I don't smoke now but I used to 0 Several times a week
## 1045 I have never smoked 0 Once a week
## 1046 I have never smoked 0 Never
## 1047 I have never smoked 0 Once a week
## 1048 I smoke daily 12 2-3 times a month
## 1049 I have never smoked 0 Once a week
## 1050 I don't smoke now but I used to 0 Several times a week
## 1051 I don't smoke now but I used to 0 Once a week
## 1052 I smoke daily 4 Several times a week
## 1053 I don't smoke now but I used to 0 Never
## 1054 I don't smoke now but I used to 0 Every day
## 1055 I smoke but not every day 4 Several times a week
## 1056 I don't smoke now but I used to 0 Several times a week
## 1057 I have only smoked a few times 0 2-3 times a month
## 1058 I have never smoked 0 Never
## 1059 I have never smoked 0 Several times a week
## 1060 I don't smoke now but I used to 0 Less than once a month
## 1061 I have never smoked 0 Never
## 1062 I smoke but not every day 5 Less than once a month
## 1063 I have never smoked 0 Several times a week
## 1064 I smoke daily 6 Less than once a month
## 1065 I have never smoked 0 Once a month
## 1066 I have never smoked 0 Less than once a month
## 1067 I have never smoked 0 Once a week
## 1068 I have never smoked 0 Once a week
## 1069 I have never smoked 0 Several times a week
## 1070 I don't smoke now but I used to 0 Once a week
## 1071 I smoke daily 17 Once a week
## 1072 I smoke daily 15 Several times a week
## 1073 I smoke daily 16 Never
## 1074 I have only smoked a few times 0 Never
## 1075 I have only smoked a few times 0 2-3 times a month
## 1076 I don't smoke now but I used to 0 Once a week
## 1077 I have never smoked 0 Less than once a month
## 1078 I have never smoked 0 Once a week
## 1079 I don't smoke now but I used to 0 Several times a week
## 1080 I have never smoked 0 Once a week
## 1081 I have never smoked 0 Several times a week
## 1082 I have never smoked 0 2-3 times a month
## 1083 I have never smoked 0 Several times a week
## 1084 I have never smoked 0 Once a week
## 1085 I smoke daily 7 2-3 times a month
## 1086 I don't smoke now but I used to 0 Less than once a month
## 1087 I have only smoked a few times 0 Never
## 1088 I smoke daily 13 Several times a week
## 1089 I have only smoked a few times 0 Several times a week
## 1090 I have never smoked 0 Never
## 1091 I have never smoked 0 Once a month
## 1092 I have never smoked 0 Several times a week
## 1093 I have only smoked a few times 0 2-3 times a month
## 1094 I don't smoke now but I used to 0 Never
## 1095 I have never smoked 0 Never
## 1096 I have never smoked 0 Once a week
## 1097 I have never smoked 0 Several times a week
## 1098 I have never smoked 0 Less than once a month
## 1099 I don't smoke now but I used to 0 Several times a week
## 1100 I have never smoked 0 Several times a week
## 1101 I don't smoke now but I used to 0 Every day
## 1102 I don't smoke now but I used to 0 Several times a week
## 1103 I don't smoke now but I used to 0 Never
## 1104 I don't smoke now but I used to 0 Never
## 1105 I smoke daily 20 Never
## 1106 I have never smoked 0 Several times a week
## 1107 I have only smoked a few times 0 Several times a week
## 1108 I smoke daily 10 Once a week
## 1109 I smoke but not every day 0 2-3 times a month
## 1110 I smoke daily 10 Several times a week
## 1111 I smoke daily 20 Several times a week
## 1112 I don't smoke now but I used to 0 Never
## 1113 I have never smoked 0 Never
## 1114 I don't smoke now but I used to 0 Several times a week
## 1115 I don't smoke now but I used to 0 Never
## 1116 I have never smoked 0 Less than once a month
## 1117 I have only smoked a few times 0 Several times a week
## 1118 I have only smoked a few times 0 Never
## 1119 I have never smoked 0 Every day
## 1120 I don't smoke now but I used to 0 Every day
## 1121 I have only smoked a few times 0 2-3 times a month
## 1122 I have never smoked 0 Once a month
## 1123 I have never smoked 0 Less than once a month
## 1124 I have never smoked 0 Less than once a month
## 1125 I have never smoked 0 Never
## 1126 I don't smoke now but I used to 0 Several times a week
## 1127 I don't smoke now but I used to 0 Several times a week
## 1128 I don't smoke now but I used to 0 Every day
## 1129 I have never smoked 0 Several times a week
## 1130 I don't smoke now but I used to 0 Several times a week
## 1131 I have never smoked 0 Never
## 1132 I don't smoke now but I used to 0 Less than once a month
## 1133 I smoke daily 20 2-3 times a month
## 1134 I have never smoked 0 Several times a week
## 1135 I have never smoked 0 Never
## 1136 I don't smoke now but I used to 0 Several times a week
## 1137 I don't smoke now but I used to 0 Less than once a month
## 1138 I have never smoked 0 Never
## 1139 I smoke daily 40 Never
## 1140 I have never smoked 0 Several times a week
## 1141 I don't smoke now but I used to 0 Never
## 1142 I have never smoked 0 Never
## 1143 I don't smoke now but I used to 0 Every day
## 1144 I smoke daily 15 Every day
## 1145 I have never smoked 0 Once a week
## 1146 I don't smoke now but I used to 0 Once a week
## 1147 I smoke daily 4 Never
## 1148 I don't smoke now but I used to 0 Several times a week
## 1149 I have never smoked 0 Less than once a month
## 1150 I have never smoked 0 Never
## 1151 I have never smoked 0 Less than once a month
## 1152 I smoke daily 7 Once a week
## 1153 I have never smoked 0 Never
## 1154 I smoke daily 30 Less than once a month
## 1155 I have never smoked 0 Never
## 1156 I have only smoked a few times 0 2-3 times a month
## 1157 I have only smoked a few times 0 Several times a week
## 1158 I smoke daily 10 2-3 times a month
## 1159 I have only smoked a few times 0 Several times a week
## 1160 I have never smoked 0 Several times a week
## 1161 I have only smoked a few times 0 Several times a week
## 1162 I have never smoked 0 Once a week
## 1163 I have never smoked 0 Once a week
## 1164 I don't smoke now but I used to 0 Once a month
## 1165 I don't smoke now but I used to 0 Once a week
## 1166 I smoke daily 5 Once a week
## 1167 I have never smoked 0 Every day
## 1168 I have never smoked 0 Several times a week
## 1169 I smoke daily 3 Never
## 1170 I don't smoke now but I used to 0 Never
## 1171 I smoke daily 10 Less than once a month
## 1172 I have never smoked 0 Every day
## 1173 I have never smoked 0 2-3 times a month
## 1174 I have never smoked 0 Less than once a month
## 1175 I don't smoke now but I used to 0 Less than once a month
## 1176 I have never smoked 0 Once a week
## 1177 I don't smoke now but I used to 0 Several times a week
## 1178 I don't smoke now but I used to 0 Once a week
## 1179 I have only smoked a few times 0 2-3 times a month
## 1180 I have never smoked 0 Every day
## 1181 I have never smoked 0 Once a month
## 1182 I smoke daily 15 Several times a week
## 1183 I don't smoke now but I used to 0 Every day
## 1184 I don't smoke now but I used to 0 Every day
## 1185 I have never smoked 0 Never
## 1186 I have never smoked 0 Several times a week
## 1187 I smoke daily 15 Once a week
## 1188 I have never smoked 0 Once a month
## 1189 I have never smoked 0 Several times a week
## 1190 I have never smoked 0 Less than once a month
## 1191 I have only smoked a few times 0 Once a week
## 1192 I don't smoke now but I used to 0 Once a month
## 1193 I have never smoked 0 2-3 times a month
## 1194 I have never smoked 0 Once a month
## 1195 I don't smoke now but I used to 0 Never
## 1196 I have never smoked 0 2-3 times a month
## 1197 I don't smoke now but I used to 0 Several times a week
## 1198 I have never smoked 0 Never
## 1199 I don't smoke now but I used to 0 Several times a week
## 1200 I don't smoke now but I used to 0 Several times a week
## 1201 I have only smoked a few times 0 Once a week
## 1202 I have never smoked 0 Once a week
## 1203 I have never smoked 0 Never
## 1204 I have never smoked 0 Several times a week
## 1205 I have never smoked 0 Less than once a month
## 1206 I have never smoked 0 Never
## 1207 I don't smoke now but I used to 0 Less than once a month
## 1208 I have never smoked 0 2-3 times a month
## 1209 I smoke daily 15 Several times a week
## 1210 I have never smoked 0 Never
## 1211 I have never smoked 0 Never
## 1212 I don't smoke now but I used to 0 Once a week
## 1213 I don't smoke now but I used to 0 Once a month
## 1214 I smoke daily 20 Several times a week
## 1215 I smoke but not every day 5 Once a week
## 1216 I smoke daily 10 Less than once a month
## 1217 I don't smoke now but I used to 0 Never
## 1218 I don't smoke now but I used to 0 Every day
## 1219 I have only smoked a few times 0 Several times a week
## 1220 I have never smoked 0 Never
## 1221 I have only smoked a few times 0 Several times a week
## 1222 I don't smoke now but I used to 0 Several times a week
## 1223 I smoke daily 10 2-3 times a month
## 1224 I smoke daily 15 Every day
## 1225 I don't smoke now but I used to 0 Never
## 1226 I have only smoked a few times 0 Less than once a month
## 1227 I don't smoke now but I used to 0 Less than once a month
## 1228 I smoke daily 20 Once a week
## 1229 I have never smoked 0 Never
## 1230 I smoke daily 10 Never
## 1231 I smoke but not every day 0 Once a week
## 1232 I smoke daily 25 Never
## 1233 I have never smoked 0 Once a week
## 1234 I smoke daily 20 Once a week
## 1235 I smoke daily 20 Less than once a month
## 1236 I don't smoke now but I used to 0 Several times a week
## 1237 I smoke daily 15 Never
## 1238 I have never smoked 0 Never
## 1239 I have never smoked 0 Once a month
## 1240 I don't smoke now but I used to 0 Never
## 1241 I don't smoke now but I used to 0 Several times a week
## 1242 I smoke but not every day 1 Several times a week
## 1243 I have never smoked 0 2-3 times a month
## 1244 I have only smoked a few times 0 2-3 times a month
## 1245 I smoke daily 15 Less than once a month
## 1246 I smoke daily 7 2-3 times a month
## 1247 I have never smoked 0 Once a week
## 1248 I smoke daily 7 2-3 times a month
## 1249 I don't smoke now but I used to 0 Once a week
## 1250 I have only smoked a few times 0 Less than once a month
## 1251 I have never smoked 0 Several times a week
## 1252 I smoke daily 10 Never
## 1253 I have never smoked 0 Less than once a month
## 1254 I have never smoked 0 Once a week
## 1255 I have never smoked 0 Never
## 1256 I have never smoked 0 Less than once a month
## 1257 I have only smoked a few times 0 Several times a week
## 1258 I have never smoked 0 Several times a week
## 1259 I don't smoke now but I used to 0 Never
## 1260 I have never smoked 0 Never
## 1261 I don't smoke now but I used to 0 Never
## 1262 I have never smoked 0 2-3 times a month
## 1263 I have never smoked 0 Never
## 1264 I have never smoked 0 Every day
## 1265 I have never smoked 0 Several times a week
## 1266 I have never smoked 0 Once a week
## 1267 I have never smoked 0 Never
## 1268 I have never smoked 0 2-3 times a month
## 1269 I have only smoked a few times 0 Once a week
## 1270 I don't smoke now but I used to 0 Never
## 1271 I don't smoke now but I used to 0 Once a week
## 1272 I smoke but not every day 5 Once a week
## 1273 I smoke daily 15 Every day
## 1274 I don't smoke now but I used to 0 Never
## 1275 I smoke daily 7 Once a month
## 1276 I don't smoke now but I used to 0 Several times a week
## 1277 I have never smoked 0 2-3 times a month
## 1278 I don't smoke now but I used to 0 Several times a week
## 1279 I have never smoked 0 Once a month
## 1280 I have never smoked 0 Once a week
## 1281 I have never smoked 0 Less than once a month
## 1282 I have never smoked 0 Several times a week
## 1283 I don't smoke now but I used to 0 Once a month
## 1284 I have never smoked 0 Never
## 1285 I don't smoke now but I used to 0 Several times a week
## 1286 I have never smoked 0 Once a month
## 1287 I don't smoke now but I used to 0 Several times a week
## 1288 I have never smoked 0 Less than once a month
## 1289 I have never smoked 0 Once a week
## 1290 I have never smoked 0 Every day
## 1291 I don't smoke now but I used to 0 Every day
## 1292 I don't smoke now but I used to 0 2-3 times a month
## 1293 I have only smoked a few times 0 Several times a week
## 1294 I smoke daily 20 Less than once a month
## 1295 I have only smoked a few times 0 Once a week
## 1296 I smoke daily 20 Less than once a month
## 1297 I have never smoked 0 Once a week
## 1298 I smoke but not every day 2 2-3 times a month
## 1299 I don't smoke now but I used to 0 Never
## 1300 I smoke daily 30 Once a week
## 1301 I don't smoke now but I used to 0 Several times a week
## 1302 I have never smoked 0 Never
## 1303 I don't smoke now but I used to 0 Several times a week
## 1304 I have never smoked 0 Once a week
## 1305 I smoke daily 10 Several times a week
## 1306 I smoke daily 10 2-3 times a month
## 1307 I have never smoked 0 Several times a week
## 1308 I don't smoke now but I used to 0 Less than once a month
## 1309 I have never smoked 0 Once a week
## 1310 I have never smoked 0 Once a week
## 1311 I have only smoked a few times 0 Never
## 1312 I have never smoked 0 Once a week
## 1313 I have only smoked a few times 0 Once a week
## 1314 I have never smoked 0 Every day
## 1315 I smoke daily 15 Never
## 1316 I don't smoke now but I used to 0 Less than once a month
## 1317 I don't smoke now but I used to 0 Less than once a month
## 1318 I don't smoke now but I used to 0 Once a week
## 1319 I have never smoked 0 Every day
## 1320 I have only smoked a few times 0 Once a week
## 1321 I don't smoke now but I used to 0 Several times a week
## 1322 I smoke daily 20 Several times a week
## 1323 I don't smoke now but I used to 0 Several times a week
## 1324 I don't smoke now but I used to 0 Every day
## 1325 I have never smoked 0 Never
## 1326 I have never smoked 0 Several times a week
## 1327 I smoke daily 5 Once a week
## 1328 I have never smoked 0 Several times a week
## 1329 I have never smoked 0 2-3 times a month
## 1330 I have never smoked 0 Once a week
## 1331 I have never smoked 0 Once a week
## 1332 I have never smoked 0 Once a week
## 1333 I have only smoked a few times 0 Less than once a month
## 1334 I smoke daily 20 Every day
## 1335 I don't smoke now but I used to 0 Several times a week
## 1336 I have only smoked a few times 0 Less than once a month
## 1337 I don't smoke now but I used to 0 Once a week
## 1338 I don't smoke now but I used to 0 Less than once a month
## 1339 I don't smoke now but I used to 0 2-3 times a month
## 1340 I smoke daily 7 Once a month
## 1341 I smoke but not every day 4 Less than once a month
## 1342 I have never smoked 0 Every day
## 1343 I have only smoked a few times 0 Never
## 1344 I don't smoke now but I used to 0 2-3 times a month
## 1345 I have only smoked a few times 0 Never
## 1346 I have never smoked 0 Never
## 1347 I have never smoked 0 Never
## 1348 I have never smoked 0 Every day
## 1349 I smoke but not every day 1 Once a month
## 1350 I have never smoked 0 2-3 times a month
## 1351 I have only smoked a few times 0 Once a week
## 1352 I have never smoked 0 Several times a week
## 1353 I don't smoke now but I used to 0 Less than once a month
## 1354 I have never smoked 0 Several times a week
## 1355 I smoke but not every day 10 Once a week
## 1356 I don't smoke now but I used to 0 Every day
## 1357 I have never smoked 0 Several times a week
## 1358 I have never smoked 0 Less than once a month
## 1359 I smoke daily 15 2-3 times a month
## 1360 I have never smoked 0 Never
## 1361 I have never smoked 0 Every day
## 1362 I smoke daily 20 Once a month
## 1363 I have only smoked a few times 0 Several times a week
## 1364 I have never smoked 0 Several times a week
## 1365 I have never smoked 0 Several times a week
## 1366 I have never smoked 0 Once a week
## 1367 I don't smoke now but I used to 0 Several times a week
## 1368 I smoke daily 10 Several times a week
## 1369 I have never smoked 0 Never
## 1370 I have never smoked 0 Less than once a month
## 1371 I have never smoked 0 Never
## 1372 I have only smoked a few times 0 Several times a week
## 1373 I have never smoked 0 Less than once a month
## 1374 I smoke daily 15 Several times a week
## 1375 I have never smoked 0 Every day
## 1376 I don't smoke now but I used to 0 Never
## 1377 I have only smoked a few times 0 Less than once a month
## 1378 I smoke but not every day 5 Several times a week
## 1379 I smoke daily 10 Never
## 1380 I don't smoke now but I used to 0 Less than once a month
## 1381 I have only smoked a few times 0 Several times a week
## 1382 I smoke daily 10 Several times a week
## 1383 I have never smoked 0 Never
## 1384 I don't smoke now but I used to 0 Every day
## 1385 I have never smoked 0 Once a week
## 1386 I have never smoked 0 Once a week
## 1387 I smoke daily 15 Several times a week
## 1388 I smoke daily 18 Once a month
## 1389 I don't smoke now but I used to 0 2-3 times a month
## 1390 I have never smoked 0 Once a week
## 1391 I smoke daily 15 Every day
## 1392 I have never smoked 0 Once a week
## 1393 I have never smoked 0 2-3 times a month
## 1394 I have never smoked 0 2-3 times a month
## 1395 I don't smoke now but I used to 0 Once a week
## 1396 I don't smoke now but I used to 0 2-3 times a month
## 1397 I smoke but not every day 1 Several times a week
## 1398 I have never smoked 0 Several times a week
## 1399 I have never smoked 0 Less than once a month
## 1400 I smoke daily 4 Several times a week
## 1401 I don't smoke now but I used to 0 Every day
## 1402 I have never smoked 0 Several times a week
## 1403 I smoke daily 20 Less than once a month
## 1404 I have never smoked 0 Several times a week
## 1405 I don't smoke now but I used to 0 Less than once a month
## 1406 I have never smoked 0 Never
## 1407 I don't smoke now but I used to 0 Never
## 1408 I don't smoke now but I used to 0 Once a week
## 1409 I smoke daily 20 Never
## 1410 I smoke daily 30 Several times a week
## 1411 I have never smoked 0 Never
## 1412 I have never smoked 0 Never
## 1413 I have never smoked 0 Once a month
## 1414 I have never smoked 0 Less than once a month
## 1415 I have only smoked a few times 0 Several times a week
## 1416 I smoke daily 10 Several times a week
## 1417 I smoke daily 10 Never
## 1418 I have never smoked 0 Less than once a month
## 1419 I don't smoke now but I used to 0 Several times a week
## 1420 I don't smoke now but I used to 0 Several times a week
## 1421 I have never smoked 0 Never
## 1422 I smoke daily 13 Never
## 1423 I have never smoked 0 Several times a week
## 1424 I have only smoked a few times 0 Several times a week
## 1425 I don't smoke now but I used to 0 Every day
## 1426 I have never smoked 0 Several times a week
## 1427 I have never smoked 0 Once a week
## 1428 I have never smoked 0 Several times a week
## 1429 I don't smoke now but I used to 0 Never
## 1430 I have never smoked 0 Several times a week
## 1431 I don't smoke now but I used to 0 Less than once a month
## 1432 I don't smoke now but I used to 0 Several times a week
## 1433 I have only smoked a few times 0 Once a week
## 1434 I have never smoked 0 Less than once a month
## 1435 I have never smoked 0 Never
## 1436 I don't smoke now but I used to 0 Once a month
## 1437 I have never smoked 0 Never
## 1438 I don't smoke now but I used to 0 Once a month
## 1439 I have never smoked 0 Never
## 1440 I have never smoked 0 Less than once a month
## 1441 I have never smoked 0 Several times a week
## 1442 I don't smoke now but I used to 0 2-3 times a month
## 1443 I smoke but not every day 5 Several times a week
## 1444 I don't smoke now but I used to 0 Never
## 1445 I smoke but not every day 5 Once a week
## 1446 I have never smoked 0 2-3 times a month
## 1447 I don't smoke now but I used to 0 Several times a week
## 1448 I have only smoked a few times 0 Several times a week
## 1449 I have only smoked a few times 0 2-3 times a month
## 1450 I have never smoked 0 Several times a week
## 1451 I don't smoke now but I used to 0 Less than once a month
## 1452 I have never smoked 0 Less than once a month
## 1453 I smoke daily 15 Less than once a month
## 1454 I have never smoked 0 2-3 times a month
## 1455 I don't smoke now but I used to 0 Every day
## 1456 I don't smoke now but I used to 0 Several times a week
## 1457 I smoke daily 12 Several times a week
## 1458 I have only smoked a few times 0 Less than once a month
## 1459 I smoke daily 20 Every day
## 1460 I have never smoked 0 Once a week
## 1461 I don't smoke now but I used to 0 Never
## 1462 I don't smoke now but I used to 0 Less than once a month
## 1463 I have never smoked 0 Never
## 1464 I have never smoked 0 Never
## 1465 I have never smoked 0 Several times a week
## 1466 I have never smoked 0 Once a month
## 1467 I don't smoke now but I used to 0 Never
## 1468 I have never smoked 0 Once a week
## 1469 I have never smoked 0 Several times a week
## 1470 I don't smoke now but I used to 0 Never
## 1471 I don't smoke now but I used to 0 Once a week
## 1472 I don't smoke now but I used to 0 Every day
## 1473 I smoke daily 20 2-3 times a month
## 1474 I don't smoke now but I used to 0 Once a week
## 1475 I have only smoked a few times 0 Less than once a month
## 1476 I have never smoked 0 Never
## 1477 I have never smoked 0 Less than once a month
## 1478 I have never smoked 0 Once a week
## 1479 I don't smoke now but I used to 0 2-3 times a month
## 1480 I have never smoked 0 Never
## 1481 I smoke daily 20 Less than once a month
## 1482 I have never smoked 0 Less than once a month
## 1483 I don't smoke now but I used to 0 Several times a week
## 1484 I don't smoke now but I used to 0 Less than once a month
## 1485 I have never smoked 0 2-3 times a month
## 1486 I have never smoked 0 Less than once a month
## 1487 I don't smoke now but I used to 0 Once a week
## 1488 I don't smoke now but I used to 0 2-3 times a month
## 1489 I have never smoked 0 Once a month
## 1490 I have never smoked 0 Less than once a month
## 1491 I have never smoked 0 Several times a week
## 1492 I don't smoke now but I used to 0 2-3 times a month
## 1493 I don't smoke now but I used to 0 Once a week
## 1494 I have never smoked 0 Several times a week
## 1495 I have never smoked 0 Once a month
## 1496 I have never smoked 0 2-3 times a month
## 1497 I have only smoked a few times 0 Several times a week
## 1498 I don't smoke now but I used to 0 2-3 times a month
## 1499 I have never smoked 0 Less than once a month
## 1500 I smoke daily 6 Never
## 1501 I don't smoke now but I used to 0 Several times a week
## 1502 I have only smoked a few times 0 Less than once a month
## 1503 I have never smoked 0 Less than once a month
## 1504 I don't smoke now but I used to 0 Several times a week
## 1505 I have only smoked a few times 0 Several times a week
## 1506 I smoke daily 10 Never
## 1507 I smoke daily 3 2-3 times a month
## 1508 I smoke daily 3 Never
## 1509 I smoke daily 12 Less than once a month
## 1510 I smoke daily NA Once a week
## 1511 I have never smoked 0 Never
## 1512 I have never smoked 0 Never
## 1513 I smoke daily 25 Several times a week
## 1514 I have never smoked 0 Once a week
## 1515 I have only smoked a few times 0 Several times a week
## 1516 I have never smoked 0 Less than once a month
## 1517 I smoke daily 10 2-3 times a month
## 1518 I smoke daily 10 Once a month
## 1519 I smoke daily 10 Once a week
## 1520 I have never smoked 0 Several times a week
## 1521 I have never smoked 0 Less than once a month
## 1522 I don't smoke now but I used to 0 Once a week
## 1523 I don't smoke now but I used to 0 Several times a week
## 1524 I have never smoked 0 Less than once a month
## 1525 I have never smoked 0 Once a month
## 1526 I have never smoked 0 Never
## 1527 I have never smoked 0 Once a week
## 1528 I have never smoked 0 Once a month
## 1529 I have never smoked 0 Every day
## 1530 I don't smoke now but I used to 0 Every day
## 1531 I don't smoke now but I used to 0 Once a week
## 1532 I have never smoked 0 Once a week
## 1533 I don't smoke now but I used to 0 Never
## 1534 I have only smoked a few times 0 Several times a week
## 1535 I have never smoked 0 Once a month
## 1536 I don't smoke now but I used to 0 Several times a week
## 1537 I don't smoke now but I used to 0 Several times a week
## 1538 I have never smoked 0 Never
## 1539 I have never smoked 0 Several times a week
## 1540 I have only smoked a few times 0 Several times a week
## 1541 I don't smoke now but I used to 0 Once a week
## 1542 I don't smoke now but I used to 0 Several times a week
## 1543 I have never smoked 0 Once a month
## 1544 I don't smoke now but I used to 0 Once a week
## 1545 I have never smoked 0 Several times a week
## 1546 I smoke but not every day 7 Less than once a month
## 1547 I have never smoked 0 Never
## 1548 I have never smoked 0 Once a week
## 1549 I don't smoke now but I used to 0 Every day
## 1550 I have never smoked 0 Several times a week
## 1551 I don't smoke now but I used to 0 Never
## 1552 I have never smoked 0 Once a week
## 1553 I don't smoke now but I used to 0 Never
## 1554 I smoke daily 8 Less than once a month
## 1555 I don't smoke now but I used to 0 Once a week
## 1556 I have never smoked 0 Never
## 1557 I smoke daily 10 Never
## 1558 I don't smoke now but I used to 0 Never
## 1559 I have never smoked 0 Once a week
## 1560 I don't smoke now but I used to 0 Several times a week
## 1561 I have only smoked a few times 0 Once a week
## 1562 I don't smoke now but I used to 0 Several times a week
## 1563 I don't smoke now but I used to 0 Once a week
## 1564 I smoke daily 20 Every day
## 1565 I have never smoked 0 2-3 times a month
## 1566 I don't smoke now but I used to 0 Every day
## 1567 I don't smoke now but I used to 0 Several times a week
## 1568 I have never smoked 0 Several times a week
## 1569 I have never smoked 0 Several times a week
## 1570 I have never smoked 0 Less than once a month
## 1571 I have never smoked 0 Several times a week
## 1572 I smoke daily 5 Once a week
## 1573 I smoke daily 10 Several times a week
## 1574 I have never smoked 0 Once a week
## 1575 I have never smoked 0 Every day
## 1576 I don't smoke now but I used to 0 2-3 times a month
## 1577 I don't smoke now but I used to 0 Several times a week
## 1578 I smoke but not every day 1 Once a week
## 1579 I smoke daily 20 Never
## 1580 I have never smoked 0 Never
## 1581 I don't smoke now but I used to 0 Less than once a month
## 1582 I don't smoke now but I used to 0 Several times a week
## 1583 I have never smoked 0 Less than once a month
## 1584 I have never smoked 0 Less than once a month
## 1585 I don't smoke now but I used to 0 2-3 times a month
## 1586 I have never smoked 0 Several times a week
## 1587 I have never smoked 0 Less than once a month
## 1588 I smoke daily 5 Never
## 1589 I have never smoked 0 2-3 times a month
## 1590 I don't smoke now but I used to 0 Several times a week
## 1591 I have never smoked 0 2-3 times a month
## 1592 I have never smoked 0 Less than once a month
## 1593 I have never smoked 0 Less than once a month
## 1594 I smoke but not every day 5 Never
## 1595 I have only smoked a few times 0 2-3 times a month
## 1596 I smoke daily 20 Several times a week
## 1597 I have only smoked a few times 0 2-3 times a month
## 1598 I have never smoked 0 Less than once a month
## 1599 I don't smoke now but I used to 0 Several times a week
## 1600 I have never smoked 0 2-3 times a month
## 1601 I have never smoked 0 Never
## 1602 I have only smoked a few times 0 2-3 times a month
## 1603 I don't smoke now but I used to 0 2-3 times a month
## 1604 I have never smoked 0 Once a week
## 1605 I have never smoked 0 Several times a week
## 1606 I don't smoke now but I used to 0 Never
## 1607 I have never smoked 0 Once a week
## 1608 I have never smoked 0 2-3 times a month
## 1609 I have never smoked 0 Once a month
## 1610 I have never smoked 0 Several times a week
## 1611 I have never smoked 0 2-3 times a month
## 1612 I don't smoke now but I used to 0 Once a month
## 1613 I have never smoked 0 Once a week
## 1614 I have never smoked 0 Once a week
## 1615 I have only smoked a few times 0 Several times a week
## 1616 I smoke daily 5 Every day
## 1617 I don't smoke now but I used to 0 Once a week
## 1618 I have never smoked 0 Once a week
## 1619 I don't smoke now but I used to 0 Every day
## 1620 I don't smoke now but I used to 0 Never
## 1621 I don't smoke now but I used to 0 Never
## 1622 I don't smoke now but I used to 0 Less than once a month
## 1623 I have never smoked 0 Several times a week
## 1624 I have never smoked 0 Never
## 1625 I don't smoke now but I used to 0 Once a month
## 1626 I have never smoked 0 Less than once a month
## 1627 I don't smoke now but I used to 0 Several times a week
## 1628 I have only smoked a few times 0 Several times a week
## 1629 I smoke daily 10 Once a week
## 1630 I smoke daily 15 Less than once a month
## 1631 I don't smoke now but I used to 0 Several times a week
## 1632 I have never smoked 0 Less than once a month
## 1633 I smoke daily 15 Once a month
## 1634 I smoke daily 15 Once a week
## 1635 I have never smoked 0 Several times a week
## 1636 I have never smoked 0 Never
## 1637 I don't smoke now but I used to 0 2-3 times a month
## 1638 I have never smoked 0 Less than once a month
## 1639 I smoke daily 15 Several times a week
## 1640 I smoke daily 5 Never
## 1641 I have never smoked 0 Once a week
## 1642 I smoke but not every day 4 Once a week
## 1643 I have never smoked 0 Once a week
## 1644 I have never smoked 0 Less than once a month
## 1645 I don't smoke now but I used to 0 Less than once a month
## 1646 I don't smoke now but I used to 0 Several times a week
## 1647 I smoke daily 6 Never
## 1648 I have never smoked 0 Never
## 1649 I have never smoked 0 Less than once a month
## 1650 I have never smoked 0 2-3 times a month
## 1651 I have only smoked a few times 0 Once a week
## 1652 I smoke daily 5 Never
## 1653 I have never smoked 0 Several times a week
## 1654 I have never smoked 0 Never
## 1655 I don't smoke now but I used to 0 Several times a week
## 1656 I have never smoked 0 Less than once a month
## 1657 I smoke but not every day 5 Several times a week
## 1658 I don't smoke now but I used to 0 Once a month
## 1659 I have never smoked 0 Several times a week
## 1660 I have only smoked a few times 0 Less than once a month
## 1661 I don't smoke now but I used to 0 Less than once a month
## 1662 I don't smoke now but I used to 0 Never
## 1663 I smoke but not every day 2 Several times a week
## 1664 I have never smoked 0 Never
## 1665 I don't smoke now but I used to 0 Less than once a month
## 1666 I have never smoked 0 Never
## 1667 I have never smoked 0 Several times a week
## 1668 I have never smoked 0 Every day
## 1669 I smoke daily 15 Once a week
## 1670 I have never smoked 0 Every day
## 1671 I have never smoked 0 Several times a week
## 1672 I have never smoked 0 Never
## 1673 I don't smoke now but I used to 0 Several times a week
## 1674 I have never smoked 0 Less than once a month
## 1675 I have only smoked a few times 0 2-3 times a month
## 1676 I have never smoked 0 Never
## 1677 I smoke daily 40 Every day
## 1678 I smoke but not every day 4 Every day
## 1679 I have never smoked 0 Several times a week
## 1680 I don't smoke now but I used to 0 Several times a week
## 1681 I have never smoked 0 Never
## 1682 I have never smoked 0 Never
## 1683 I don't smoke now but I used to 0 Several times a week
## 1684 I have never smoked 0 Once a week
## 1685 I smoke daily 20 Every day
## 1686 I don't smoke now but I used to 0 Once a week
## 1687 I don't smoke now but I used to 0 Once a week
## 1688 I have never smoked 0 2-3 times a month
## 1689 I have never smoked 0 Less than once a month
## 1690 I have only smoked a few times 0 Less than once a month
## 1691 I smoke daily 20 Never
## 1692 I smoke daily 40 2-3 times a month
## 1693 I don't smoke now but I used to 0 Every day
## 1694 I have never smoked 0 2-3 times a month
## 1695 I smoke daily 5 Several times a week
## 1696 I don't smoke now but I used to 0 2-3 times a month
## 1697 I smoke daily 10 2-3 times a month
## 1698 I don't smoke now but I used to 0 Less than once a month
## 1699 I have never smoked 0 Never
## 1700 I have never smoked 0 Several times a week
## 1701 I don't smoke now but I used to 0 Never
## 1702 I have never smoked 0 Once a week
## 1703 I have never smoked 0 Once a week
## 1704 I have never smoked 0 Once a month
## 1705 I have never smoked 0 Several times a week
## 1706 I have never smoked 0 Once a month
## 1707 I don't smoke now but I used to 0 Several times a week
## 1708 I have only smoked a few times 0 Several times a week
## 1709 I have never smoked 0 2-3 times a month
## 1710 I don't smoke now but I used to 0 Less than once a month
## 1711 I smoke daily 15 Never
## 1712 I have never smoked 0 2-3 times a month
## 1713 I have never smoked 0 2-3 times a month
## 1714 I don't smoke now but I used to 0 Several times a week
## 1715 I have never smoked 0 Several times a week
## 1716 I don't smoke now but I used to 0 Once a month
## 1717 I smoke daily 15 Several times a week
## 1718 I don't smoke now but I used to 0 Once a week
## 1719 I smoke daily 20 Several times a week
## 1720 I have never smoked 0 Once a week
## 1721 I don't smoke now but I used to 0 2-3 times a month
## 1722 I smoke daily 25 Every day
## 1723 I have never smoked 0 Once a month
## 1724 I smoke but not every day 5 Once a month
## 1725 I smoke daily 15 Several times a week
## 1726 I smoke daily 10 Once a month
## 1727 I smoke daily 12 Every day
## 1728 I don't smoke now but I used to 0 Never
## 1729 I have never smoked 0 Less than once a month
## 1730 I smoke but not every day 1 Several times a week
## 1731 I have only smoked a few times 0 Several times a week
## 1732 I have never smoked 0 Never
## 1733 I don't smoke now but I used to 0 Less than once a month
## 1734 I smoke daily 20 Never
## 1735 I have never smoked 0 Less than once a month
## 1736 I smoke daily 20 Never
## 1737 I have only smoked a few times 0 Every day
## 1738 I smoke daily 15 Once a month
## 1739 I don't smoke now but I used to 0 Once a week
## 1740 I don't smoke now but I used to 0 Several times a week
## 1741 I smoke but not every day 1 Several times a week
## 1742 I have never smoked 0 Less than once a month
## 1743 I smoke daily 10 Never
## 1744 I have never smoked 0 Once a week
## 1745 I have never smoked 0 Never
## 1746 I have never smoked 0 Once a week
## 1747 I don't smoke now but I used to 0 Less than once a month
## 1748 I have never smoked 0 2-3 times a month
## 1749 I don't smoke now but I used to 0 Once a week
## 1750 I have never smoked 0 Never
## 1751 I smoke daily 3 Several times a week
## 1752 I have never smoked 0 Never
## 1753 I have never smoked 0 Once a week
## 1754 I have never smoked 0 Several times a week
## 1755 I have never smoked 0 Several times a week
## 1756 I have only smoked a few times 0 Once a month
## 1757 I have never smoked 0 2-3 times a month
## 1758 I smoke but not every day 7 2-3 times a month
## 1759 I smoke daily 15 Several times a week
## 1760 I have never smoked 0 Never
## 1761 I have only smoked a few times 0 Less than once a month
## 1762 I have only smoked a few times 0 2-3 times a month
## 1763 I smoke daily 5 Every day
## 1764 I don't smoke now but I used to 0 Several times a week
## 1765 I have never smoked 0 Once a month
## 1766 I smoke daily 20 2-3 times a month
## 1767 I smoke but not every day 3 Several times a week
## 1768 I smoke daily 12 Several times a week
## 1769 I smoke daily 40 Several times a week
## 1770 I don't smoke now but I used to 0 Once a week
## 1771 I smoke daily 20 Less than once a month
## 1772 I have never smoked 0 Less than once a month
## 1773 I have never smoked 0 Once a week
## 1774 I don't smoke now but I used to 0 Less than once a month
## 1775 I have never smoked 0 Never
## 1776 I have never smoked 0 Less than once a month
## 1777 I have never smoked 0 Once a week
## 1778 I smoke daily 17 2-3 times a month
## 1779 I have never smoked 0 Less than once a month
## 1780 I have never smoked 0 Less than once a month
## 1781 I have never smoked 0 Less than once a month
## 1782 I don't smoke now but I used to 0 Once a month
## 1783 I don't smoke now but I used to 0 Once a week
## 1784 I have never smoked 0 Several times a week
## 1785 I don't smoke now but I used to 0 Never
## 1786 I have never smoked 0 Less than once a month
## 1787 I don't smoke now but I used to 0 Once a week
## 1788 I don't smoke now but I used to 0 Once a month
## 1789 I have never smoked 0 Several times a week
## 1790 I don't smoke now but I used to 0 Several times a week
## 1791 I have never smoked 0 Several times a week
## 1792 I have only smoked a few times 0 Once a week
## 1793 I smoke daily 10 2-3 times a month
## 1794 I have only smoked a few times 0 Several times a week
## 1795 I have only smoked a few times 0 Several times a week
## 1796 I smoke daily 30 Never
## 1797 I have never smoked 0 Several times a week
## 1798 I smoke daily 10 Less than once a month
## 1799 I smoke but not every day 0 Less than once a month
## 1800 I have never smoked 0 Several times a week
## 1801 I have never smoked 0 Never
## 1802 I smoke but not every day 6 Several times a week
## 1803 I don't smoke now but I used to 0 2-3 times a month
## 1804 I have never smoked 0 Less than once a month
## 1805 I have never smoked 0 Once a week
## 1806 I smoke daily 8 Every day
## 1807 I don't smoke now but I used to 0 Never
## 1808 I smoke daily 5 Several times a week
## 1809 I smoke daily 50 Once a week
## 1810 I smoke daily 5 Once a week
## 1811 I have never smoked 0 Once a week
## 1812 I don't smoke now but I used to 0 2-3 times a month
## 1813 I smoke daily 15 2-3 times a month
## 1814 I don't smoke now but I used to 0 Several times a week
## 1815 I smoke daily 5 Less than once a month
## 1816 I don't smoke now but I used to 0 Every day
## 1817 I don't smoke now but I used to 0 Several times a week
## 1818 I have never smoked 0 Never
## 1819 I don't smoke now but I used to 0 Once a week
## 1820 I have never smoked 0 Never
## 1821 I don't smoke now but I used to 0 Several times a week
## 1822 I smoke daily 10 Once a week
## 1823 I have only smoked a few times 0 Less than once a month
## 1824 I have only smoked a few times 0 Less than once a month
## 1825 I have never smoked 0 Several times a week
## 1826 I don't smoke now but I used to 0 Every day
## 1827 I have never smoked 0 Less than once a month
## 1828 I have never smoked 0 Once a week
## 1829 I don't smoke now but I used to 0 2-3 times a month
## 1830 I don't smoke now but I used to 0 Several times a week
## 1831 I smoke daily 15 Every day
## 1832 I smoke daily 40 Never
## 1833 I have never smoked 0 Once a month
## 1834 I don't smoke now but I used to 0 Less than once a month
## 1835 I smoke daily 10 Once a week
## 1836 I have never smoked 0 Once a week
## 1837 I have only smoked a few times 0 Several times a week
## 1838 I have never smoked 0 Less than once a month
## 1839 I don't smoke now but I used to 0 Every day
## 1840 I have only smoked a few times 0 Once a week
## 1841 I have never smoked 0 Once a week
## 1842 I have never smoked 0 Once a week
## 1843 I don't smoke now but I used to 0 Once a month
## 1844 I have never smoked 0 Several times a week
## 1845 I have never smoked 0 2-3 times a month
## 1846 I have never smoked 0 Less than once a month
## 1847 I have never smoked 0 Never
## 1848 I smoke daily 20 Several times a week
## 1849 I smoke daily 15 Once a month
## 1850 I have only smoked a few times 0 Once a week
## 1851 I don't smoke now but I used to 0 Never
## 1852 I have never smoked 0 Never
## 1853 I smoke daily 20 Once a week
## 1854 I don't smoke now but I used to 0 2-3 times a month
## 1855 I have only smoked a few times 0 2-3 times a month
## 1856 I have never smoked 0 Never
## 1857 I don't smoke now but I used to 0 Once a week
## 1858 I smoke daily 20 Never
## 1859 I have never smoked 0 Never
## 1860 I smoke daily 10 Once a month
## 1861 I have never smoked 0 Never
## 1862 I have never smoked 0 Never
## 1863 I have never smoked 0 2-3 times a month
## 1864 I don't smoke now but I used to 0 2-3 times a month
## 1865 I have never smoked 0 Never
## 1866 I have never smoked 0 Never
## 1867 I have only smoked a few times 0 Once a week
## 1868 I have never smoked 0 Several times a week
## 1869 I don't smoke now but I used to 0 Never
## 1870 I don't smoke now but I used to 0 Every day
## 1871 I smoke daily 15 Never
## 1872 I have never smoked 0 Never
## 1873 I don't smoke now but I used to 0 Several times a week
## 1874 I smoke daily 10 Several times a week
## 1875 I smoke daily 7 Several times a week
## 1876 I smoke daily 10 Several times a week
## 1877 I don't smoke now but I used to 0 Less than once a month
## 1878 I don't smoke now but I used to 0 Never
## 1879 I smoke but not every day 5 Once a week
## 1880 I don't smoke now but I used to 0 Several times a week
## 1881 I have never smoked 0 2-3 times a month
## 1882 I don't smoke now but I used to 0 2-3 times a month
## 1883 I have never smoked 0 Never
## 1884 I don't smoke now but I used to 0 Every day
## 1885 I have never smoked 0 2-3 times a month
## 1886 I have only smoked a few times 0 2-3 times a month
## 1887 I have never smoked 0 Several times a week
## 1888 I don't smoke now but I used to 0 Several times a week
## 1889 I have only smoked a few times 0 Once a week
## 1890 I smoke daily 8 Once a week
## 1891 I don't smoke now but I used to 0 Never
## 1892 I smoke daily 1 Once a month
## 1893 I don't smoke now but I used to 0 Every day
## 1894 I have never smoked 0 Never
## 1895 I have never smoked 0 Less than once a month
## 1896 I have never smoked 0 Never
## 1897 I have only smoked a few times 0 Several times a week
## 1898 I smoke daily 40 Never
## 1899 I don't smoke now but I used to 0 Once a week
## 1900 I have never smoked 0 Once a week
## 1901 I don't smoke now but I used to 0 Never
## 1902 I have never smoked 0 Several times a week
## 1903 I don't smoke now but I used to 0 Once a week
## 1904 I have only smoked a few times 0 Every day
## 1905 I have only smoked a few times 0 Once a week
## 1906 I have never smoked 0 Never
## 1907 I have never smoked 0 Less than once a month
## 1908 I have only smoked a few times 0 Every day
## 1909 I have never smoked 0 2-3 times a month
## 1910 I smoke daily 8 Several times a week
## 1911 I don't smoke now but I used to 0 Several times a week
## 1912 I don't smoke now but I used to 0 Once a month
## 1913 I have never smoked 0 Never
## 1914 I smoke but not every day 5 Several times a week
## 1915 I have never smoked 0 Never
## 1916 I have never smoked 0 Less than once a month
## 1917 I don't smoke now but I used to 0 Every day
## 1918 I don't smoke now but I used to 0 Once a week
## 1919 I have only smoked a few times 0 Once a month
## 1920 I have never smoked 0 Several times a week
## 1921 I have never smoked 0 Once a week
## 1922 I have only smoked a few times 0 Every day
## 1923 I have never smoked 0 Less than once a month
## 1924 I don't smoke now but I used to 0 Several times a week
## 1925 I don't smoke now but I used to 0 Never
## 1926 I don't smoke now but I used to 0 Several times a week
## 1927 I have never smoked 0 Once a week
## 1928 I don't smoke now but I used to 0 2-3 times a month
## 1929 I have never smoked 0 2-3 times a month
## 1930 I have never smoked 0 Never
## 1931 I have never smoked 0 Never
## 1932 I have never smoked 0 Several times a week
## 1933 I have never smoked 0 Never
## 1934 I have only smoked a few times 0 2-3 times a month
## 1935 I smoke daily 15 2-3 times a month
## 1936 I don't smoke now but I used to 0 Once a week
## 1937 I have never smoked 0 Once a month
## 1938 I have never smoked 0 Once a week
## 1939 I smoke daily 15 Less than once a month
## 1940 I smoke daily 10 Once a month
## 1941 I have never smoked 0 Less than once a month
## 1942 I smoke but not every day 5 2-3 times a month
## 1943 I don't smoke now but I used to 0 Every day
## 1944 I have never smoked 0 Less than once a month
## 1945 I have never smoked 0 Several times a week
## 1946 I don't smoke now but I used to 0 Once a month
## 1947 I smoke but not every day 5 Once a month
## 1948 I smoke but not every day 7 Once a month
## 1949 I have never smoked 0 Once a week
## 1950 I have never smoked 0 Every day
## 1951 I have only smoked a few times 0 Several times a week
## 1952 I have never smoked 0 Every day
## 1953 <NA> NA <NA>
## 1954 I have never smoked 0 Never
## 1955 I have never smoked 0 2-3 times a month
## 1956 I have never smoked 0 Several times a week
## 1957 I don't smoke now but I used to 0 Never
## 1958 I don't smoke now but I used to 0 Never
## 1959 I have never smoked 0 Never
## 1960 I don't smoke now but I used to 0 Every day
## 1961 I have only smoked a few times 0 Never
## 1962 I don't smoke now but I used to 0 Once a week
## 1963 I have never smoked 0 Never
## 1964 I have never smoked 0 Less than once a month
## 1965 I have never smoked 0 Never
## 1966 I don't smoke now but I used to 0 Once a week
## 1967 I have never smoked 0 Several times a week
## 1968 I have never smoked 0 Less than once a month
## 1969 I have never smoked 0 Every day
## 1970 I have never smoked 0 Never
## 1971 I don't smoke now but I used to 0 Less than once a month
## 1972 I don't smoke now but I used to 0 2-3 times a month
## 1973 I have only smoked a few times 0 Several times a week
## 1974 I have never smoked 0 Less than once a month
## 1975 I don't smoke now but I used to 0 Once a week
## 1976 I have never smoked 0 Several times a week
## 1977 I have never smoked 0 Several times a week
## 1978 I have never smoked 0 Several times a week
## 1979 I have never smoked 0 Once a week
## 1980 I have never smoked 0 Several times a week
## 1981 I don't smoke now but I used to 0 Never
## 1982 I have never smoked 0 Once a week
## 1983 I have never smoked 0 Once a week
## 1984 I smoke daily 5 2-3 times a month
## 1985 I don't smoke now but I used to 0 Less than once a month
## 1986 I don't smoke now but I used to 0 Never
## 1987 I have never smoked 0 Less than once a month
## 1988 I have never smoked 0 Once a week
## 1989 I have never smoked 0 Several times a week
## 1990 I smoke daily 15 Several times a week
## 1991 I don't smoke now but I used to 0 Once a week
## 1992 I have never smoked 0 Every day
## 1993 I have only smoked a few times 0 Never
## 1994 I have only smoked a few times 0 Every day
## 1995 I have only smoked a few times 0 Several times a week
## 1996 I have never smoked 0 Once a week
## 1997 I have never smoked 0 Never
## 1998 I have never smoked 0 Never
## 1999 I have never smoked 0 Never
## 2000 I have never smoked 0 2-3 times a month
## 2001 I don't smoke now but I used to 0 Several times a week
## 2002 I have never smoked 0 Never
## 2003 I have never smoked 0 Less than once a month
## 2004 I have never smoked 0 Several times a week
## 2005 I don't smoke now but I used to 0 Several times a week
## 2006 I have never smoked 0 Less than once a month
## 2007 I don't smoke now but I used to 0 Never
## 2008 I don't smoke now but I used to 0 Once a month
## 2009 I have never smoked 0 Never
## 2010 I have never smoked 0 2-3 times a month
## 2011 I don't smoke now but I used to 0 Several times a week
## 2012 I have never smoked 0 Once a week
## 2013 I smoke daily 12 Once a month
## 2014 I smoke daily 3 Once a month
## 2015 I smoke daily 10 Never
## 2016 I have never smoked 0 Never
## 2017 I smoke daily 10 2-3 times a month
## 2018 I have never smoked 0 Never
## 2019 I have only smoked a few times 0 Less than once a month
## 2020 I don't smoke now but I used to 0 Several times a week
## 2021 I smoke daily 15 Several times a week
## 2022 I have never smoked 0 Never
## 2023 I don't smoke now but I used to 0 Every day
## 2024 I have only smoked a few times 0 Less than once a month
## 2025 I have never smoked 0 Several times a week
## 2026 I have never smoked 0 Several times a week
## 2027 I have never smoked 0 Several times a week
## 2028 I have never smoked 0 Once a month
## 2029 I smoke daily 10 Several times a week
## 2030 I have never smoked 0 Never
## 2031 I have never smoked 0 Less than once a month
## 2032 I smoke daily 15 Once a week
## 2033 I have never smoked 0 2-3 times a month
## 2034 I have never smoked 0 Once a month
## 2035 I have only smoked a few times 0 2-3 times a month
## 2036 I don't smoke now but I used to 0 Several times a week
## 2037 I don't smoke now but I used to 0 Never
## 2038 I smoke daily 20 Once a week
## 2039 I don't smoke now but I used to 0 Once a week
## 2040 I don't smoke now but I used to 0 Less than once a month
## 2041 I don't smoke now but I used to 0 Every day
## 2042 I have never smoked 0 Less than once a month
## 2043 I have never smoked 0 Every day
## 2044 I smoke daily 20 Never
## 2045 I have never smoked 0 Never
## 2046 I don't smoke now but I used to 0 Several times a week
## 2047 I have only smoked a few times 0 Once a week
## 2048 I have never smoked 0 2-3 times a month
## 2049 I don't smoke now but I used to 0 Once a month
## 2050 I have never smoked 0 Every day
## 2051 I smoke daily 4 Once a month
## 2052 I have only smoked a few times 0 Every day
## 2053 I smoke but not every day 0 Once a week
## 2054 I have never smoked 0 Never
## 2055 I don't smoke now but I used to 0 Once a week
## 2056 I have never smoked 0 2-3 times a month
## 2057 I don't smoke now but I used to 0 Every day
## 2058 I smoke daily 12 Once a month
## 2059 I have never smoked 0 Once a month
## 2060 I have never smoked 0 Once a month
## 2061 I don't smoke now but I used to 0 Less than once a month
## 2062 I have never smoked 0 2-3 times a month
## 2063 I have never smoked 0 2-3 times a month
## 2064 I have only smoked a few times 0 Once a week
## 2065 I have never smoked 0 2-3 times a month
## 2066 I don't smoke now but I used to 0 Once a month
## 2067 I have only smoked a few times 0 Several times a week
## 2068 I have never smoked 0 Several times a week
## 2069 I don't smoke now but I used to 0 2-3 times a month
## 2070 I smoke daily 40 2-3 times a month
## 2071 I have never smoked 0 Never
## 2072 I don't smoke now but I used to 0 Several times a week
## 2073 I have never smoked 0 Never
## 2074 I don't smoke now but I used to 0 Less than once a month
## 2075 I have never smoked 0 Once a week
## 2076 I smoke daily 15 Less than once a month
## 2077 I have only smoked a few times 0 Less than once a month
## 2078 I have never smoked 0 Less than once a month
## 2079 I have never smoked 0 Less than once a month
## 2080 I don't smoke now but I used to 0 Every day
## 2081 I smoke but not every day 10 Several times a week
## 2082 I have never smoked 0 Less than once a month
## 2083 I smoke daily 17 Less than once a month
## 2084 I have never smoked 0 Less than once a month
## 2085 I have never smoked 0 Several times a week
## 2086 I have only smoked a few times 0 Several times a week
## 2087 I don't smoke now but I used to 0 Once a week
## 2088 I don't smoke now but I used to 0 Every day
## 2089 I have never smoked 0 Once a week
## 2090 I don't smoke now but I used to 0 2-3 times a month
## 2091 I smoke daily 20 Several times a week
## 2092 I smoke daily 17 Several times a week
## 2093 I smoke daily 15 Every day
## 2094 I don't smoke now but I used to 0 Once a week
## 2095 I smoke daily 7 Never
## 2096 I have never smoked 0 Never
## 2097 I don't smoke now but I used to 0 Once a week
## 2098 I have never smoked 0 Once a week
## 2099 I have never smoked 0 2-3 times a month
## 2100 I have never smoked 0 Once a week
## 2101 I don't smoke now but I used to 0 Less than once a month
## 2102 I have never smoked 0 Once a week
## 2103 I don't smoke now but I used to 0 Never
## 2104 I have never smoked 0 Never
## 2105 I have never smoked 0 Once a week
## 2106 I have never smoked 0 Several times a week
## 2107 I have never smoked 0 Once a month
## 2108 I have never smoked 0 Never
## 2109 I don't smoke now but I used to 0 Several times a week
## 2110 I don't smoke now but I used to 0 Several times a week
## 2111 I have never smoked 0 2-3 times a month
## 2112 I smoke daily 7 Once a week
## 2113 I don't smoke now but I used to 0 Once a week
## 2114 I have never smoked 0 Never
## 2115 I don't smoke now but I used to 0 Once a month
## 2116 I have never smoked 0 Several times a week
## 2117 I have never smoked 0 Less than once a month
## 2118 I have never smoked 0 Never
## 2119 I don't smoke now but I used to 0 Less than once a month
## 2120 I have only smoked a few times 0 Once a month
## 2121 I have never smoked 0 Never
## 2122 I smoke but not every day 2 2-3 times a month
## 2123 I smoke but not every day 2 Less than once a month
## 2124 I don't smoke now but I used to 0 Every day
## 2125 I have never smoked 0 Several times a week
## 2126 I have never smoked 0 Less than once a month
## 2127 I don't smoke now but I used to 0 Once a week
## 2128 I have never smoked 0 Less than once a month
## 2129 I smoke but not every day 1 Once a month
## 2130 I have never smoked 0 Less than once a month
## 2131 I have never smoked 0 Never
## 2132 I smoke daily 5 Several times a week
## 2133 I smoke daily 20 Once a week
## 2134 I have only smoked a few times 0 Less than once a month
## 2135 I have only smoked a few times 0 Less than once a month
## 2136 I don't smoke now but I used to 0 Every day
## 2137 I smoke but not every day 3 Several times a week
## 2138 I have never smoked 0 Never
## 2139 I smoke daily 15 Several times a week
## 2140 I don't smoke now but I used to 0 Never
## 2141 I have only smoked a few times 0 Several times a week
## 2142 I don't smoke now but I used to 0 Several times a week
## 2143 I have only smoked a few times 0 Once a week
## 2144 I smoke daily 30 Once a month
## 2145 I smoke daily 10 Every day
## 2146 I have only smoked a few times 0 Several times a week
## 2147 I have never smoked 0 2-3 times a month
## 2148 I don't smoke now but I used to 0 Several times a week
## 2149 I have never smoked 0 Several times a week
## 2150 I have never smoked 0 Once a week
## 2151 I smoke but not every day 1 Several times a week
## 2152 I don't smoke now but I used to 0 Never
## 2153 I don't smoke now but I used to 0 Several times a week
## 2154 I smoke but not every day 1 Several times a week
## 2155 I smoke daily 12 Several times a week
## 2156 I don't smoke now but I used to 0 Every day
## 2157 I have never smoked 0 Several times a week
## 2158 I have never smoked 0 Less than once a month
## 2159 I have never smoked 0 Several times a week
## 2160 I have never smoked 0 Never
## 2161 I have never smoked 0 Never
## 2162 I smoke daily 4 2-3 times a month
## 2163 I don't smoke now but I used to 0 Never
## 2164 I have never smoked 0 2-3 times a month
## 2165 I don't smoke now but I used to 0 Every day
## 2166 I have never smoked 0 Once a month
## 2167 I have never smoked 0 Less than once a month
## 2168 I have never smoked 0 Once a month
## 2169 I have only smoked a few times 0 Less than once a month
## 2170 I have never smoked 0 Never
## 2171 I don't smoke now but I used to 0 Never
## 2172 I have never smoked 0 Several times a week
## 2173 I don't smoke now but I used to 0 Less than once a month
## 2174 I have never smoked 0 Once a week
## 2175 I have never smoked 0 Less than once a month
## 2176 I don't smoke now but I used to 0 Several times a week
## 2177 I have never smoked 0 2-3 times a month
## 2178 I have never smoked 0 Several times a week
## 2179 I have never smoked 0 Never
## 2180 I have never smoked 0 Once a month
## 2181 I smoke daily 5 Several times a week
## 2182 I don't smoke now but I used to 0 Several times a week
## 2183 I don't smoke now but I used to 0 Less than once a month
## 2184 I have never smoked 0 Less than once a month
## 2185 I have never smoked 0 Several times a week
## 2186 I smoke daily 12 Less than once a month
## 2187 I smoke daily 40 Several times a week
## 2188 I have never smoked 0 2-3 times a month
## 2189 I have never smoked 0 Once a week
## 2190 I don't smoke now but I used to 0 Several times a week
## 2191 I have never smoked 0 Never
## 2192 I have only smoked a few times 0 2-3 times a month
## 2193 I smoke daily 6 Less than once a month
## 2194 I have never smoked 0 Never
## 2195 I smoke daily 10 Once a month
## 2196 I smoke daily 8 Once a week
## 2197 I have never smoked 0 Never
## 2198 I have never smoked 0 Never
## 2199 I smoke daily 9 Once a week
## 2200 I have never smoked 0 Never
## 2201 I smoke daily 10 Several times a week
## 2202 I don't smoke now but I used to 0 Several times a week
## 2203 I smoke but not every day 3 Once a week
## 2204 I smoke but not every day 8 Several times a week
## 2205 I don't smoke now but I used to 0 Every day
## 2206 I have never smoked 0 Every day
## 2207 I have only smoked a few times 0 Several times a week
## 2208 I have never smoked 0 Once a week
## 2209 I have never smoked 0 Several times a week
## 2210 I don't smoke now but I used to 0 Every day
## 2211 I smoke daily 12 Several times a week
## 2212 I don't smoke now but I used to 0 Never
## 2213 I smoke daily 8 Once a week
## 2214 I don't smoke now but I used to 0 2-3 times a month
## 2215 I have only smoked a few times 0 Never
## 2216 I smoke daily 80 Every day
## 2217 I have never smoked 0 Several times a week
## 2218 I have never smoked 0 Never
## 2219 I have never smoked 0 Several times a week
## 2220 I have never smoked 0 Never
## 2221 I smoke daily 7 Once a month
## 2222 I have never smoked 0 Never
## 2223 I have never smoked 0 Once a week
## 2224 I smoke daily 5 Once a week
## 2225 I have never smoked 0 Once a week
## 2226 I don't smoke now but I used to 0 Never
## 2227 I have never smoked 0 Once a week
## 2228 I have never smoked 0 Never
## 2229 I have never smoked 0 Once a month
## 2230 I have never smoked 0 2-3 times a month
## 2231 I have never smoked 0 Several times a week
## 2232 I have only smoked a few times 0 Never
## 2233 I have never smoked 0 Never
## 2234 I have never smoked 0 Never
## 2235 I have never smoked 0 Once a week
## 2236 I have never smoked 0 Never
## 2237 I smoke daily 12 Never
## 2238 I have only smoked a few times 0 Once a week
## 2239 I have never smoked 0 Never
## 2240 I don't smoke now but I used to 0 Several times a week
## 2241 I have never smoked 0 Every day
## 2242 I don't smoke now but I used to 0 Once a week
## 2243 I smoke daily 4 Several times a week
## 2244 I smoke daily 5 Less than once a month
## 2245 I have never smoked 0 2-3 times a month
## 2246 I don't smoke now but I used to 0 Once a week
## 2247 I smoke daily 20 Never
## 2248 I have never smoked 0 Never
## 2249 I don't smoke now but I used to 0 Several times a week
## 2250 I don't smoke now but I used to 0 Every day
## 2251 I don't smoke now but I used to 0 Less than once a month
## 2252 I have never smoked 0 Several times a week
## 2253 I have only smoked a few times 0 Less than once a month
## 2254 I have never smoked 0 Several times a week
## 2255 I have only smoked a few times 0 Less than once a month
## 2256 I don't smoke now but I used to 0 Never
## 2257 I have never smoked 0 Several times a week
## 2258 I have never smoked 0 Never
## 2259 I have never smoked 0 Less than once a month
## 2260 I have never smoked 0 Several times a week
## 2261 I don't smoke now but I used to 0 Once a week
## 2262 I have never smoked 0 Several times a week
## 2263 I don't smoke now but I used to 0 Once a month
## 2264 I don't smoke now but I used to 0 Every day
## 2265 I don't smoke now but I used to 0 Every day
## 2266 <NA> NA <NA>
## 2267 <NA> NA <NA>
## 2268 <NA> NA <NA>
## 2269 <NA> NA <NA>
## 2270 <NA> NA <NA>
## 2271 <NA> NA <NA>
## 2272 <NA> NA <NA>
## 2273 <NA> NA <NA>
## 2274 <NA> NA <NA>
## 2275 <NA> NA <NA>
## 2276 <NA> NA <NA>
## 2277 <NA> NA <NA>
## 2278 <NA> NA <NA>
## 2279 <NA> NA <NA>
## 2280 <NA> NA <NA>
## 2281 <NA> NA <NA>
## 2282 <NA> NA <NA>
## 2283 <NA> NA <NA>
## 2284 <NA> NA <NA>
## 2285 <NA> NA <NA>
## 2286 <NA> NA <NA>
## 2287 <NA> NA <NA>
## 2288 <NA> NA <NA>
## 2289 <NA> NA <NA>
## 2290 <NA> NA <NA>
## 2291 <NA> NA <NA>
## 2292 <NA> NA <NA>
## 2293 <NA> NA <NA>
## 2294 <NA> NA <NA>
## 2295 <NA> NA <NA>
## 2296 <NA> NA <NA>
## 2297 <NA> NA <NA>
## 2298 <NA> NA <NA>
## 2299 <NA> NA <NA>
## 2300 <NA> NA <NA>
## 2301 <NA> NA <NA>
## 2302 <NA> NA <NA>
## 2303 <NA> NA <NA>
## 2304 <NA> NA <NA>
## 2305 <NA> NA <NA>
## 2306 <NA> NA <NA>
## 2307 <NA> NA <NA>
## 2308 <NA> NA <NA>
## 2309 <NA> NA <NA>
## 2310 <NA> NA <NA>
## 2311 <NA> NA <NA>
## 2312 <NA> NA <NA>
## 2313 <NA> NA <NA>
## 2314 <NA> NA <NA>
## 2315 <NA> NA <NA>
## 2316 <NA> NA <NA>
## 2317 <NA> NA <NA>
## 2318 <NA> NA <NA>
## 2319 <NA> NA <NA>
## 2320 <NA> NA <NA>
## 2321 <NA> NA <NA>
## 2322 <NA> NA <NA>
## 2323 <NA> NA <NA>
## 2324 <NA> NA <NA>
## 2325 <NA> NA <NA>
## 2326 <NA> NA <NA>
## 2327 <NA> NA <NA>
## 2328 <NA> NA <NA>
## 2329 <NA> NA <NA>
## 2330 <NA> NA <NA>
## 2331 <NA> NA <NA>
## 2332 <NA> NA <NA>
## 2333 <NA> NA <NA>
## 2334 <NA> NA <NA>
## 2335 <NA> NA <NA>
## 2336 <NA> NA <NA>
## 2337 <NA> NA <NA>
## 2338 <NA> NA <NA>
## 2339 <NA> NA <NA>
## 2340 <NA> NA <NA>
## 2341 <NA> NA <NA>
## 2342 <NA> NA <NA>
## 2343 <NA> NA <NA>
## 2344 <NA> NA <NA>
## 2345 <NA> NA <NA>
## 2346 <NA> NA <NA>
## 2347 <NA> NA <NA>
## 2348 <NA> NA <NA>
## 2349 <NA> NA <NA>
## 2350 <NA> NA <NA>
## 2351 <NA> NA <NA>
## 2352 <NA> NA <NA>
## 2353 <NA> NA <NA>
## 2354 <NA> NA <NA>
## 2355 <NA> NA <NA>
## 2356 <NA> NA <NA>
## 2357 <NA> NA <NA>
## 2358 <NA> NA <NA>
## 2359 <NA> NA <NA>
## 2360 <NA> NA <NA>
## 2361 <NA> NA <NA>
## 2362 <NA> NA <NA>
## 2363 <NA> NA <NA>
## 2364 <NA> NA <NA>
## 2365 <NA> NA <NA>
## 2366 <NA> NA <NA>
## 2367 <NA> NA <NA>
## 2368 <NA> NA <NA>
## 2369 <NA> NA <NA>
## 2370 <NA> NA <NA>
## 2371 <NA> NA <NA>
## 2372 <NA> NA <NA>
## 2373 <NA> NA <NA>
## 2374 <NA> NA <NA>
## 2375 <NA> NA <NA>
## 2376 <NA> NA <NA>
## 2377 <NA> NA <NA>
## 2378 <NA> NA <NA>
## 2379 <NA> NA <NA>
## 2380 <NA> NA <NA>
## 2381 <NA> NA <NA>
## 2382 <NA> NA <NA>
## 2383 <NA> NA <NA>
## 2384 <NA> NA <NA>
## 2385 <NA> NA <NA>
## 2386 <NA> NA <NA>
## 2387 <NA> NA <NA>
## 2388 <NA> NA <NA>
## 2389 <NA> NA <NA>
## 2390 <NA> NA <NA>
## 2391 <NA> NA <NA>
## 2392 <NA> NA <NA>
## 2393 <NA> NA <NA>
## 2394 <NA> NA <NA>
## 2395 <NA> NA <NA>
## 2396 <NA> NA <NA>
## 2397 <NA> NA <NA>
## 2398 <NA> NA <NA>
## 2399 <NA> NA <NA>
## 2400 <NA> NA <NA>
## 2401 <NA> NA <NA>
## 2402 <NA> NA <NA>
## 2403 <NA> NA <NA>
## 2404 <NA> NA <NA>
## 2405 <NA> NA <NA>
## 2406 <NA> NA <NA>
## 2407 <NA> NA <NA>
## 2408 <NA> NA <NA>
## 2409 <NA> NA <NA>
## 2410 <NA> NA <NA>
## 2411 <NA> NA <NA>
## 2412 <NA> NA <NA>
## 2413 <NA> NA <NA>
## 2414 <NA> NA <NA>
## 2415 <NA> NA <NA>
## 2416 <NA> NA <NA>
## 2417 <NA> NA <NA>
## 2418 <NA> NA <NA>
## 2419 <NA> NA <NA>
## 2420 <NA> NA <NA>
## 2421 <NA> NA <NA>
## 2422 <NA> NA <NA>
## 2423 <NA> NA <NA>
## 2424 <NA> NA <NA>
## 2425 <NA> NA <NA>
## 2426 <NA> NA <NA>
## 2427 <NA> NA <NA>
## 2428 <NA> NA <NA>
## 2429 <NA> NA <NA>
## 2430 <NA> NA <NA>
## 2431 <NA> NA <NA>
## 2432 <NA> NA <NA>
## 2433 <NA> NA <NA>
## 2434 <NA> NA <NA>
## 2435 <NA> NA <NA>
## 2436 <NA> NA <NA>
## 2437 <NA> NA <NA>
## 2438 <NA> NA <NA>
## 2439 <NA> NA <NA>
## 2440 <NA> NA <NA>
## 2441 <NA> NA <NA>
## 2442 <NA> NA <NA>
## 2443 <NA> NA <NA>
## 2444 <NA> NA <NA>
## 2445 <NA> NA <NA>
## 2446 <NA> NA <NA>
## 2447 <NA> NA <NA>
## 2448 <NA> NA <NA>
## 2449 <NA> NA <NA>
## 2450 <NA> NA <NA>
## 2451 <NA> NA <NA>
## 2452 <NA> NA <NA>
## 2453 <NA> NA <NA>
## 2454 <NA> NA <NA>
## 2455 <NA> NA <NA>
## 2456 <NA> NA <NA>
## 2457 <NA> NA <NA>
## 2458 <NA> NA <NA>
## 2459 <NA> NA <NA>
## 2460 <NA> NA <NA>
## 2461 <NA> NA <NA>
## 2462 <NA> NA <NA>
## 2463 <NA> NA <NA>
## 2464 <NA> NA <NA>
## 2465 <NA> NA <NA>
## 2466 <NA> NA <NA>
## 2467 <NA> NA <NA>
## 2468 <NA> NA <NA>
## 2469 <NA> NA <NA>
## 2470 <NA> NA <NA>
## 2471 <NA> NA <NA>
## 2472 <NA> NA <NA>
## 2473 <NA> NA <NA>
## 2474 <NA> NA <NA>
## 2475 <NA> NA <NA>
## 2476 <NA> NA <NA>
## 2477 <NA> NA <NA>
## 2478 <NA> NA <NA>
## 2479 <NA> NA <NA>
## 2480 <NA> NA <NA>
## 2481 <NA> NA <NA>
## 2482 <NA> NA <NA>
## 2483 <NA> NA <NA>
## 2484 <NA> NA <NA>
## 2485 <NA> NA <NA>
## 2486 <NA> NA <NA>
## 2487 <NA> NA <NA>
## 2488 <NA> NA <NA>
## 2489 <NA> NA <NA>
## 2490 <NA> NA <NA>
## 2491 <NA> NA <NA>
## 2492 <NA> NA <NA>
## 2493 <NA> NA <NA>
## 2494 <NA> NA <NA>
## 2495 <NA> NA <NA>
## 2496 <NA> NA <NA>
## 2497 <NA> NA <NA>
## 2498 <NA> NA <NA>
## 2499 <NA> NA <NA>
## 2500 <NA> NA <NA>
## 2501 <NA> NA <NA>
## 2502 <NA> NA <NA>
## 2503 <NA> NA <NA>
## 2504 <NA> NA <NA>
## 2505 <NA> NA <NA>
## 2506 <NA> NA <NA>
## 2507 <NA> NA <NA>
## 2508 <NA> NA <NA>
## 2509 <NA> NA <NA>
## 2510 <NA> NA <NA>
## 2511 <NA> NA <NA>
## 2512 <NA> NA <NA>
## 2513 <NA> NA <NA>
## 2514 <NA> NA <NA>
## 2515 <NA> NA <NA>
## 2516 <NA> NA <NA>
## 2517 <NA> NA <NA>
## 2518 <NA> NA <NA>
## 2519 <NA> NA <NA>
## 2520 <NA> NA <NA>
## 2521 <NA> NA <NA>
## 2522 <NA> NA <NA>
## 2523 <NA> NA <NA>
## 2524 <NA> NA <NA>
## 2525 <NA> NA <NA>
## 2526 <NA> NA <NA>
## 2527 <NA> NA <NA>
## 2528 <NA> NA <NA>
## 2529 <NA> NA <NA>
## 2530 <NA> NA <NA>
## 2531 <NA> NA <NA>
## 2532 <NA> NA <NA>
## 2533 <NA> NA <NA>
## 2534 <NA> NA <NA>
## 2535 <NA> NA <NA>
## 2536 <NA> NA <NA>
## 2537 <NA> NA <NA>
## 2538 <NA> NA <NA>
## 2539 <NA> NA <NA>
## 2540 <NA> NA <NA>
## 2541 <NA> NA <NA>
## 2542 <NA> NA <NA>
## 2543 <NA> NA <NA>
## 2544 <NA> NA <NA>
## 2545 <NA> NA <NA>
## 2546 <NA> NA <NA>
## 2547 <NA> NA <NA>
## 2548 <NA> NA <NA>
## 2549 <NA> NA <NA>
## 2550 <NA> NA <NA>
## 2551 <NA> NA <NA>
## 2552 <NA> NA <NA>
## 2553 <NA> NA <NA>
## 2554 <NA> NA <NA>
## 2555 <NA> NA <NA>
## 2556 <NA> NA <NA>
## 2557 <NA> NA <NA>
## 2558 <NA> NA <NA>
## 2559 <NA> NA <NA>
## 2560 <NA> NA <NA>
## 2561 <NA> NA <NA>
## 2562 <NA> NA <NA>
## 2563 <NA> NA <NA>
## 2564 <NA> NA <NA>
## 2565 <NA> NA <NA>
## 2566 <NA> NA <NA>
## 2567 <NA> NA <NA>
## 2568 <NA> NA <NA>
## 2569 <NA> NA <NA>
## 2570 <NA> NA <NA>
## 2571 <NA> NA <NA>
## 2572 <NA> NA <NA>
## 2573 <NA> NA <NA>
## 2574 <NA> NA <NA>
## 2575 <NA> NA <NA>
## 2576 <NA> NA <NA>
## 2577 <NA> NA <NA>
## 2578 <NA> NA <NA>
## 2579 <NA> NA <NA>
## 2580 <NA> NA <NA>
## 2581 <NA> NA <NA>
## 2582 <NA> NA <NA>
## 2583 <NA> NA <NA>
## 2584 <NA> NA <NA>
## 2585 <NA> NA <NA>
## 2586 <NA> NA <NA>
## 2587 <NA> NA <NA>
## 2588 <NA> NA <NA>
## 2589 <NA> NA <NA>
## 2590 <NA> NA <NA>
## 2591 <NA> NA <NA>
## 2592 <NA> NA <NA>
## 2593 <NA> NA <NA>
## 2594 <NA> NA <NA>
## 2595 <NA> NA <NA>
## 2596 <NA> NA <NA>
## 2597 <NA> NA <NA>
## 2598 <NA> NA <NA>
## 2599 <NA> NA <NA>
## 2600 <NA> NA <NA>
## 2601 <NA> NA <NA>
## 2602 <NA> NA <NA>
## 2603 <NA> NA <NA>
## 2604 <NA> NA <NA>
## 2605 <NA> NA <NA>
## 2606 <NA> NA <NA>
## 2607 <NA> NA <NA>
## 2608 <NA> NA <NA>
## 2609 <NA> NA <NA>
## 2610 <NA> NA <NA>
## 2611 <NA> NA <NA>
## 2612 <NA> NA <NA>
## 2613 <NA> NA <NA>
## 2614 <NA> NA <NA>
## 2615 <NA> NA <NA>
## 2616 <NA> NA <NA>
## 2617 <NA> NA <NA>
## 2618 <NA> NA <NA>
## 2619 <NA> NA <NA>
## 2620 <NA> NA <NA>
## 2621 <NA> NA <NA>
## 2622 <NA> NA <NA>
## 2623 <NA> NA <NA>
## 2624 <NA> NA <NA>
## 2625 <NA> NA <NA>
## 2626 <NA> NA <NA>
## 2627 <NA> NA <NA>
## 2628 <NA> NA <NA>
## 2629 <NA> NA <NA>
## 2630 <NA> NA <NA>
## 2631 <NA> NA <NA>
## 2632 <NA> NA <NA>
## 2633 <NA> NA <NA>
## 2634 <NA> NA <NA>
## 2635 <NA> NA <NA>
## 2636 <NA> NA <NA>
## 2637 <NA> NA <NA>
## 2638 <NA> NA <NA>
## 2639 <NA> NA <NA>
## 2640 <NA> NA <NA>
## 2641 <NA> NA <NA>
## 2642 <NA> NA <NA>
## 2643 <NA> NA <NA>
## 2644 <NA> NA <NA>
## 2645 <NA> NA <NA>
## 2646 <NA> NA <NA>
## 2647 <NA> NA <NA>
## 2648 <NA> NA <NA>
## 2649 <NA> NA <NA>
## 2650 <NA> NA <NA>
## 2651 <NA> NA <NA>
## 2652 <NA> NA <NA>
## 2653 <NA> NA <NA>
## 2654 <NA> NA <NA>
## 2655 <NA> NA <NA>
## 2656 <NA> NA <NA>
## 2657 <NA> NA <NA>
## 2658 <NA> NA <NA>
## 2659 <NA> NA <NA>
## 2660 <NA> NA <NA>
## 2661 <NA> NA <NA>
## 2662 <NA> NA <NA>
## 2663 <NA> NA <NA>
## 2664 <NA> NA <NA>
## 2665 <NA> NA <NA>
## 2666 <NA> NA <NA>
## 2667 <NA> NA <NA>
## 2668 <NA> NA <NA>
## 2669 <NA> NA <NA>
## 2670 <NA> NA <NA>
## 2671 <NA> NA <NA>
## 2672 <NA> NA <NA>
## 2673 <NA> NA <NA>
## 2674 <NA> NA <NA>
## 2675 <NA> NA <NA>
## 2676 <NA> NA <NA>
## 2677 <NA> NA <NA>
## 2678 <NA> NA <NA>
## 2679 <NA> NA <NA>
## 2680 <NA> NA <NA>
## 2681 <NA> NA <NA>
## 2682 <NA> NA <NA>
## 2683 <NA> NA <NA>
## 2684 <NA> NA <NA>
## 2685 <NA> NA <NA>
## 2686 <NA> NA <NA>
## 2687 <NA> NA <NA>
## 2688 <NA> NA <NA>
## 2689 <NA> NA <NA>
## 2690 <NA> NA <NA>
## 2691 <NA> NA <NA>
## 2692 <NA> NA <NA>
## 2693 <NA> NA <NA>
## 2694 <NA> NA <NA>
## 2695 <NA> NA <NA>
## 2696 <NA> NA <NA>
## 2697 <NA> NA <NA>
## 2698 <NA> NA <NA>
## 2699 <NA> NA <NA>
## 2700 <NA> NA <NA>
## 2701 <NA> NA <NA>
## 2702 <NA> NA <NA>
## 2703 <NA> NA <NA>
## 2704 <NA> NA <NA>
## 2705 <NA> NA <NA>
## 2706 <NA> NA <NA>
## 2707 <NA> NA <NA>
## 2708 <NA> NA <NA>
## 2709 <NA> NA <NA>
## 2710 <NA> NA <NA>
## 2711 <NA> NA <NA>
## 2712 <NA> NA <NA>
## 2713 <NA> NA <NA>
## 2714 <NA> NA <NA>
## 2715 <NA> NA <NA>
## 2716 <NA> NA <NA>
## 2717 <NA> NA <NA>
## 2718 <NA> NA <NA>
## 2719 <NA> NA <NA>
## 2720 <NA> NA <NA>
## 2721 <NA> NA <NA>
## 2722 <NA> NA <NA>
## 2723 <NA> NA <NA>
## 2724 <NA> NA <NA>
## 2725 <NA> NA <NA>
## 2726 <NA> NA <NA>
## 2727 <NA> NA <NA>
## 2728 <NA> NA <NA>
## 2729 <NA> NA <NA>
## 2730 <NA> NA <NA>
## 2731 <NA> NA <NA>
## 2732 <NA> NA <NA>
## 2733 <NA> NA <NA>
## 2734 <NA> NA <NA>
## 2735 <NA> NA <NA>
## 2736 <NA> NA <NA>
## 2737 <NA> NA <NA>
## 2738 <NA> NA <NA>
## 2739 <NA> NA <NA>
## 2740 <NA> NA <NA>
## 2741 <NA> NA <NA>
## 2742 <NA> NA <NA>
## 2743 <NA> NA <NA>
## 2744 <NA> NA <NA>
## 2745 <NA> NA <NA>
## 2746 <NA> NA <NA>
## 2747 <NA> NA <NA>
## 2748 <NA> NA <NA>
## 2749 <NA> NA <NA>
## 2750 <NA> NA <NA>
## 2751 <NA> NA <NA>
## 2752 <NA> NA <NA>
## 2753 <NA> NA <NA>
## 2754 <NA> NA <NA>
## 2755 <NA> NA <NA>
## 2756 <NA> NA <NA>
## 2757 <NA> NA <NA>
## 2758 <NA> NA <NA>
## 2759 <NA> NA <NA>
## 2760 <NA> NA <NA>
## 2761 <NA> NA <NA>
## 2762 <NA> NA <NA>
## 2763 <NA> NA <NA>
## 2764 <NA> NA <NA>
## 2765 <NA> NA <NA>
## 2766 <NA> NA <NA>
## 2767 <NA> NA <NA>
## 2768 <NA> NA <NA>
## 2769 <NA> NA <NA>
## 2770 <NA> NA <NA>
## 2771 <NA> NA <NA>
## 2772 <NA> NA <NA>
## 2773 <NA> NA <NA>
## 2774 <NA> NA <NA>
## 2775 <NA> NA <NA>
## 2776 <NA> NA <NA>
## 2777 <NA> NA <NA>
## 2778 <NA> NA <NA>
## 2779 <NA> NA <NA>
## 2780 <NA> NA <NA>
## 2781 <NA> NA <NA>
## 2782 <NA> NA <NA>
## 2783 <NA> NA <NA>
## 2784 <NA> NA <NA>
## 2785 <NA> NA <NA>
## 2786 <NA> NA <NA>
## 2787 <NA> NA <NA>
## 2788 <NA> NA <NA>
## 2789 <NA> NA <NA>
## 2790 <NA> NA <NA>
## 2791 <NA> NA <NA>
## 2792 <NA> NA <NA>
## 2793 <NA> NA <NA>
## 2794 <NA> NA <NA>
## 2795 <NA> NA <NA>
## 2796 <NA> NA <NA>
## 2797 <NA> NA <NA>
## 2798 <NA> NA <NA>
## 2799 <NA> NA <NA>
## 2800 <NA> NA <NA>
## 2801 <NA> NA <NA>
## 2802 <NA> NA <NA>
## 2803 <NA> NA <NA>
## 2804 <NA> NA <NA>
## 2805 <NA> NA <NA>
## 2806 <NA> NA <NA>
## 2807 <NA> NA <NA>
## 2808 <NA> NA <NA>
## 2809 <NA> NA <NA>
## 2810 <NA> NA <NA>
## 2811 <NA> NA <NA>
## 2812 <NA> NA <NA>
## 2813 <NA> NA <NA>
## 2814 <NA> NA <NA>
## 2815 <NA> NA <NA>
## 2816 <NA> NA <NA>
## 2817 <NA> NA <NA>
## 2818 <NA> NA <NA>
## 2819 <NA> NA <NA>
## 2820 <NA> NA <NA>
## 2821 <NA> NA <NA>
## 2822 <NA> NA <NA>
## 2823 <NA> NA <NA>
## 2824 <NA> NA <NA>
## 2825 <NA> NA <NA>
## 2826 <NA> NA <NA>
## 2827 <NA> NA <NA>
## 2828 <NA> NA <NA>
## 2829 <NA> NA <NA>
## 2830 <NA> NA <NA>
## 2831 <NA> NA <NA>
## 2832 <NA> NA <NA>
## 2833 <NA> NA <NA>
## 2834 <NA> NA <NA>
## 2835 <NA> NA <NA>
## 2836 <NA> NA <NA>
## 2837 <NA> NA <NA>
## 2838 <NA> NA <NA>
## 2839 <NA> NA <NA>
## 2840 <NA> NA <NA>
## 2841 <NA> NA <NA>
## 2842 <NA> NA <NA>
## 2843 <NA> NA <NA>
## 2844 <NA> NA <NA>
## 2845 <NA> NA <NA>
## 2846 <NA> NA <NA>
## 2847 <NA> NA <NA>
## 2848 <NA> NA <NA>
## 2849 <NA> NA <NA>
## 2850 <NA> NA <NA>
## 2851 <NA> NA <NA>
## 2852 <NA> NA <NA>
## 2853 <NA> NA <NA>
## 2854 <NA> NA <NA>
## 2855 <NA> NA <NA>
## 2856 <NA> NA <NA>
## 2857 <NA> NA <NA>
## 2858 <NA> NA <NA>
## 2859 <NA> NA <NA>
## 2860 <NA> NA <NA>
## 2861 <NA> NA <NA>
## 2862 <NA> NA <NA>
## 2863 <NA> NA <NA>
## 2864 <NA> NA <NA>
## 2865 <NA> NA <NA>
## 2866 <NA> NA <NA>
## 2867 <NA> NA <NA>
## 2868 <NA> NA <NA>
## 2869 <NA> NA <NA>
## 2870 <NA> NA <NA>
## 2871 <NA> NA <NA>
## 2872 <NA> NA <NA>
## 2873 <NA> NA <NA>
## 2874 <NA> NA <NA>
## 2875 <NA> NA <NA>
## 2876 <NA> NA <NA>
## 2877 <NA> NA <NA>
## 2878 <NA> NA <NA>
## 2879 <NA> NA <NA>
## 2880 <NA> NA <NA>
## 2881 <NA> NA <NA>
## 2882 <NA> NA <NA>
## 2883 <NA> NA <NA>
## 2884 <NA> NA <NA>
## 2885 <NA> NA <NA>
## 2886 <NA> NA <NA>
## 2887 <NA> NA <NA>
## 2888 <NA> NA <NA>
## 2889 <NA> NA <NA>
## 2890 <NA> NA <NA>
## 2891 <NA> NA <NA>
## 2892 <NA> NA <NA>
## 2893 <NA> NA <NA>
## 2894 <NA> NA <NA>
## 2895 <NA> NA <NA>
## 2896 <NA> NA <NA>
## 2897 <NA> NA <NA>
## 2898 <NA> NA <NA>
## 2899 <NA> NA <NA>
## 2900 <NA> NA <NA>
## 2901 <NA> NA <NA>
## 2902 <NA> NA <NA>
## 2903 <NA> NA <NA>
## 2904 <NA> NA <NA>
## 2905 <NA> NA <NA>
## 2906 <NA> NA <NA>
## 2907 <NA> NA <NA>
## 2908 <NA> NA <NA>
## 2909 <NA> NA <NA>
## 2910 <NA> NA <NA>
## 2911 <NA> NA <NA>
## 2912 <NA> NA <NA>
## 2913 <NA> NA <NA>
## 2914 <NA> NA <NA>
## 2915 <NA> NA <NA>
## 2916 <NA> NA <NA>
## 2917 <NA> NA <NA>
## 2918 <NA> NA <NA>
## 2919 <NA> NA <NA>
## 2920 <NA> NA <NA>
## 2921 <NA> NA <NA>
## 2922 <NA> NA <NA>
## 2923 <NA> NA <NA>
## 2924 <NA> NA <NA>
## 2925 <NA> NA <NA>
## 2926 <NA> NA <NA>
## 2927 <NA> NA <NA>
## 2928 <NA> NA <NA>
## 2929 <NA> NA <NA>
## 2930 <NA> NA <NA>
## 2931 <NA> NA <NA>
## 2932 <NA> NA <NA>
## 2933 <NA> NA <NA>
## 2934 <NA> NA <NA>
## 2935 <NA> NA <NA>
## 2936 <NA> NA <NA>
## 2937 <NA> NA <NA>
## 2938 <NA> NA <NA>
## 2939 <NA> NA <NA>
## 2940 <NA> NA <NA>
## 2941 <NA> NA <NA>
## 2942 <NA> NA <NA>
## 2943 <NA> NA <NA>
## 2944 <NA> NA <NA>
## 2945 <NA> NA <NA>
## 2946 <NA> NA <NA>
## 2947 <NA> NA <NA>
## 2948 <NA> NA <NA>
## 2949 <NA> NA <NA>
## 2950 <NA> NA <NA>
## 2951 <NA> NA <NA>
## 2952 <NA> NA <NA>
## 2953 <NA> NA <NA>
## 2954 <NA> NA <NA>
## 2955 <NA> NA <NA>
## 2956 <NA> NA <NA>
## 2957 <NA> NA <NA>
## 2958 <NA> NA <NA>
## 2959 <NA> NA <NA>
## 2960 <NA> NA <NA>
## 2961 <NA> NA <NA>
## 2962 <NA> NA <NA>
## 2963 <NA> NA <NA>
## 2964 <NA> NA <NA>
## 2965 <NA> NA <NA>
## 2966 <NA> NA <NA>
## 2967 <NA> NA <NA>
## 2968 <NA> NA <NA>
## 2969 <NA> NA <NA>
## 2970 <NA> NA <NA>
## 2971 <NA> NA <NA>
## 2972 <NA> NA <NA>
## 2973 <NA> NA <NA>
## 2974 <NA> NA <NA>
## 2975 <NA> NA <NA>
## 2976 <NA> NA <NA>
## 2977 <NA> NA <NA>
## 2978 <NA> NA <NA>
## 2979 <NA> NA <NA>
## 2980 <NA> NA <NA>
## 2981 <NA> NA <NA>
## 2982 <NA> NA <NA>
## 2983 <NA> NA <NA>
## 2984 <NA> NA <NA>
## 2985 <NA> NA <NA>
## 2986 <NA> NA <NA>
## 2987 <NA> NA <NA>
## 2988 <NA> NA <NA>
## 2989 <NA> NA <NA>
## 2990 <NA> NA <NA>
## 2991 <NA> NA <NA>
## 2992 <NA> NA <NA>
## 2993 <NA> NA <NA>
## 2994 <NA> NA <NA>
## 2995 <NA> NA <NA>
## 2996 <NA> NA <NA>
## 2997 <NA> NA <NA>
## 2998 <NA> NA <NA>
## 2999 <NA> NA <NA>
## 3000 <NA> NA <NA>
## 3001 <NA> NA <NA>
## 3002 <NA> NA <NA>
## 3003 <NA> NA <NA>
## 3004 <NA> NA <NA>
## 3005 <NA> NA <NA>
## 3006 <NA> NA <NA>
## 3007 <NA> NA <NA>
## 3008 <NA> NA <NA>
## 3009 <NA> NA <NA>
## 3010 <NA> NA <NA>
## 3011 <NA> NA <NA>
## 3012 <NA> NA <NA>
## 3013 <NA> NA <NA>
## 3014 <NA> NA <NA>
## 3015 <NA> NA <NA>
## 3016 <NA> NA <NA>
## 3017 <NA> NA <NA>
## 3018 <NA> NA <NA>
## 3019 <NA> NA <NA>
## 3020 <NA> NA <NA>
## 3021 <NA> NA <NA>
## 3022 <NA> NA <NA>
## 3023 <NA> NA <NA>
## 3024 <NA> NA <NA>
## 3025 <NA> NA <NA>
## 3026 <NA> NA <NA>
## 3027 <NA> NA <NA>
## 3028 <NA> NA <NA>
## 3029 <NA> NA <NA>
## 3030 <NA> NA <NA>
## 3031 <NA> NA <NA>
## 3032 <NA> NA <NA>
## 3033 <NA> NA <NA>
## 3034 <NA> NA <NA>
## 3035 <NA> NA <NA>
## 3036 <NA> NA <NA>
## 3037 <NA> NA <NA>
## 3038 <NA> NA <NA>
## 3039 <NA> NA <NA>
## 3040 <NA> NA <NA>
## 3041 <NA> NA <NA>
## 3042 <NA> NA <NA>
## 3043 <NA> NA <NA>
## 3044 <NA> NA <NA>
## 3045 <NA> NA <NA>
## 3046 <NA> NA <NA>
## 3047 <NA> NA <NA>
## 3048 <NA> NA <NA>
## 3049 <NA> NA <NA>
## 3050 <NA> NA <NA>
## 3051 <NA> NA <NA>
## 3052 <NA> NA <NA>
## 3053 <NA> NA <NA>
## 3054 <NA> NA <NA>
## 3055 <NA> NA <NA>
## 3056 <NA> NA <NA>
## 3057 <NA> NA <NA>
## 3058 <NA> NA <NA>
## 3059 <NA> NA <NA>
## 3060 <NA> NA <NA>
## 3061 <NA> NA <NA>
## 3062 <NA> NA <NA>
## 3063 <NA> NA <NA>
## 3064 <NA> NA <NA>
## 3065 <NA> NA <NA>
## 3066 <NA> NA <NA>
## 3067 <NA> NA <NA>
## 3068 <NA> NA <NA>
## 3069 <NA> NA <NA>
## 3070 <NA> NA <NA>
## 3071 <NA> NA <NA>
## 3072 <NA> NA <NA>
## 3073 <NA> NA <NA>
## 3074 <NA> NA <NA>
## 3075 <NA> NA <NA>
## 3076 <NA> NA <NA>
## 3077 <NA> NA <NA>
## 3078 <NA> NA <NA>
## 3079 <NA> NA <NA>
## 3080 <NA> NA <NA>
## 3081 <NA> NA <NA>
## 3082 <NA> NA <NA>
## 3083 <NA> NA <NA>
## 3084 <NA> NA <NA>
## 3085 <NA> NA <NA>
## 3086 <NA> NA <NA>
## 3087 <NA> NA <NA>
## 3088 <NA> NA <NA>
## 3089 <NA> NA <NA>
## 3090 <NA> NA <NA>
## 3091 <NA> NA <NA>
## 3092 <NA> NA <NA>
## 3093 <NA> NA <NA>
## 3094 <NA> NA <NA>
## 3095 <NA> NA <NA>
## 3096 <NA> NA <NA>
## 3097 <NA> NA <NA>
## 3098 <NA> NA <NA>
## 3099 <NA> NA <NA>
## 3100 <NA> NA <NA>
## 3101 <NA> NA <NA>
## 3102 <NA> NA <NA>
## 3103 <NA> NA <NA>
## 3104 <NA> NA <NA>
## 3105 <NA> NA <NA>
## 3106 <NA> NA <NA>
## 3107 <NA> NA <NA>
## 3108 <NA> NA <NA>
## 3109 <NA> NA <NA>
## 3110 <NA> NA <NA>
## 3111 <NA> NA <NA>
## 3112 <NA> NA <NA>
## 3113 <NA> NA <NA>
## 3114 <NA> NA <NA>
## 3115 <NA> NA <NA>
## 3116 <NA> NA <NA>
## 3117 <NA> NA <NA>
## 3118 <NA> NA <NA>
## 3119 <NA> NA <NA>
## 3120 <NA> NA <NA>
## 3121 <NA> NA <NA>
## 3122 <NA> NA <NA>
## 3123 <NA> NA <NA>
## 3124 <NA> NA <NA>
## 3125 <NA> NA <NA>
## 3126 <NA> NA <NA>
## 3127 <NA> NA <NA>
## 3128 <NA> NA <NA>
## 3129 <NA> NA <NA>
## 3130 <NA> NA <NA>
## 3131 <NA> NA <NA>
## 3132 <NA> NA <NA>
## 3133 <NA> NA <NA>
## 3134 <NA> NA <NA>
## 3135 <NA> NA <NA>
## 3136 <NA> NA <NA>
## 3137 <NA> NA <NA>
## 3138 <NA> NA <NA>
## 3139 <NA> NA <NA>
## 3140 <NA> NA <NA>
## 3141 <NA> NA <NA>
## 3142 <NA> NA <NA>
## 3143 <NA> NA <NA>
## 3144 <NA> NA <NA>
## 3145 <NA> NA <NA>
## 3146 <NA> NA <NA>
## 3147 <NA> NA <NA>
## 3148 <NA> NA <NA>
## 3149 <NA> NA <NA>
## 3150 <NA> NA <NA>
## 3151 <NA> NA <NA>
## 3152 <NA> NA <NA>
## 3153 <NA> NA <NA>
## 3154 <NA> NA <NA>
## 3155 <NA> NA <NA>
## 3156 <NA> NA <NA>
## 3157 <NA> NA <NA>
## 3158 <NA> NA <NA>
## 3159 <NA> NA <NA>
## 3160 <NA> NA <NA>
## 3161 <NA> NA <NA>
## 3162 <NA> NA <NA>
## 3163 <NA> NA <NA>
## 3164 <NA> NA <NA>
## 3165 <NA> NA <NA>
## 3166 <NA> NA <NA>
## 3167 <NA> NA <NA>
## 3168 <NA> NA <NA>
## 3169 <NA> NA <NA>
## 3170 <NA> NA <NA>
## 3171 <NA> NA <NA>
## 3172 <NA> NA <NA>
## 3173 <NA> NA <NA>
## 3174 <NA> NA <NA>
## 3175 <NA> NA <NA>
## 3176 <NA> NA <NA>
## 3177 <NA> NA <NA>
## 3178 <NA> NA <NA>
## 3179 <NA> NA <NA>
## 3180 <NA> NA <NA>
## 3181 <NA> NA <NA>
## 3182 <NA> NA <NA>
## 3183 <NA> NA <NA>
## 3184 <NA> NA <NA>
## 3185 <NA> NA <NA>
## 3186 <NA> NA <NA>
## 3187 <NA> NA <NA>
## 3188 <NA> NA <NA>
## 3189 <NA> NA <NA>
## 3190 <NA> NA <NA>
## 3191 <NA> NA <NA>
## 3192 <NA> NA <NA>
## 3193 <NA> NA <NA>
## 3194 <NA> NA <NA>
## 3195 <NA> NA <NA>
## 3196 <NA> NA <NA>
## 3197 <NA> NA <NA>
## 3198 <NA> NA <NA>
## 3199 <NA> NA <NA>
## 3200 <NA> NA <NA>
## 3201 <NA> NA <NA>
## 3202 <NA> NA <NA>
## 3203 <NA> NA <NA>
## 3204 <NA> NA <NA>
## 3205 <NA> NA <NA>
## 3206 <NA> NA <NA>
## 3207 <NA> NA <NA>
## 3208 <NA> NA <NA>
## 3209 <NA> NA <NA>
## 3210 <NA> NA <NA>
## 3211 <NA> NA <NA>
## 3212 <NA> NA <NA>
## 3213 <NA> NA <NA>
## 3214 <NA> NA <NA>
## 3215 <NA> NA <NA>
## 3216 <NA> NA <NA>
## 3217 <NA> NA <NA>
## 3218 <NA> NA <NA>
## 3219 <NA> NA <NA>
## 3220 <NA> NA <NA>
## 3221 <NA> NA <NA>
## 3222 <NA> NA <NA>
## 3223 <NA> NA <NA>
## 3224 <NA> NA <NA>
## 3225 <NA> NA <NA>
## 3226 <NA> NA <NA>
## 3227 <NA> NA <NA>
## 3228 <NA> NA <NA>
## 3229 <NA> NA <NA>
## 3230 <NA> NA <NA>
## 3231 <NA> NA <NA>
## 3232 <NA> NA <NA>
## 3233 <NA> NA <NA>
## 3234 <NA> NA <NA>
## 3235 <NA> NA <NA>
## 3236 <NA> NA <NA>
## 3237 <NA> NA <NA>
## 3238 <NA> NA <NA>
## 3239 <NA> NA <NA>
## 3240 <NA> NA <NA>
## 3241 <NA> NA <NA>
## 3242 <NA> NA <NA>
## 3243 <NA> NA <NA>
## 3244 <NA> NA <NA>
## 3245 <NA> NA <NA>
## 3246 <NA> NA <NA>
## 3247 <NA> NA <NA>
## 3248 <NA> NA <NA>
## 3249 <NA> NA <NA>
## 3250 <NA> NA <NA>
## 3251 <NA> NA <NA>
## 3252 <NA> NA <NA>
## 3253 <NA> NA <NA>
## 3254 <NA> NA <NA>
## 3255 <NA> NA <NA>
## 3256 <NA> NA <NA>
## 3257 <NA> NA <NA>
## 3258 <NA> NA <NA>
## 3259 <NA> NA <NA>
## 3260 <NA> NA <NA>
## 3261 <NA> NA <NA>
## 3262 <NA> NA <NA>
## 3263 <NA> NA <NA>
## 3264 <NA> NA <NA>
## 3265 <NA> NA <NA>
## 3266 <NA> NA <NA>
## 3267 <NA> NA <NA>
## 3268 <NA> NA <NA>
## 3269 <NA> NA <NA>
## 3270 <NA> NA <NA>
## 3271 <NA> NA <NA>
## 3272 <NA> NA <NA>
## 3273 <NA> NA <NA>
## 3274 <NA> NA <NA>
## 3275 <NA> NA <NA>
## 3276 <NA> NA <NA>
## 3277 <NA> NA <NA>
## 3278 <NA> NA <NA>
## 3279 <NA> NA <NA>
## 3280 <NA> NA <NA>
## 3281 <NA> NA <NA>
## 3282 <NA> NA <NA>
## 3283 <NA> NA <NA>
## 3284 <NA> NA <NA>
## 3285 <NA> NA <NA>
## 3286 <NA> NA <NA>
## 3287 <NA> NA <NA>
## 3288 <NA> NA <NA>
## 3289 <NA> NA <NA>
## 3290 <NA> NA <NA>
## 3291 <NA> NA <NA>
## 3292 <NA> NA <NA>
## 3293 <NA> NA <NA>
## 3294 <NA> NA <NA>
## 3295 <NA> NA <NA>
## 3296 <NA> NA <NA>
## 3297 <NA> NA <NA>
## 3298 <NA> NA <NA>
## 3299 <NA> NA <NA>
## 3300 <NA> NA <NA>
## 3301 <NA> NA <NA>
## 3302 <NA> NA <NA>
## 3303 <NA> NA <NA>
## 3304 <NA> NA <NA>
## 3305 <NA> NA <NA>
## 3306 <NA> NA <NA>
## 3307 <NA> NA <NA>
## 3308 <NA> NA <NA>
## 3309 <NA> NA <NA>
## 3310 <NA> NA <NA>
## 3311 <NA> NA <NA>
## 3312 <NA> NA <NA>
## 3313 <NA> NA <NA>
## 3314 <NA> NA <NA>
## 3315 <NA> NA <NA>
## 3316 <NA> NA <NA>
## 3317 <NA> NA <NA>
## 3318 <NA> NA <NA>
## 3319 <NA> NA <NA>
## 3320 <NA> NA <NA>
## 3321 <NA> NA <NA>
## 3322 <NA> NA <NA>
## 3323 <NA> NA <NA>
## 3324 <NA> NA <NA>
## 3325 <NA> NA <NA>
## 3326 <NA> NA <NA>
## 3327 <NA> NA <NA>
## 3328 <NA> NA <NA>
## 3329 <NA> NA <NA>
## 3330 <NA> NA <NA>
## 3331 <NA> NA <NA>
## 3332 <NA> NA <NA>
## 3333 <NA> NA <NA>
## 3334 <NA> NA <NA>
## 3335 <NA> NA <NA>
## 3336 <NA> NA <NA>
## 3337 <NA> NA <NA>
## 3338 <NA> NA <NA>
## 3339 <NA> NA <NA>
## 3340 <NA> NA <NA>
## 3341 <NA> NA <NA>
## 3342 <NA> NA <NA>
## 3343 <NA> NA <NA>
## 3344 <NA> NA <NA>
## 3345 <NA> NA <NA>
## 3346 <NA> NA <NA>
## 3347 <NA> NA <NA>
## 3348 <NA> NA <NA>
## 3349 <NA> NA <NA>
## 3350 <NA> NA <NA>
## 3351 <NA> NA <NA>
## 3352 <NA> NA <NA>
## 3353 <NA> NA <NA>
## 3354 <NA> NA <NA>
## 3355 <NA> NA <NA>
## 3356 <NA> NA <NA>
## 3357 <NA> NA <NA>
## 3358 <NA> NA <NA>
## 3359 <NA> NA <NA>
## 3360 <NA> NA <NA>
## 3361 <NA> NA <NA>
## 3362 <NA> NA <NA>
## 3363 <NA> NA <NA>
## 3364 <NA> NA <NA>
## 3365 <NA> NA <NA>
## 3366 <NA> NA <NA>
## 3367 <NA> NA <NA>
## 3368 <NA> NA <NA>
## 3369 <NA> NA <NA>
## 3370 <NA> NA <NA>
## 3371 <NA> NA <NA>
## 3372 <NA> NA <NA>
## 3373 <NA> NA <NA>
## 3374 <NA> NA <NA>
## 3375 <NA> NA <NA>
## 3376 <NA> NA <NA>
## 3377 <NA> NA <NA>
## 3378 <NA> NA <NA>
## 3379 <NA> NA <NA>
## 3380 <NA> NA <NA>
## 3381 <NA> NA <NA>
## 3382 <NA> NA <NA>
## 3383 <NA> NA <NA>
## 3384 <NA> NA <NA>
## 3385 <NA> NA <NA>
## 3386 <NA> NA <NA>
## 3387 <NA> NA <NA>
## 3388 <NA> NA <NA>
## 3389 <NA> NA <NA>
## 3390 <NA> NA <NA>
## 3391 <NA> NA <NA>
## 3392 <NA> NA <NA>
## 3393 <NA> NA <NA>
## 3394 <NA> NA <NA>
## 3395 <NA> NA <NA>
## 3396 <NA> NA <NA>
## 3397 <NA> NA <NA>
## 3398 <NA> NA <NA>
## 3399 <NA> NA <NA>
## 3400 <NA> NA <NA>
## 3401 <NA> NA <NA>
## 3402 <NA> NA <NA>
## 3403 <NA> NA <NA>
## 3404 <NA> NA <NA>
## 3405 <NA> NA <NA>
## 3406 <NA> NA <NA>
## 3407 <NA> NA <NA>
## 3408 <NA> NA <NA>
## 3409 <NA> NA <NA>
## 3410 <NA> NA <NA>
## 3411 <NA> NA <NA>
## 3412 <NA> NA <NA>
## 3413 <NA> NA <NA>
## 3414 <NA> NA <NA>
## 3415 <NA> NA <NA>
## 3416 <NA> NA <NA>
## 3417 <NA> NA <NA>
## 3418 <NA> NA <NA>
## 3419 <NA> NA <NA>
## 3420 <NA> NA <NA>
## 3421 <NA> NA <NA>
## 3422 <NA> NA <NA>
## 3423 <NA> NA <NA>
## 3424 <NA> NA <NA>
## 3425 <NA> NA <NA>
## 3426 <NA> NA <NA>
## 3427 <NA> NA <NA>
## 3428 <NA> NA <NA>
## 3429 <NA> NA <NA>
## 3430 <NA> NA <NA>
## 3431 <NA> NA <NA>
## 3432 <NA> NA <NA>
## 3433 <NA> NA <NA>
## 3434 <NA> NA <NA>
## 3435 <NA> NA <NA>
## 3436 <NA> NA <NA>
## 3437 <NA> NA <NA>
## 3438 <NA> NA <NA>
## 3439 <NA> NA <NA>
## 3440 <NA> NA <NA>
## 3441 <NA> NA <NA>
## 3442 <NA> NA <NA>
## 3443 <NA> NA <NA>
## 3444 <NA> NA <NA>
## 3445 <NA> NA <NA>
## 3446 <NA> NA <NA>
## 3447 <NA> NA <NA>
## 3448 <NA> NA <NA>
## 3449 <NA> NA <NA>
## 3450 <NA> NA <NA>
## 3451 <NA> NA <NA>
## 3452 <NA> NA <NA>
## 3453 <NA> NA <NA>
## 3454 <NA> NA <NA>
## 3455 <NA> NA <NA>
## 3456 <NA> NA <NA>
## 3457 <NA> NA <NA>
## 3458 <NA> NA <NA>
## 3459 <NA> NA <NA>
## 3460 <NA> NA <NA>
## 3461 <NA> NA <NA>
## 3462 <NA> NA <NA>
## 3463 <NA> NA <NA>
## 3464 <NA> NA <NA>
## 3465 <NA> NA <NA>
## 3466 <NA> NA <NA>
## 3467 <NA> NA <NA>
## 3468 <NA> NA <NA>
## 3469 <NA> NA <NA>
## 3470 <NA> NA <NA>
## 3471 <NA> NA <NA>
## 3472 <NA> NA <NA>
## 3473 <NA> NA <NA>
## 3474 <NA> NA <NA>
## 3475 <NA> NA <NA>
## 3476 <NA> NA <NA>
## 3477 <NA> NA <NA>
## 3478 <NA> NA <NA>
## 3479 <NA> NA <NA>
## 3480 <NA> NA <NA>
## 3481 <NA> NA <NA>
## 3482 <NA> NA <NA>
## 3483 <NA> NA <NA>
## 3484 <NA> NA <NA>
## 3485 <NA> NA <NA>
## 3486 <NA> NA <NA>
## 3487 <NA> NA <NA>
## 3488 <NA> NA <NA>
## 3489 <NA> NA <NA>
## 3490 <NA> NA <NA>
## 3491 <NA> NA <NA>
## 3492 <NA> NA <NA>
## 3493 <NA> NA <NA>
## 3494 <NA> NA <NA>
## 3495 <NA> NA <NA>
## 3496 <NA> NA <NA>
## 3497 <NA> NA <NA>
## 3498 <NA> NA <NA>
## 3499 <NA> NA <NA>
## 3500 <NA> NA <NA>
## 3501 <NA> NA <NA>
## 3502 <NA> NA <NA>
## 3503 <NA> NA <NA>
## 3504 <NA> NA <NA>
## 3505 <NA> NA <NA>
## 3506 <NA> NA <NA>
## 3507 <NA> NA <NA>
## 3508 <NA> NA <NA>
## 3509 <NA> NA <NA>
## 3510 <NA> NA <NA>
## 3511 <NA> NA <NA>
## 3512 <NA> NA <NA>
## 3513 <NA> NA <NA>
## 3514 <NA> NA <NA>
## 3515 <NA> NA <NA>
## 3516 <NA> NA <NA>
## 3517 <NA> NA <NA>
## 3518 <NA> NA <NA>
## 3519 <NA> NA <NA>
## 3520 <NA> NA <NA>
## 3521 <NA> NA <NA>
## 3522 <NA> NA <NA>
## 3523 <NA> NA <NA>
## 3524 <NA> NA <NA>
## 3525 <NA> NA <NA>
## 3526 <NA> NA <NA>
## 3527 <NA> NA <NA>
## 3528 <NA> NA <NA>
## 3529 <NA> NA <NA>
## 3530 <NA> NA <NA>
## 3531 <NA> NA <NA>
## 3532 <NA> NA <NA>
## 3533 <NA> NA <NA>
## 3534 <NA> NA <NA>
## 3535 <NA> NA <NA>
## 3536 <NA> NA <NA>
## 3537 <NA> NA <NA>
## 3538 <NA> NA <NA>
## 3539 <NA> NA <NA>
## 3540 <NA> NA <NA>
## 3541 <NA> NA <NA>
## 3542 <NA> NA <NA>
## 3543 <NA> NA <NA>
## 3544 <NA> NA <NA>
## 3545 <NA> NA <NA>
## 3546 <NA> NA <NA>
## 3547 <NA> NA <NA>
## 3548 <NA> NA <NA>
## 3549 <NA> NA <NA>
## 3550 <NA> NA <NA>
## 3551 <NA> NA <NA>
## 3552 <NA> NA <NA>
## 3553 <NA> NA <NA>
## 3554 <NA> NA <NA>
## 3555 <NA> NA <NA>
## 3556 <NA> NA <NA>
## 3557 <NA> NA <NA>
## 3558 <NA> NA <NA>
## 3559 <NA> NA <NA>
## 3560 <NA> NA <NA>
## 3561 <NA> NA <NA>
## 3562 <NA> NA <NA>
## 3563 <NA> NA <NA>
## 3564 <NA> NA <NA>
## 3565 <NA> NA <NA>
## 3566 <NA> NA <NA>
## 3567 <NA> NA <NA>
## 3568 <NA> NA <NA>
## 3569 <NA> NA <NA>
## 3570 <NA> NA <NA>
## 3571 <NA> NA <NA>
## 3572 <NA> NA <NA>
## 3573 <NA> NA <NA>
## 3574 <NA> NA <NA>
## 3575 <NA> NA <NA>
## 3576 <NA> NA <NA>
## 3577 <NA> NA <NA>
## 3578 <NA> NA <NA>
## 3579 <NA> NA <NA>
## 3580 <NA> NA <NA>
## 3581 <NA> NA <NA>
## 3582 <NA> NA <NA>
## 3583 <NA> NA <NA>
## 3584 <NA> NA <NA>
## 3585 <NA> NA <NA>
## 3586 <NA> NA <NA>
## 3587 <NA> NA <NA>
## 3588 <NA> NA <NA>
## 3589 <NA> NA <NA>
## 3590 <NA> NA <NA>
## 3591 <NA> NA <NA>
## 3592 <NA> NA <NA>
## 3593 <NA> NA <NA>
## 3594 <NA> NA <NA>
## 3595 <NA> NA <NA>
## 3596 <NA> NA <NA>
## 3597 <NA> NA <NA>
## 3598 <NA> NA <NA>
## 3599 <NA> NA <NA>
## 3600 <NA> NA <NA>
## 3601 <NA> NA <NA>
## 3602 <NA> NA <NA>
## 3603 <NA> NA <NA>
## 3604 <NA> NA <NA>
## 3605 <NA> NA <NA>
## 3606 <NA> NA <NA>
## 3607 <NA> NA <NA>
## 3608 <NA> NA <NA>
## 3609 <NA> NA <NA>
## 3610 <NA> NA <NA>
## 3611 <NA> NA <NA>
## 3612 <NA> NA <NA>
## 3613 <NA> NA <NA>
## 3614 <NA> NA <NA>
## 3615 <NA> NA <NA>
## 3616 <NA> NA <NA>
## 3617 <NA> NA <NA>
## 3618 <NA> NA <NA>
## 3619 <NA> NA <NA>
## 3620 <NA> NA <NA>
## 3621 <NA> NA <NA>
## 3622 <NA> NA <NA>
## 3623 <NA> NA <NA>
## 3624 <NA> NA <NA>
## 3625 <NA> NA <NA>
## 3626 <NA> NA <NA>
## 3627 <NA> NA <NA>
## 3628 <NA> NA <NA>
## 3629 <NA> NA <NA>
## 3630 <NA> NA <NA>
## 3631 <NA> NA <NA>
## 3632 <NA> NA <NA>
## 3633 <NA> NA <NA>
## 3634 <NA> NA <NA>
## 3635 <NA> NA <NA>
## 3636 <NA> NA <NA>
## 3637 <NA> NA <NA>
## 3638 <NA> NA <NA>
## 3639 <NA> NA <NA>
## 3640 <NA> NA <NA>
## 3641 <NA> NA <NA>
## 3642 <NA> NA <NA>
## 3643 <NA> NA <NA>
## 3644 <NA> NA <NA>
## 3645 <NA> NA <NA>
## 3646 <NA> NA <NA>
## 3647 <NA> NA <NA>
## 3648 <NA> NA <NA>
## 3649 <NA> NA <NA>
## 3650 <NA> NA <NA>
## 3651 <NA> NA <NA>
## 3652 <NA> NA <NA>
## 3653 <NA> NA <NA>
## 3654 <NA> NA <NA>
## 3655 <NA> NA <NA>
## 3656 <NA> NA <NA>
## 3657 <NA> NA <NA>
## 3658 <NA> NA <NA>
## 3659 <NA> NA <NA>
## 3660 <NA> NA <NA>
## 3661 <NA> NA <NA>
## 3662 <NA> NA <NA>
## 3663 <NA> NA <NA>
## 3664 <NA> NA <NA>
## 3665 <NA> NA <NA>
## 3666 <NA> NA <NA>
## 3667 <NA> NA <NA>
## 3668 <NA> NA <NA>
## 3669 <NA> NA <NA>
## 3670 <NA> NA <NA>
## 3671 <NA> NA <NA>
## 3672 <NA> NA <NA>
## 3673 <NA> NA <NA>
## 3674 <NA> NA <NA>
## 3675 <NA> NA <NA>
## 3676 <NA> NA <NA>
## 3677 <NA> NA <NA>
## 3678 <NA> NA <NA>
## 3679 <NA> NA <NA>
## 3680 <NA> NA <NA>
## 3681 <NA> NA <NA>
## 3682 <NA> NA <NA>
## 3683 <NA> NA <NA>
## 3684 <NA> NA <NA>
## 3685 <NA> NA <NA>
## 3686 <NA> NA <NA>
## 3687 <NA> NA <NA>
## 3688 <NA> NA <NA>
## 3689 <NA> NA <NA>
## 3690 <NA> NA <NA>
## 3691 <NA> NA <NA>
## 3692 <NA> NA <NA>
## 3693 <NA> NA <NA>
## 3694 <NA> NA <NA>
## 3695 <NA> NA <NA>
## 3696 <NA> NA <NA>
## 3697 <NA> NA <NA>
## 3698 <NA> NA <NA>
## 3699 <NA> NA <NA>
## 3700 <NA> NA <NA>
## 3701 <NA> NA <NA>
## 3702 <NA> NA <NA>
## 3703 <NA> NA <NA>
## 3704 <NA> NA <NA>
## 3705 <NA> NA <NA>
## 3706 <NA> NA <NA>
## 3707 <NA> NA <NA>
## 3708 <NA> NA <NA>
## 3709 <NA> NA <NA>
## 3710 <NA> NA <NA>
## 3711 <NA> NA <NA>
## 3712 <NA> NA <NA>
## 3713 <NA> NA <NA>
## 3714 <NA> NA <NA>
## 3715 <NA> NA <NA>
## 3716 <NA> NA <NA>
## 3717 <NA> NA <NA>
## 3718 <NA> NA <NA>
## 3719 <NA> NA <NA>
## 3720 <NA> NA <NA>
## 3721 <NA> NA <NA>
## 3722 <NA> NA <NA>
## 3723 <NA> NA <NA>
## 3724 <NA> NA <NA>
## 3725 <NA> NA <NA>
## 3726 <NA> NA <NA>
## 3727 <NA> NA <NA>
## 3728 <NA> NA <NA>
## 3729 <NA> NA <NA>
## 3730 <NA> NA <NA>
## 3731 <NA> NA <NA>
## 3732 <NA> NA <NA>
## 3733 <NA> NA <NA>
## 3734 <NA> NA <NA>
## 3735 <NA> NA <NA>
## 3736 <NA> NA <NA>
## 3737 <NA> NA <NA>
## 3738 <NA> NA <NA>
## 3739 <NA> NA <NA>
## 3740 <NA> NA <NA>
## 3741 <NA> NA <NA>
## 3742 <NA> NA <NA>
## 3743 <NA> NA <NA>
## 3744 <NA> NA <NA>
## 3745 <NA> NA <NA>
## 3746 <NA> NA <NA>
## 3747 <NA> NA <NA>
## 3748 <NA> NA <NA>
## 3749 <NA> NA <NA>
## 3750 <NA> NA <NA>
## 3751 <NA> NA <NA>
## 3752 <NA> NA <NA>
## 3753 <NA> NA <NA>
## 3754 <NA> NA <NA>
## 3755 <NA> NA <NA>
## 3756 <NA> NA <NA>
## 3757 <NA> NA <NA>
## 3758 <NA> NA <NA>
## 3759 <NA> NA <NA>
## 3760 <NA> NA <NA>
## 3761 <NA> NA <NA>
## 3762 <NA> NA <NA>
## 3763 <NA> NA <NA>
## 3764 <NA> NA <NA>
## 3765 <NA> NA <NA>
## 3766 <NA> NA <NA>
## 3767 <NA> NA <NA>
## 3768 <NA> NA <NA>
## 3769 <NA> NA <NA>
## 3770 <NA> NA <NA>
## 3771 <NA> NA <NA>
## 3772 <NA> NA <NA>
## 3773 <NA> NA <NA>
## 3774 <NA> NA <NA>
## 3775 <NA> NA <NA>
## 3776 <NA> NA <NA>
## 3777 <NA> NA <NA>
## 3778 <NA> NA <NA>
## 3779 <NA> NA <NA>
## 3780 <NA> NA <NA>
## 3781 <NA> NA <NA>
## 3782 <NA> NA <NA>
## 3783 <NA> NA <NA>
## 3784 <NA> NA <NA>
## 3785 <NA> NA <NA>
## 3786 <NA> NA <NA>
## 3787 <NA> NA <NA>
## 3788 <NA> NA <NA>
## 3789 <NA> NA <NA>
## 3790 <NA> NA <NA>
## 3791 <NA> NA <NA>
## 3792 <NA> NA <NA>
## 3793 <NA> NA <NA>
## 3794 <NA> NA <NA>
## 3795 <NA> NA <NA>
## 3796 <NA> NA <NA>
## 3797 <NA> NA <NA>
## 3798 <NA> NA <NA>
## 3799 <NA> NA <NA>
## 3800 <NA> NA <NA>
## 3801 <NA> NA <NA>
## 3802 <NA> NA <NA>
## 3803 <NA> NA <NA>
## 3804 <NA> NA <NA>
## 3805 <NA> NA <NA>
## 3806 <NA> NA <NA>
## 3807 <NA> NA <NA>
## 3808 <NA> NA <NA>
## 3809 <NA> NA <NA>
## 3810 <NA> NA <NA>
## 3811 <NA> NA <NA>
## 3812 <NA> NA <NA>
## 3813 <NA> NA <NA>
## 3814 <NA> NA <NA>
## 3815 <NA> NA <NA>
## 3816 <NA> NA <NA>
## 3817 <NA> NA <NA>
## 3818 <NA> NA <NA>
## 3819 <NA> NA <NA>
## 3820 <NA> NA <NA>
## 3821 <NA> NA <NA>
## 3822 <NA> NA <NA>
## 3823 <NA> NA <NA>
## 3824 <NA> NA <NA>
## 3825 <NA> NA <NA>
## 3826 <NA> NA <NA>
## 3827 <NA> NA <NA>
## 3828 <NA> NA <NA>
## 3829 <NA> NA <NA>
## 3830 <NA> NA <NA>
## 3831 <NA> NA <NA>
## 3832 <NA> NA <NA>
## 3833 <NA> NA <NA>
## 3834 <NA> NA <NA>
## 3835 <NA> NA <NA>
## 3836 <NA> NA <NA>
## 3837 <NA> NA <NA>
## 3838 <NA> NA <NA>
## 3839 <NA> NA <NA>
## 3840 <NA> NA <NA>
## 3841 <NA> NA <NA>
## 3842 <NA> NA <NA>
## 3843 <NA> NA <NA>
## 3844 <NA> NA <NA>
## 3845 <NA> NA <NA>
## 3846 <NA> NA <NA>
## 3847 <NA> NA <NA>
## 3848 <NA> NA <NA>
## 3849 <NA> NA <NA>
## 3850 <NA> NA <NA>
## 3851 <NA> NA <NA>
## 3852 <NA> NA <NA>
## 3853 <NA> NA <NA>
## 3854 <NA> NA <NA>
## 3855 <NA> NA <NA>
## 3856 <NA> NA <NA>
## 3857 <NA> NA <NA>
## 3858 <NA> NA <NA>
## 3859 <NA> NA <NA>
## 3860 <NA> NA <NA>
## 3861 <NA> NA <NA>
## 3862 <NA> NA <NA>
## 3863 <NA> NA <NA>
## 3864 <NA> NA <NA>
## 3865 <NA> NA <NA>
## 3866 <NA> NA <NA>
## 3867 <NA> NA <NA>
## 3868 <NA> NA <NA>
## 3869 <NA> NA <NA>
## 3870 <NA> NA <NA>
## 3871 <NA> NA <NA>
## 3872 <NA> NA <NA>
## 3873 <NA> NA <NA>
## 3874 <NA> NA <NA>
## 3875 <NA> NA <NA>
## 3876 <NA> NA <NA>
## 3877 <NA> NA <NA>
## 3878 <NA> NA <NA>
## 3879 <NA> NA <NA>
## 3880 <NA> NA <NA>
## 3881 <NA> NA <NA>
## 3882 <NA> NA <NA>
## 3883 <NA> NA <NA>
## 3884 <NA> NA <NA>
## 3885 <NA> NA <NA>
## 3886 <NA> NA <NA>
## 3887 <NA> NA <NA>
## 3888 <NA> NA <NA>
## 3889 <NA> NA <NA>
## 3890 <NA> NA <NA>
## 3891 <NA> NA <NA>
## 3892 <NA> NA <NA>
## 3893 <NA> NA <NA>
## 3894 <NA> NA <NA>
## 3895 <NA> NA <NA>
## 3896 <NA> NA <NA>
## 3897 <NA> NA <NA>
## 3898 <NA> NA <NA>
## 3899 <NA> NA <NA>
## 3900 <NA> NA <NA>
## 3901 <NA> NA <NA>
## 3902 <NA> NA <NA>
## 3903 <NA> NA <NA>
## 3904 <NA> NA <NA>
## 3905 <NA> NA <NA>
## 3906 <NA> NA <NA>
## 3907 <NA> NA <NA>
## 3908 <NA> NA <NA>
## 3909 <NA> NA <NA>
## 3910 <NA> NA <NA>
## 3911 <NA> NA <NA>
## 3912 <NA> NA <NA>
## 3913 <NA> NA <NA>
## 3914 <NA> NA <NA>
## 3915 <NA> NA <NA>
## 3916 <NA> NA <NA>
## 3917 <NA> NA <NA>
## 3918 <NA> NA <NA>
## 3919 <NA> NA <NA>
## 3920 <NA> NA <NA>
## 3921 <NA> NA <NA>
## 3922 <NA> NA <NA>
## 3923 <NA> NA <NA>
## 3924 <NA> NA <NA>
## 3925 <NA> NA <NA>
## 3926 <NA> NA <NA>
## 3927 <NA> NA <NA>
## 3928 <NA> NA <NA>
## 3929 <NA> NA <NA>
## 3930 <NA> NA <NA>
## 3931 <NA> NA <NA>
## 3932 <NA> NA <NA>
## 3933 <NA> NA <NA>
## 3934 <NA> NA <NA>
## 3935 <NA> NA <NA>
## 3936 <NA> NA <NA>
## 3937 <NA> NA <NA>
## 3938 <NA> NA <NA>
## 3939 <NA> NA <NA>
## 3940 <NA> NA <NA>
## 3941 <NA> NA <NA>
## 3942 <NA> NA <NA>
## 3943 <NA> NA <NA>
## 3944 <NA> NA <NA>
## 3945 <NA> NA <NA>
## 3946 <NA> NA <NA>
## 3947 <NA> NA <NA>
## 3948 <NA> NA <NA>
## 3949 <NA> NA <NA>
## 3950 <NA> NA <NA>
## 3951 <NA> NA <NA>
## 3952 <NA> NA <NA>
## 3953 <NA> NA <NA>
## 3954 <NA> NA <NA>
## 3955 <NA> NA <NA>
## 3956 <NA> NA <NA>
## 3957 <NA> NA <NA>
## 3958 <NA> NA <NA>
## 3959 <NA> NA <NA>
## 3960 <NA> NA <NA>
## 3961 <NA> NA <NA>
## 3962 <NA> NA <NA>
## 3963 <NA> NA <NA>
## 3964 <NA> NA <NA>
## 3965 <NA> NA <NA>
## 3966 <NA> NA <NA>
## 3967 <NA> NA <NA>
## 3968 <NA> NA <NA>
## 3969 <NA> NA <NA>
## 3970 <NA> NA <NA>
## 3971 <NA> NA <NA>
## 3972 <NA> NA <NA>
## 3973 <NA> NA <NA>
## 3974 <NA> NA <NA>
## 3975 <NA> NA <NA>
## 3976 <NA> NA <NA>
## 3977 <NA> NA <NA>
## 3978 <NA> NA <NA>
## 3979 <NA> NA <NA>
## 3980 <NA> NA <NA>
## 3981 <NA> NA <NA>
## 3982 <NA> NA <NA>
## 3983 <NA> NA <NA>
## 3984 <NA> NA <NA>
## 3985 <NA> NA <NA>
## 3986 <NA> NA <NA>
## 3987 <NA> NA <NA>
## 3988 <NA> NA <NA>
## 3989 <NA> NA <NA>
## 3990 <NA> NA <NA>
## 3991 <NA> NA <NA>
## 3992 <NA> NA <NA>
## 3993 <NA> NA <NA>
## 3994 <NA> NA <NA>
## 3995 <NA> NA <NA>
## 3996 <NA> NA <NA>
## 3997 <NA> NA <NA>
## 3998 <NA> NA <NA>
## 3999 <NA> NA <NA>
## 4000 <NA> NA <NA>
## 4001 <NA> NA <NA>
## 4002 <NA> NA <NA>
## 4003 <NA> NA <NA>
## 4004 <NA> NA <NA>
## 4005 <NA> NA <NA>
## 4006 <NA> NA <NA>
## 4007 <NA> NA <NA>
## 4008 <NA> NA <NA>
## 4009 <NA> NA <NA>
## 4010 <NA> NA <NA>
## 4011 <NA> NA <NA>
## 4012 <NA> NA <NA>
## 4013 <NA> NA <NA>
## 4014 <NA> NA <NA>
## 4015 <NA> NA <NA>
## 4016 <NA> NA <NA>
## 4017 <NA> NA <NA>
## 4018 <NA> NA <NA>
## 4019 <NA> NA <NA>
## 4020 <NA> NA <NA>
## 4021 <NA> NA <NA>
## 4022 <NA> NA <NA>
## 4023 <NA> NA <NA>
## 4024 <NA> NA <NA>
## 4025 <NA> NA <NA>
## 4026 <NA> NA <NA>
## 4027 <NA> NA <NA>
## 4028 <NA> NA <NA>
## 4029 <NA> NA <NA>
## 4030 <NA> NA <NA>
## 4031 <NA> NA <NA>
## 4032 <NA> NA <NA>
## 4033 <NA> NA <NA>
## 4034 <NA> NA <NA>
## 4035 <NA> NA <NA>
## 4036 <NA> NA <NA>
## 4037 <NA> NA <NA>
## 4038 <NA> NA <NA>
## 4039 <NA> NA <NA>
## 4040 <NA> NA <NA>
## 4041 <NA> NA <NA>
## 4042 <NA> NA <NA>
## 4043 <NA> NA <NA>
## 4044 <NA> NA <NA>
## 4045 <NA> NA <NA>
## 4046 <NA> NA <NA>
## 4047 <NA> NA <NA>
## 4048 <NA> NA <NA>
## 4049 <NA> NA <NA>
## 4050 <NA> NA <NA>
## 4051 <NA> NA <NA>
## 4052 <NA> NA <NA>
## 4053 <NA> NA <NA>
## 4054 <NA> NA <NA>
## 4055 <NA> NA <NA>
## 4056 <NA> NA <NA>
## 4057 <NA> NA <NA>
## 4058 <NA> NA <NA>
## 4059 <NA> NA <NA>
## 4060 <NA> NA <NA>
## 4061 <NA> NA <NA>
## 4062 <NA> NA <NA>
## 4063 <NA> NA <NA>
## 4064 <NA> NA <NA>
## 4065 <NA> NA <NA>
## 4066 <NA> NA <NA>
## 4067 <NA> NA <NA>
## 4068 <NA> NA <NA>
## 4069 <NA> NA <NA>
## 4070 <NA> NA <NA>
## 4071 <NA> NA <NA>
## 4072 <NA> NA <NA>
## 4073 <NA> NA <NA>
## 4074 <NA> NA <NA>
## 4075 <NA> NA <NA>
## 4076 <NA> NA <NA>
## 4077 <NA> NA <NA>
## 4078 <NA> NA <NA>
## 4079 <NA> NA <NA>
## 4080 <NA> NA <NA>
## 4081 <NA> NA <NA>
## 4082 <NA> NA <NA>
## 4083 <NA> NA <NA>
## 4084 <NA> NA <NA>
## 4085 <NA> NA <NA>
## 4086 <NA> NA <NA>
## 4087 <NA> NA <NA>
## 4088 <NA> NA <NA>
## 4089 <NA> NA <NA>
## 4090 <NA> NA <NA>
## 4091 <NA> NA <NA>
## 4092 <NA> NA <NA>
## 4093 <NA> NA <NA>
## 4094 <NA> NA <NA>
## 4095 <NA> NA <NA>
## 4096 <NA> NA <NA>
## 4097 <NA> NA <NA>
## 4098 <NA> NA <NA>
## 4099 <NA> NA <NA>
## 4100 <NA> NA <NA>
## 4101 <NA> NA <NA>
## 4102 <NA> NA <NA>
## 4103 <NA> NA <NA>
## 4104 <NA> NA <NA>
## 4105 <NA> NA <NA>
## 4106 <NA> NA <NA>
## 4107 <NA> NA <NA>
## 4108 <NA> NA <NA>
## 4109 <NA> NA <NA>
## 4110 <NA> NA <NA>
## 4111 <NA> NA <NA>
## 4112 <NA> NA <NA>
## 4113 <NA> NA <NA>
## 4114 <NA> NA <NA>
## 4115 <NA> NA <NA>
## 4116 <NA> NA <NA>
## 4117 <NA> NA <NA>
## 4118 <NA> NA <NA>
## 4119 <NA> NA <NA>
## 4120 <NA> NA <NA>
## 4121 <NA> NA <NA>
## 4122 <NA> NA <NA>
## 4123 <NA> NA <NA>
## 4124 <NA> NA <NA>
## 4125 <NA> NA <NA>
## 4126 <NA> NA <NA>
## 4127 <NA> NA <NA>
## 4128 <NA> NA <NA>
## 4129 <NA> NA <NA>
## 4130 <NA> NA <NA>
## 4131 <NA> NA <NA>
## 4132 <NA> NA <NA>
## 4133 <NA> NA <NA>
## 4134 <NA> NA <NA>
## 4135 <NA> NA <NA>
## 4136 <NA> NA <NA>
## 4137 <NA> NA <NA>
## 4138 <NA> NA <NA>
## 4139 <NA> NA <NA>
## 4140 <NA> NA <NA>
## 4141 <NA> NA <NA>
## 4142 <NA> NA <NA>
## 4143 <NA> NA <NA>
## 4144 <NA> NA <NA>
## 4145 <NA> NA <NA>
## 4146 <NA> NA <NA>
## 4147 <NA> NA <NA>
## 4148 <NA> NA <NA>
## 4149 <NA> NA <NA>
## 4150 <NA> NA <NA>
## 4151 <NA> NA <NA>
## 4152 <NA> NA <NA>
## 4153 <NA> NA <NA>
## 4154 <NA> NA <NA>
## 4155 <NA> NA <NA>
## 4156 <NA> NA <NA>
## 4157 <NA> NA <NA>
## 4158 <NA> NA <NA>
## 4159 <NA> NA <NA>
## 4160 <NA> NA <NA>
## 4161 <NA> NA <NA>
## 4162 <NA> NA <NA>
## 4163 <NA> NA <NA>
## 4164 <NA> NA <NA>
## 4165 <NA> NA <NA>
## 4166 <NA> NA <NA>
## 4167 <NA> NA <NA>
## 4168 <NA> NA <NA>
## 4169 <NA> NA <NA>
## 4170 <NA> NA <NA>
## 4171 <NA> NA <NA>
## 4172 <NA> NA <NA>
## 4173 <NA> NA <NA>
## 4174 <NA> NA <NA>
## 4175 <NA> NA <NA>
## 4176 <NA> NA <NA>
## 4177 <NA> NA <NA>
## 4178 <NA> NA <NA>
## 4179 <NA> NA <NA>
## 4180 <NA> NA <NA>
## 4181 <NA> NA <NA>
## 4182 <NA> NA <NA>
## 4183 <NA> NA <NA>
## 4184 <NA> NA <NA>
## 4185 <NA> NA <NA>
## 4186 <NA> NA <NA>
## 4187 <NA> NA <NA>
## 4188 <NA> NA <NA>
## 4189 <NA> NA <NA>
## 4190 <NA> NA <NA>
## 4191 <NA> NA <NA>
## 4192 <NA> NA <NA>
## 4193 <NA> NA <NA>
## 4194 <NA> NA <NA>
## 4195 <NA> NA <NA>
## 4196 <NA> NA <NA>
## 4197 <NA> NA <NA>
## 4198 <NA> NA <NA>
## 4199 <NA> NA <NA>
## 4200 <NA> NA <NA>
## 4201 <NA> NA <NA>
## 4202 <NA> NA <NA>
## 4203 <NA> NA <NA>
## 4204 <NA> NA <NA>
## 4205 <NA> NA <NA>
## 4206 <NA> NA <NA>
## 4207 <NA> NA <NA>
## 4208 <NA> NA <NA>
## 4209 <NA> NA <NA>
## 4210 <NA> NA <NA>
## 4211 <NA> NA <NA>
## 4212 <NA> NA <NA>
## 4213 <NA> NA <NA>
## 4214 <NA> NA <NA>
## 4215 <NA> NA <NA>
## 4216 <NA> NA <NA>
## 4217 <NA> NA <NA>
## 4218 <NA> NA <NA>
## 4219 <NA> NA <NA>
## 4220 <NA> NA <NA>
## 4221 <NA> NA <NA>
## 4222 <NA> NA <NA>
## 4223 <NA> NA <NA>
## 4224 <NA> NA <NA>
## 4225 <NA> NA <NA>
## 4226 <NA> NA <NA>
## 4227 <NA> NA <NA>
## 4228 <NA> NA <NA>
## 4229 <NA> NA <NA>
## 4230 <NA> NA <NA>
## 4231 <NA> NA <NA>
## 4232 <NA> NA <NA>
## 4233 <NA> NA <NA>
## 4234 <NA> NA <NA>
## 4235 <NA> NA <NA>
## 4236 <NA> NA <NA>
## 4237 <NA> NA <NA>
## 4238 <NA> NA <NA>
## 4239 <NA> NA <NA>
## 4240 <NA> NA <NA>
## 4241 <NA> NA <NA>
## 4242 <NA> NA <NA>
## 4243 <NA> NA <NA>
## 4244 <NA> NA <NA>
## 4245 <NA> NA <NA>
## 4246 <NA> NA <NA>
## 4247 <NA> NA <NA>
## 4248 <NA> NA <NA>
## 4249 <NA> NA <NA>
## 4250 <NA> NA <NA>
## 4251 <NA> NA <NA>
## 4252 <NA> NA <NA>
## 4253 <NA> NA <NA>
## 4254 <NA> NA <NA>
## 4255 <NA> NA <NA>
## 4256 <NA> NA <NA>
## 4257 <NA> NA <NA>
## 4258 <NA> NA <NA>
## 4259 <NA> NA <NA>
## 4260 <NA> NA <NA>
## 4261 <NA> NA <NA>
## 4262 <NA> NA <NA>
## 4263 <NA> NA <NA>
## 4264 <NA> NA <NA>
## 4265 <NA> NA <NA>
## 4266 <NA> NA <NA>
## 4267 <NA> NA <NA>
## 4268 <NA> NA <NA>
## 4269 <NA> NA <NA>
## 4270 <NA> NA <NA>
## 4271 <NA> NA <NA>
## 4272 <NA> NA <NA>
## 4273 <NA> NA <NA>
## 4274 <NA> NA <NA>
## 4275 <NA> NA <NA>
## 4276 <NA> NA <NA>
## 4277 <NA> NA <NA>
## 4278 <NA> NA <NA>
## 4279 <NA> NA <NA>
## 4280 <NA> NA <NA>
## 4281 <NA> NA <NA>
## 4282 <NA> NA <NA>
## 4283 <NA> NA <NA>
## 4284 <NA> NA <NA>
## 4285 <NA> NA <NA>
## 4286 <NA> NA <NA>
## 4287 <NA> NA <NA>
## 4288 <NA> NA <NA>
## 4289 <NA> NA <NA>
## 4290 <NA> NA <NA>
## 4291 <NA> NA <NA>
## 4292 <NA> NA <NA>
## 4293 <NA> NA <NA>
## 4294 <NA> NA <NA>
## 4295 <NA> NA <NA>
## 4296 <NA> NA <NA>
## 4297 <NA> NA <NA>
## 4298 <NA> NA <NA>
## 4299 <NA> NA <NA>
## 4300 <NA> NA <NA>
## 4301 <NA> NA <NA>
## 4302 <NA> NA <NA>
## 4303 <NA> NA <NA>
## 4304 <NA> NA <NA>
## 4305 <NA> NA <NA>
## 4306 <NA> NA <NA>
## 4307 <NA> NA <NA>
## 4308 <NA> NA <NA>
## 4309 <NA> NA <NA>
## 4310 <NA> NA <NA>
## 4311 <NA> NA <NA>
## 4312 <NA> NA <NA>
## 4313 <NA> NA <NA>
## 4314 <NA> NA <NA>
## 4315 <NA> NA <NA>
## 4316 <NA> NA <NA>
## 4317 <NA> NA <NA>
## 4318 <NA> NA <NA>
## 4319 <NA> NA <NA>
## 4320 <NA> NA <NA>
## 4321 <NA> NA <NA>
## 4322 <NA> NA <NA>
## 4323 <NA> NA <NA>
## 4324 <NA> NA <NA>
## 4325 <NA> NA <NA>
## 4326 <NA> NA <NA>
## 4327 <NA> NA <NA>
## 4328 <NA> NA <NA>
## 4329 <NA> NA <NA>
## 4330 <NA> NA <NA>
## 4331 <NA> NA <NA>
## 4332 <NA> NA <NA>
## 4333 <NA> NA <NA>
## 4334 <NA> NA <NA>
## 4335 <NA> NA <NA>
## 4336 <NA> NA <NA>
## 4337 <NA> NA <NA>
## 4338 <NA> NA <NA>
## 4339 <NA> NA <NA>
## 4340 <NA> NA <NA>
## 4341 <NA> NA <NA>
## 4342 <NA> NA <NA>
## 4343 <NA> NA <NA>
## 4344 <NA> NA <NA>
## 4345 <NA> NA <NA>
## 4346 <NA> NA <NA>
## 4347 <NA> NA <NA>
## 4348 <NA> NA <NA>
## 4349 <NA> NA <NA>
## 4350 <NA> NA <NA>
## 4351 <NA> NA <NA>
## 4352 <NA> NA <NA>
## 4353 <NA> NA <NA>
## 4354 <NA> NA <NA>
## 4355 <NA> NA <NA>
## 4356 <NA> NA <NA>
## 4357 <NA> NA <NA>
## 4358 <NA> NA <NA>
## 4359 <NA> NA <NA>
## 4360 <NA> NA <NA>
## 4361 <NA> NA <NA>
## 4362 <NA> NA <NA>
## 4363 <NA> NA <NA>
## 4364 <NA> NA <NA>
## 4365 <NA> NA <NA>
## 4366 <NA> NA <NA>
## 4367 <NA> NA <NA>
## 4368 <NA> NA <NA>
## 4369 <NA> NA <NA>
## 4370 <NA> NA <NA>
## 4371 <NA> NA <NA>
## 4372 <NA> NA <NA>
## 4373 <NA> NA <NA>
## 4374 <NA> NA <NA>
## 4375 <NA> NA <NA>
## 4376 <NA> NA <NA>
## 4377 <NA> NA <NA>
## 4378 <NA> NA <NA>
## 4379 <NA> NA <NA>
## 4380 <NA> NA <NA>
## 4381 <NA> NA <NA>
## 4382 <NA> NA <NA>
## 4383 <NA> NA <NA>
## 4384 <NA> NA <NA>
## 4385 <NA> NA <NA>
## 4386 <NA> NA <NA>
## 4387 <NA> NA <NA>
## 4388 <NA> NA <NA>
## 4389 <NA> NA <NA>
## 4390 <NA> NA <NA>
## 4391 <NA> NA <NA>
## 4392 <NA> NA <NA>
## 4393 <NA> NA <NA>
## 4394 <NA> NA <NA>
## 4395 <NA> NA <NA>
## 4396 <NA> NA <NA>
## 4397 <NA> NA <NA>
## 4398 <NA> NA <NA>
## 4399 <NA> NA <NA>
## 4400 <NA> NA <NA>
## 4401 <NA> NA <NA>
## 4402 <NA> NA <NA>
## 4403 <NA> NA <NA>
## 4404 <NA> NA <NA>
## 4405 <NA> NA <NA>
## 4406 <NA> NA <NA>
## 4407 <NA> NA <NA>
## 4408 <NA> NA <NA>
## 4409 <NA> NA <NA>
## 4410 <NA> NA <NA>
## 4411 <NA> NA <NA>
## 4412 <NA> NA <NA>
## 4413 <NA> NA <NA>
## 4414 <NA> NA <NA>
## 4415 <NA> NA <NA>
## 4416 <NA> NA <NA>
## 4417 <NA> NA <NA>
## 4418 <NA> NA <NA>
## 4419 <NA> NA <NA>
## 4420 <NA> NA <NA>
## 4421 <NA> NA <NA>
## 4422 <NA> NA <NA>
## 4423 <NA> NA <NA>
## 4424 <NA> NA <NA>
## 4425 <NA> NA <NA>
## 4426 <NA> NA <NA>
## 4427 <NA> NA <NA>
## 4428 <NA> NA <NA>
## 4429 <NA> NA <NA>
## 4430 <NA> NA <NA>
## 4431 <NA> NA <NA>
## 4432 <NA> NA <NA>
## 4433 <NA> NA <NA>
## 4434 <NA> NA <NA>
## 4435 <NA> NA <NA>
## 4436 <NA> NA <NA>
## 4437 <NA> NA <NA>
## 4438 <NA> NA <NA>
## 4439 <NA> NA <NA>
## 4440 <NA> NA <NA>
## 4441 <NA> NA <NA>
## 4442 <NA> NA <NA>
## 4443 <NA> NA <NA>
## 4444 <NA> NA <NA>
## 4445 <NA> NA <NA>
## 4446 <NA> NA <NA>
## 4447 <NA> NA <NA>
## 4448 <NA> NA <NA>
## 4449 <NA> NA <NA>
## 4450 <NA> NA <NA>
## 4451 <NA> NA <NA>
## 4452 <NA> NA <NA>
## 4453 <NA> NA <NA>
## 4454 <NA> NA <NA>
## 4455 <NA> NA <NA>
## 4456 <NA> NA <NA>
## 4457 <NA> NA <NA>
## 4458 <NA> NA <NA>
## 4459 <NA> NA <NA>
## 4460 <NA> NA <NA>
## 4461 <NA> NA <NA>
## 4462 <NA> NA <NA>
## 4463 <NA> NA <NA>
## 4464 <NA> NA <NA>
## 4465 <NA> NA <NA>
## 4466 <NA> NA <NA>
## 4467 <NA> NA <NA>
## 4468 <NA> NA <NA>
## 4469 <NA> NA <NA>
## 4470 <NA> NA <NA>
## 4471 <NA> NA <NA>
## 4472 <NA> NA <NA>
## 4473 <NA> NA <NA>
## 4474 <NA> NA <NA>
## 4475 <NA> NA <NA>
## 4476 <NA> NA <NA>
## 4477 <NA> NA <NA>
## 4478 <NA> NA <NA>
## 4479 <NA> NA <NA>
## 4480 <NA> NA <NA>
## 4481 <NA> NA <NA>
## 4482 <NA> NA <NA>
## 4483 <NA> NA <NA>
## 4484 <NA> NA <NA>
## 4485 <NA> NA <NA>
## 4486 <NA> NA <NA>
## 4487 <NA> NA <NA>
## 4488 <NA> NA <NA>
## 4489 <NA> NA <NA>
## 4490 <NA> NA <NA>
## 4491 <NA> NA <NA>
## 4492 <NA> NA <NA>
## 4493 <NA> NA <NA>
## 4494 <NA> NA <NA>
## 4495 <NA> NA <NA>
## 4496 <NA> NA <NA>
## 4497 <NA> NA <NA>
## 4498 <NA> NA <NA>
## 4499 <NA> NA <NA>
## 4500 <NA> NA <NA>
## 4501 <NA> NA <NA>
## 4502 <NA> NA <NA>
## 4503 <NA> NA <NA>
## 4504 <NA> NA <NA>
## 4505 <NA> NA <NA>
## 4506 <NA> NA <NA>
## 4507 <NA> NA <NA>
## 4508 <NA> NA <NA>
## 4509 <NA> NA <NA>
## 4510 <NA> NA <NA>
## 4511 <NA> NA <NA>
## 4512 <NA> NA <NA>
## 4513 <NA> NA <NA>
## 4514 <NA> NA <NA>
## 4515 <NA> NA <NA>
## 4516 <NA> NA <NA>
## 4517 <NA> NA <NA>
## 4518 <NA> NA <NA>
## 4519 <NA> NA <NA>
## 4520 <NA> NA <NA>
## 4521 <NA> NA <NA>
## 4522 <NA> NA <NA>
## 4523 <NA> NA <NA>
## 4524 <NA> NA <NA>
## 4525 <NA> NA <NA>
## 4526 <NA> NA <NA>
## 4527 <NA> NA <NA>
## 4528 <NA> NA <NA>
## 4529 <NA> NA <NA>
## 4530 <NA> NA <NA>
## 4531 <NA> NA <NA>
## 4532 <NA> NA <NA>
## 4533 <NA> NA <NA>
## 4534 <NA> NA <NA>
## 4535 <NA> NA <NA>
## 4536 <NA> NA <NA>
## 4537 <NA> NA <NA>
## 4538 <NA> NA <NA>
## 4539 <NA> NA <NA>
## 4540 <NA> NA <NA>
## 4541 <NA> NA <NA>
## 4542 <NA> NA <NA>
## 4543 <NA> NA <NA>
## 4544 <NA> NA <NA>
## 4545 <NA> NA <NA>
## 4546 <NA> NA <NA>
## 4547 <NA> NA <NA>
## 4548 <NA> NA <NA>
## 4549 <NA> NA <NA>
## 4550 <NA> NA <NA>
## 4551 <NA> NA <NA>
## 4552 <NA> NA <NA>
## 4553 <NA> NA <NA>
## 4554 <NA> NA <NA>
## 4555 <NA> NA <NA>
## 4556 <NA> NA <NA>
## 4557 <NA> NA <NA>
## 4558 <NA> NA <NA>
## 4559 <NA> NA <NA>
## 4560 <NA> NA <NA>
## 4561 <NA> NA <NA>
## 4562 <NA> NA <NA>
## 4563 <NA> NA <NA>
## 4564 <NA> NA <NA>
## 4565 <NA> NA <NA>
## 4566 <NA> NA <NA>
## 4567 <NA> NA <NA>
## 4568 <NA> NA <NA>
## 4569 <NA> NA <NA>
## 4570 <NA> NA <NA>
## 4571 <NA> NA <NA>
## 4572 <NA> NA <NA>
## 4573 <NA> NA <NA>
## 4574 <NA> NA <NA>
## 4575 <NA> NA <NA>
## 4576 <NA> NA <NA>
## 4577 <NA> NA <NA>
## 4578 <NA> NA <NA>
## 4579 <NA> NA <NA>
## 4580 <NA> NA <NA>
## 4581 <NA> NA <NA>
## 4582 <NA> NA <NA>
## 4583 <NA> NA <NA>
## 4584 <NA> NA <NA>
## 4585 <NA> NA <NA>
## 4586 <NA> NA <NA>
## 4587 <NA> NA <NA>
## 4588 <NA> NA <NA>
## 4589 <NA> NA <NA>
## 4590 <NA> NA <NA>
## 4591 <NA> NA <NA>
## 4592 <NA> NA <NA>
## 4593 <NA> NA <NA>
## 4594 <NA> NA <NA>
## 4595 <NA> NA <NA>
## 4596 <NA> NA <NA>
## 4597 <NA> NA <NA>
## 4598 <NA> NA <NA>
## 4599 <NA> NA <NA>
## 4600 <NA> NA <NA>
## 4601 <NA> NA <NA>
## 4602 <NA> NA <NA>
## 4603 <NA> NA <NA>
## 4604 <NA> NA <NA>
## 4605 <NA> NA <NA>
## 4606 <NA> NA <NA>
## 4607 <NA> NA <NA>
## 4608 <NA> NA <NA>
## 4609 <NA> NA <NA>
## 4610 <NA> NA <NA>
## 4611 <NA> NA <NA>
## 4612 <NA> NA <NA>
## 4613 <NA> NA <NA>
## 4614 <NA> NA <NA>
## 4615 <NA> NA <NA>
## 4616 <NA> NA <NA>
## 4617 <NA> NA <NA>
## 4618 <NA> NA <NA>
## 4619 <NA> NA <NA>
## 4620 <NA> NA <NA>
## 4621 <NA> NA <NA>
## 4622 <NA> NA <NA>
## 4623 <NA> NA <NA>
## 4624 <NA> NA <NA>
## 4625 <NA> NA <NA>
## 4626 <NA> NA <NA>
## 4627 <NA> NA <NA>
## 4628 <NA> NA <NA>
## 4629 <NA> NA <NA>
## 4630 <NA> NA <NA>
## 4631 <NA> NA <NA>
## 4632 <NA> NA <NA>
## 4633 <NA> NA <NA>
## 4634 <NA> NA <NA>
## 4635 <NA> NA <NA>
## 4636 <NA> NA <NA>
## 4637 <NA> NA <NA>
## 4638 <NA> NA <NA>
## 4639 <NA> NA <NA>
## 4640 <NA> NA <NA>
## 4641 <NA> NA <NA>
## 4642 <NA> NA <NA>
## 4643 <NA> NA <NA>
## 4644 <NA> NA <NA>
## 4645 <NA> NA <NA>
## 4646 <NA> NA <NA>
## 4647 <NA> NA <NA>
## 4648 <NA> NA <NA>
## 4649 <NA> NA <NA>
## 4650 <NA> NA <NA>
## 4651 <NA> NA <NA>
## 4652 <NA> NA <NA>
## 4653 <NA> NA <NA>
## 4654 <NA> NA <NA>
## 4655 <NA> NA <NA>
## 4656 <NA> NA <NA>
## 4657 <NA> NA <NA>
## 4658 <NA> NA <NA>
## 4659 <NA> NA <NA>
## 4660 <NA> NA <NA>
## 4661 <NA> NA <NA>
## 4662 <NA> NA <NA>
## 4663 <NA> NA <NA>
## 4664 <NA> NA <NA>
## 4665 <NA> NA <NA>
## 4666 <NA> NA <NA>
## 4667 <NA> NA <NA>
## 4668 <NA> NA <NA>
## 4669 <NA> NA <NA>
## 4670 <NA> NA <NA>
## 4671 <NA> NA <NA>
## 4672 <NA> NA <NA>
## 4673 <NA> NA <NA>
## 4674 <NA> NA <NA>
## 4675 <NA> NA <NA>
## 4676 <NA> NA <NA>
## 4677 <NA> NA <NA>
## 4678 <NA> NA <NA>
## 4679 <NA> NA <NA>
## 4680 <NA> NA <NA>
## 4681 <NA> NA <NA>
## 4682 <NA> NA <NA>
## 4683 <NA> NA <NA>
## 4684 <NA> NA <NA>
## 4685 <NA> NA <NA>
## 4686 <NA> NA <NA>
## 4687 <NA> NA <NA>
## 4688 <NA> NA <NA>
## 4689 <NA> NA <NA>
## 4690 <NA> NA <NA>
## 4691 <NA> NA <NA>
## 4692 <NA> NA <NA>
## 4693 <NA> NA <NA>
## 4694 <NA> NA <NA>
## 4695 <NA> NA <NA>
## 4696 <NA> NA <NA>
## 4697 <NA> NA <NA>
## 4698 <NA> NA <NA>
## 4699 <NA> NA <NA>
## 4700 <NA> NA <NA>
## 4701 <NA> NA <NA>
## 4702 <NA> NA <NA>
## 4703 <NA> NA <NA>
## 4704 <NA> NA <NA>
## 4705 <NA> NA <NA>
## 4706 <NA> NA <NA>
## 4707 <NA> NA <NA>
## 4708 <NA> NA <NA>
## 4709 <NA> NA <NA>
## 4710 <NA> NA <NA>
## 4711 <NA> NA <NA>
## 4712 <NA> NA <NA>
## 4713 <NA> NA <NA>
## 4714 <NA> NA <NA>
## 4715 <NA> NA <NA>
## 4716 <NA> NA <NA>
## 4717 <NA> NA <NA>
## 4718 <NA> NA <NA>
## 4719 <NA> NA <NA>
## 4720 <NA> NA <NA>
## 4721 <NA> NA <NA>
## 4722 <NA> NA <NA>
## 4723 <NA> NA <NA>
## 4724 <NA> NA <NA>
## 4725 <NA> NA <NA>
## 4726 <NA> NA <NA>
## 4727 <NA> NA <NA>
## 4728 <NA> NA <NA>
## 4729 <NA> NA <NA>
## 4730 <NA> NA <NA>
## 4731 <NA> NA <NA>
## 4732 <NA> NA <NA>
## 4733 <NA> NA <NA>
## 4734 <NA> NA <NA>
## 4735 <NA> NA <NA>
## 4736 <NA> NA <NA>
## 4737 <NA> NA <NA>
## 4738 <NA> NA <NA>
## 4739 <NA> NA <NA>
## 4740 <NA> NA <NA>
## 4741 <NA> NA <NA>
## 4742 <NA> NA <NA>
## 4743 <NA> NA <NA>
## 4744 <NA> NA <NA>
## 4745 <NA> NA <NA>
## 4746 <NA> NA <NA>
## 4747 <NA> NA <NA>
## 4748 <NA> NA <NA>
## 4749 <NA> NA <NA>
## 4750 <NA> NA <NA>
## 4751 <NA> NA <NA>
## 4752 <NA> NA <NA>
## 4753 <NA> NA <NA>
## 4754 <NA> NA <NA>
## 4755 <NA> NA <NA>
## 4756 <NA> NA <NA>
## 4757 <NA> NA <NA>
## 4758 <NA> NA <NA>
## 4759 <NA> NA <NA>
## 4760 <NA> NA <NA>
## 4761 <NA> NA <NA>
## 4762 <NA> NA <NA>
## 4763 <NA> NA <NA>
## 4764 <NA> NA <NA>
## 4765 <NA> NA <NA>
## 4766 <NA> NA <NA>
## 4767 <NA> NA <NA>
## 4768 <NA> NA <NA>
## 4769 <NA> NA <NA>
## 4770 <NA> NA <NA>
## 4771 <NA> NA <NA>
## 4772 <NA> NA <NA>
## 4773 <NA> NA <NA>
## 4774 <NA> NA <NA>
## 4775 <NA> NA <NA>
## 4776 <NA> NA <NA>
## 4777 <NA> NA <NA>
## 4778 <NA> NA <NA>
## 4779 <NA> NA <NA>
## 4780 <NA> NA <NA>
## 4781 <NA> NA <NA>
## 4782 <NA> NA <NA>
## 4783 <NA> NA <NA>
## 4784 <NA> NA <NA>
## 4785 <NA> NA <NA>
## 4786 <NA> NA <NA>
## 4787 <NA> NA <NA>
## 4788 <NA> NA <NA>
## 4789 <NA> NA <NA>
## 4790 <NA> NA <NA>
## 4791 <NA> NA <NA>
## 4792 <NA> NA <NA>
## 4793 <NA> NA <NA>
## 4794 <NA> NA <NA>
## 4795 <NA> NA <NA>
## 4796 <NA> NA <NA>
## 4797 <NA> NA <NA>
## 4798 <NA> NA <NA>
## 4799 <NA> NA <NA>
## 4800 <NA> NA <NA>
## 4801 <NA> NA <NA>
## 4802 <NA> NA <NA>
## 4803 <NA> NA <NA>
## 4804 <NA> NA <NA>
## 4805 <NA> NA <NA>
## 4806 <NA> NA <NA>
## 4807 <NA> NA <NA>
## 4808 <NA> NA <NA>
## 4809 <NA> NA <NA>
## 4810 <NA> NA <NA>
## 4811 <NA> NA <NA>
## 4812 <NA> NA <NA>
## 4813 <NA> NA <NA>
## 4814 <NA> NA <NA>
## 4815 <NA> NA <NA>
## 4816 <NA> NA <NA>
## 4817 <NA> NA <NA>
## 4818 <NA> NA <NA>
## 4819 <NA> NA <NA>
## 4820 <NA> NA <NA>
## 4821 <NA> NA <NA>
## 4822 <NA> NA <NA>
## 4823 <NA> NA <NA>
## 4824 <NA> NA <NA>
## 4825 <NA> NA <NA>
## 4826 <NA> NA <NA>
## 4827 <NA> NA <NA>
## 4828 <NA> NA <NA>
## 4829 <NA> NA <NA>
## 4830 <NA> NA <NA>
## 4831 <NA> NA <NA>
## 4832 <NA> NA <NA>
## 4833 <NA> NA <NA>
## 4834 <NA> NA <NA>
## 4835 <NA> NA <NA>
## 4836 <NA> NA <NA>
## 4837 <NA> NA <NA>
## 4838 <NA> NA <NA>
## 4839 <NA> NA <NA>
## 4840 <NA> NA <NA>
## 4841 <NA> NA <NA>
## 4842 <NA> NA <NA>
## 4843 <NA> NA <NA>
## 4844 <NA> NA <NA>
## 4845 <NA> NA <NA>
## 4846 <NA> NA <NA>
## 4847 <NA> NA <NA>
## 4848 <NA> NA <NA>
## 4849 <NA> NA <NA>
## 4850 <NA> NA <NA>
## 4851 <NA> NA <NA>
## 4852 <NA> NA <NA>
## 4853 <NA> NA <NA>
## 4854 <NA> NA <NA>
## 4855 <NA> NA <NA>
## 4856 <NA> NA <NA>
## 4857 <NA> NA <NA>
## 4858 <NA> NA <NA>
## 4859 <NA> NA <NA>
## 4860 <NA> NA <NA>
## 4861 <NA> NA <NA>
## 4862 <NA> NA <NA>
## 4863 <NA> NA <NA>
## 4864 <NA> NA <NA>
## 4865 <NA> NA <NA>
## 4866 <NA> NA <NA>
## 4867 <NA> NA <NA>
## 4868 <NA> NA <NA>
## 4869 <NA> NA <NA>
## 4870 <NA> NA <NA>
## 4871 <NA> NA <NA>
## 4872 <NA> NA <NA>
## 4873 <NA> NA <NA>
## 4874 <NA> NA <NA>
## 4875 <NA> NA <NA>
## 4876 <NA> NA <NA>
## 4877 <NA> NA <NA>
## 4878 <NA> NA <NA>
## 4879 <NA> NA <NA>
## 4880 <NA> NA <NA>
## 4881 <NA> NA <NA>
## 4882 <NA> NA <NA>
## 4883 <NA> NA <NA>
## 4884 <NA> NA <NA>
## 4885 <NA> NA <NA>
## 4886 <NA> NA <NA>
## 4887 <NA> NA <NA>
## 4888 <NA> NA <NA>
## 4889 <NA> NA <NA>
## 4890 <NA> NA <NA>
## 4891 <NA> NA <NA>
## 4892 <NA> NA <NA>
## 4893 <NA> NA <NA>
## 4894 <NA> NA <NA>
## 4895 <NA> NA <NA>
## 4896 <NA> NA <NA>
## 4897 <NA> NA <NA>
## 4898 <NA> NA <NA>
## 4899 <NA> NA <NA>
## 4900 <NA> NA <NA>
## 4901 <NA> NA <NA>
## 4902 <NA> NA <NA>
## 4903 <NA> NA <NA>
## 4904 <NA> NA <NA>
## 4905 <NA> NA <NA>
## 4906 <NA> NA <NA>
## 4907 <NA> NA <NA>
## 4908 <NA> NA <NA>
## 4909 <NA> NA <NA>
## 4910 <NA> NA <NA>
## 4911 <NA> NA <NA>
## 4912 <NA> NA <NA>
## 4913 <NA> NA <NA>
## 4914 <NA> NA <NA>
## 4915 <NA> NA <NA>
## 4916 <NA> NA <NA>
## 4917 <NA> NA <NA>
## 4918 <NA> NA <NA>
## 4919 <NA> NA <NA>
## 4920 <NA> NA <NA>
## 4921 <NA> NA <NA>
## 4922 <NA> NA <NA>
## 4923 <NA> NA <NA>
## 4924 <NA> NA <NA>
## 4925 <NA> NA <NA>
## 4926 <NA> NA <NA>
## 4927 <NA> NA <NA>
## 4928 <NA> NA <NA>
## 4929 <NA> NA <NA>
## 4930 <NA> NA <NA>
## 4931 <NA> NA <NA>
## 4932 <NA> NA <NA>
## 4933 <NA> NA <NA>
## 4934 <NA> NA <NA>
## 4935 <NA> NA <NA>
## 4936 <NA> NA <NA>
## 4937 <NA> NA <NA>
## 4938 <NA> NA <NA>
## 4939 <NA> NA <NA>
## 4940 <NA> NA <NA>
## 4941 <NA> NA <NA>
## 4942 <NA> NA <NA>
## 4943 <NA> NA <NA>
## 4944 <NA> NA <NA>
## 4945 <NA> NA <NA>
## 4946 <NA> NA <NA>
## 4947 <NA> NA <NA>
## 4948 <NA> NA <NA>
## 4949 <NA> NA <NA>
## 4950 <NA> NA <NA>
## 4951 <NA> NA <NA>
## 4952 <NA> NA <NA>
## 4953 <NA> NA <NA>
## 4954 <NA> NA <NA>
## 4955 <NA> NA <NA>
## 4956 <NA> NA <NA>
## 4957 <NA> NA <NA>
## 4958 <NA> NA <NA>
## 4959 <NA> NA <NA>
## 4960 <NA> NA <NA>
## 4961 <NA> NA <NA>
## 4962 <NA> NA <NA>
## 4963 <NA> NA <NA>
## 4964 <NA> NA <NA>
## 4965 <NA> NA <NA>
## 4966 <NA> NA <NA>
## 4967 <NA> NA <NA>
## 4968 <NA> NA <NA>
## 4969 <NA> NA <NA>
## 4970 <NA> NA <NA>
## 4971 <NA> NA <NA>
## 4972 <NA> NA <NA>
## 4973 <NA> NA <NA>
## 4974 <NA> NA <NA>
## 4975 <NA> NA <NA>
## 4976 <NA> NA <NA>
## 4977 <NA> NA <NA>
## 4978 <NA> NA <NA>
## 4979 <NA> NA <NA>
## 4980 <NA> NA <NA>
## 4981 <NA> NA <NA>
## 4982 <NA> NA <NA>
## 4983 <NA> NA <NA>
## 4984 <NA> NA <NA>
## 4985 <NA> NA <NA>
## 4986 <NA> NA <NA>
## 4987 <NA> NA <NA>
## 4988 <NA> NA <NA>
## 4989 <NA> NA <NA>
## 4990 <NA> NA <NA>
## 4991 <NA> NA <NA>
## 4992 <NA> NA <NA>
## 4993 <NA> NA <NA>
## 4994 <NA> NA <NA>
## 4995 <NA> NA <NA>
## 4996 <NA> NA <NA>
## 4997 <NA> NA <NA>
## 4998 <NA> NA <NA>
## 4999 <NA> NA <NA>
## 5000 <NA> NA <NA>
## 5001 <NA> NA <NA>
## 5002 <NA> NA <NA>
## 5003 <NA> NA <NA>
## 5004 <NA> NA <NA>
## 5005 <NA> NA <NA>
## 5006 <NA> NA <NA>
## 5007 <NA> NA <NA>
## 5008 <NA> NA <NA>
## 5009 <NA> NA <NA>
## 5010 <NA> NA <NA>
## 5011 <NA> NA <NA>
## 5012 <NA> NA <NA>
## 5013 <NA> NA <NA>
## 5014 <NA> NA <NA>
## 5015 <NA> NA <NA>
## 5016 <NA> NA <NA>
## 5017 <NA> NA <NA>
## 5018 <NA> NA <NA>
## 5019 <NA> NA <NA>
## 5020 <NA> NA <NA>
## 5021 <NA> NA <NA>
## 5022 <NA> NA <NA>
## 5023 <NA> NA <NA>
## 5024 <NA> NA <NA>
## 5025 <NA> NA <NA>
## 5026 <NA> NA <NA>
## 5027 <NA> NA <NA>
## 5028 <NA> NA <NA>
## 5029 <NA> NA <NA>
## 5030 <NA> NA <NA>
## 5031 <NA> NA <NA>
## 5032 <NA> NA <NA>
## 5033 <NA> NA <NA>
## 5034 <NA> NA <NA>
## 5035 <NA> NA <NA>
## 5036 <NA> NA <NA>
## 5037 <NA> NA <NA>
## 5038 <NA> NA <NA>
## 5039 <NA> NA <NA>
## 5040 <NA> NA <NA>
## 5041 <NA> NA <NA>
## 5042 <NA> NA <NA>
## 5043 <NA> NA <NA>
## 5044 <NA> NA <NA>
## 5045 <NA> NA <NA>
## 5046 <NA> NA <NA>
## 5047 <NA> NA <NA>
## 5048 <NA> NA <NA>
## 5049 <NA> NA <NA>
## 5050 <NA> NA <NA>
## 5051 <NA> NA <NA>
## 5052 <NA> NA <NA>
## 5053 <NA> NA <NA>
## 5054 <NA> NA <NA>
## 5055 <NA> NA <NA>
## 5056 <NA> NA <NA>
## 5057 <NA> NA <NA>
## 5058 <NA> NA <NA>
## 5059 <NA> NA <NA>
## 5060 <NA> NA <NA>
## 5061 <NA> NA <NA>
## 5062 <NA> NA <NA>
## 5063 <NA> NA <NA>
## 5064 <NA> NA <NA>
## 5065 <NA> NA <NA>
## 5066 <NA> NA <NA>
## 5067 <NA> NA <NA>
## 5068 <NA> NA <NA>
## 5069 <NA> NA <NA>
## 5070 <NA> NA <NA>
## 5071 <NA> NA <NA>
## 5072 <NA> NA <NA>
## 5073 <NA> NA <NA>
## 5074 <NA> NA <NA>
## 5075 <NA> NA <NA>
## 5076 <NA> NA <NA>
## 5077 <NA> NA <NA>
## 5078 <NA> NA <NA>
## 5079 <NA> NA <NA>
## 5080 <NA> NA <NA>
## 5081 <NA> NA <NA>
## 5082 <NA> NA <NA>
## 5083 <NA> NA <NA>
## 5084 <NA> NA <NA>
## 5085 <NA> NA <NA>
## 5086 <NA> NA <NA>
## 5087 <NA> NA <NA>
## 5088 <NA> NA <NA>
## 5089 <NA> NA <NA>
## 5090 <NA> NA <NA>
## 5091 <NA> NA <NA>
## 5092 <NA> NA <NA>
## 5093 <NA> NA <NA>
## 5094 <NA> NA <NA>
## 5095 <NA> NA <NA>
## 5096 <NA> NA <NA>
## 5097 <NA> NA <NA>
## 5098 <NA> NA <NA>
## 5099 <NA> NA <NA>
## 5100 <NA> NA <NA>
## 5101 <NA> NA <NA>
## 5102 <NA> NA <NA>
## 5103 <NA> NA <NA>
## 5104 <NA> NA <NA>
## 5105 <NA> NA <NA>
## 5106 <NA> NA <NA>
## 5107 <NA> NA <NA>
## 5108 <NA> NA <NA>
## 5109 <NA> NA <NA>
## 5110 <NA> NA <NA>
## 5111 <NA> NA <NA>
## 5112 <NA> NA <NA>
## 5113 <NA> NA <NA>
## 5114 <NA> NA <NA>
## 5115 <NA> NA <NA>
## 5116 <NA> NA <NA>
## 5117 <NA> NA <NA>
## 5118 <NA> NA <NA>
## 5119 <NA> NA <NA>
## 5120 <NA> NA <NA>
## 5121 <NA> NA <NA>
## 5122 <NA> NA <NA>
## 5123 <NA> NA <NA>
## 5124 <NA> NA <NA>
## 5125 <NA> NA <NA>
## 5126 <NA> NA <NA>
## 5127 <NA> NA <NA>
## 5128 <NA> NA <NA>
## 5129 <NA> NA <NA>
## 5130 <NA> NA <NA>
## 5131 <NA> NA <NA>
## 5132 <NA> NA <NA>
## 5133 <NA> NA <NA>
## 5134 <NA> NA <NA>
## 5135 <NA> NA <NA>
## 5136 <NA> NA <NA>
## 5137 <NA> NA <NA>
## 5138 <NA> NA <NA>
## 5139 <NA> NA <NA>
## 5140 <NA> NA <NA>
## 5141 <NA> NA <NA>
## 5142 <NA> NA <NA>
## 5143 <NA> NA <NA>
## 5144 <NA> NA <NA>
## 5145 <NA> NA <NA>
## 5146 <NA> NA <NA>
## 5147 <NA> NA <NA>
## 5148 <NA> NA <NA>
## 5149 <NA> NA <NA>
## 5150 <NA> NA <NA>
## 5151 <NA> NA <NA>
## 5152 <NA> NA <NA>
## 5153 <NA> NA <NA>
## 5154 <NA> NA <NA>
## 5155 <NA> NA <NA>
## 5156 <NA> NA <NA>
## 5157 <NA> NA <NA>
## 5158 <NA> NA <NA>
## 5159 <NA> NA <NA>
## 5160 <NA> NA <NA>
## 5161 <NA> NA <NA>
## 5162 <NA> NA <NA>
## 5163 <NA> NA <NA>
## 5164 <NA> NA <NA>
## 5165 <NA> NA <NA>
## 5166 <NA> NA <NA>
## 5167 <NA> NA <NA>
## 5168 <NA> NA <NA>
## 5169 <NA> NA <NA>
## 5170 <NA> NA <NA>
## 5171 <NA> NA <NA>
## 5172 <NA> NA <NA>
## 5173 <NA> NA <NA>
## 5174 <NA> NA <NA>
## 5175 <NA> NA <NA>
## 5176 <NA> NA <NA>
## 5177 <NA> NA <NA>
## 5178 <NA> NA <NA>
## 5179 <NA> NA <NA>
## 5180 <NA> NA <NA>
## 5181 <NA> NA <NA>
## 5182 <NA> NA <NA>
## 5183 <NA> NA <NA>
## 5184 <NA> NA <NA>
## 5185 <NA> NA <NA>
## 5186 <NA> NA <NA>
## 5187 <NA> NA <NA>
## 5188 <NA> NA <NA>
## 5189 <NA> NA <NA>
## 5190 <NA> NA <NA>
## 5191 <NA> NA <NA>
## 5192 <NA> NA <NA>
## 5193 <NA> NA <NA>
## 5194 <NA> NA <NA>
## 5195 <NA> NA <NA>
## 5196 <NA> NA <NA>
## 5197 <NA> NA <NA>
## 5198 <NA> NA <NA>
## 5199 <NA> NA <NA>
## 5200 <NA> NA <NA>
## 5201 <NA> NA <NA>
## 5202 <NA> NA <NA>
## 5203 <NA> NA <NA>
## 5204 <NA> NA <NA>
## 5205 <NA> NA <NA>
## 5206 <NA> NA <NA>
## 5207 <NA> NA <NA>
## 5208 <NA> NA <NA>
## 5209 <NA> NA <NA>
## 5210 <NA> NA <NA>
## 5211 <NA> NA <NA>
## 5212 <NA> NA <NA>
## 5213 <NA> NA <NA>
## 5214 <NA> NA <NA>
## 5215 <NA> NA <NA>
## 5216 <NA> NA <NA>
## 5217 <NA> NA <NA>
## 5218 <NA> NA <NA>
## 5219 <NA> NA <NA>
## 5220 <NA> NA <NA>
## 5221 <NA> NA <NA>
## 5222 <NA> NA <NA>
## 5223 <NA> NA <NA>
## 5224 <NA> NA <NA>
## 5225 <NA> NA <NA>
## 5226 <NA> NA <NA>
## 5227 <NA> NA <NA>
## 5228 <NA> NA <NA>
## 5229 <NA> NA <NA>
## 5230 <NA> NA <NA>
## 5231 <NA> NA <NA>
## 5232 <NA> NA <NA>
## 5233 <NA> NA <NA>
## 5234 <NA> NA <NA>
## 5235 <NA> NA <NA>
## 5236 <NA> NA <NA>
## 5237 <NA> NA <NA>
## 5238 <NA> NA <NA>
## 5239 <NA> NA <NA>
## 5240 <NA> NA <NA>
## 5241 <NA> NA <NA>
## 5242 <NA> NA <NA>
## 5243 <NA> NA <NA>
## 5244 <NA> NA <NA>
## 5245 <NA> NA <NA>
## 5246 <NA> NA <NA>
## 5247 <NA> NA <NA>
## 5248 <NA> NA <NA>
## 5249 <NA> NA <NA>
## 5250 <NA> NA <NA>
## 5251 <NA> NA <NA>
## 5252 <NA> NA <NA>
## 5253 <NA> NA <NA>
## 5254 <NA> NA <NA>
## 5255 <NA> NA <NA>
## 5256 <NA> NA <NA>
## 5257 <NA> NA <NA>
## 5258 <NA> NA <NA>
## 5259 <NA> NA <NA>
## 5260 <NA> NA <NA>
## 5261 <NA> NA <NA>
## 5262 <NA> NA <NA>
## 5263 <NA> NA <NA>
## 5264 <NA> NA <NA>
## 5265 <NA> NA <NA>
## 5266 <NA> NA <NA>
## 5267 <NA> NA <NA>
## 5268 <NA> NA <NA>
## 5269 <NA> NA <NA>
## 5270 <NA> NA <NA>
## 5271 <NA> NA <NA>
## 5272 <NA> NA <NA>
## 5273 <NA> NA <NA>
## 5274 <NA> NA <NA>
## 5275 <NA> NA <NA>
## 5276 <NA> NA <NA>
## 5277 <NA> NA <NA>
## 5278 <NA> NA <NA>
## 5279 <NA> NA <NA>
## 5280 <NA> NA <NA>
## 5281 <NA> NA <NA>
## 5282 <NA> NA <NA>
## 5283 <NA> NA <NA>
## 5284 <NA> NA <NA>
## 5285 <NA> NA <NA>
## 5286 <NA> NA <NA>
## 5287 <NA> NA <NA>
## 5288 <NA> NA <NA>
## 5289 <NA> NA <NA>
## 5290 <NA> NA <NA>
## 5291 <NA> NA <NA>
## 5292 <NA> NA <NA>
## 5293 <NA> NA <NA>
## 5294 <NA> NA <NA>
## 5295 <NA> NA <NA>
## 5296 <NA> NA <NA>
## 5297 <NA> NA <NA>
## 5298 <NA> NA <NA>
## 5299 <NA> NA <NA>
## 5300 <NA> NA <NA>
## 5301 <NA> NA <NA>
## 5302 <NA> NA <NA>
## 5303 <NA> NA <NA>
## 5304 <NA> NA <NA>
## 5305 <NA> NA <NA>
## 5306 <NA> NA <NA>
## 5307 <NA> NA <NA>
## 5308 <NA> NA <NA>
## 5309 <NA> NA <NA>
## 5310 <NA> NA <NA>
## 5311 <NA> NA <NA>
## 5312 <NA> NA <NA>
## 5313 <NA> NA <NA>
## 5314 <NA> NA <NA>
## 5315 <NA> NA <NA>
## 5316 <NA> NA <NA>
## 5317 <NA> NA <NA>
## 5318 <NA> NA <NA>
## 5319 <NA> NA <NA>
## 5320 <NA> NA <NA>
## 5321 <NA> NA <NA>
## 5322 <NA> NA <NA>
## 5323 <NA> NA <NA>
## 5324 <NA> NA <NA>
## 5325 <NA> NA <NA>
## 5326 <NA> NA <NA>
## 5327 <NA> NA <NA>
## 5328 <NA> NA <NA>
## 5329 <NA> NA <NA>
## 5330 <NA> NA <NA>
## 5331 <NA> NA <NA>
## 5332 <NA> NA <NA>
## 5333 <NA> NA <NA>
## 5334 <NA> NA <NA>
## 5335 <NA> NA <NA>
## 5336 <NA> NA <NA>
## 5337 <NA> NA <NA>
## 5338 <NA> NA <NA>
## 5339 <NA> NA <NA>
## 5340 <NA> NA <NA>
## 5341 <NA> NA <NA>
## 5342 <NA> NA <NA>
## 5343 <NA> NA <NA>
## 5344 <NA> NA <NA>
## 5345 <NA> NA <NA>
## 5346 <NA> NA <NA>
## 5347 <NA> NA <NA>
## 5348 <NA> NA <NA>
## 5349 <NA> NA <NA>
## 5350 <NA> NA <NA>
## 5351 <NA> NA <NA>
## 5352 <NA> NA <NA>
## 5353 <NA> NA <NA>
## 5354 <NA> NA <NA>
## 5355 <NA> NA <NA>
## 5356 <NA> NA <NA>
## 5357 <NA> NA <NA>
## 5358 <NA> NA <NA>
## 5359 <NA> NA <NA>
## 5360 <NA> NA <NA>
## 5361 <NA> NA <NA>
## 5362 <NA> NA <NA>
## 5363 <NA> NA <NA>
## 5364 <NA> NA <NA>
## 5365 <NA> NA <NA>
## 5366 <NA> NA <NA>
## 5367 <NA> NA <NA>
## 5368 <NA> NA <NA>
## 5369 <NA> NA <NA>
## 5370 <NA> NA <NA>
## 5371 <NA> NA <NA>
## 5372 <NA> NA <NA>
## 5373 <NA> NA <NA>
## 5374 <NA> NA <NA>
## 5375 <NA> NA <NA>
## 5376 <NA> NA <NA>
## 5377 <NA> NA <NA>
## 5378 <NA> NA <NA>
## 5379 <NA> NA <NA>
## 5380 <NA> NA <NA>
## 5381 <NA> NA <NA>
## 5382 <NA> NA <NA>
## 5383 <NA> NA <NA>
## 5384 <NA> NA <NA>
## 5385 <NA> NA <NA>
## 5386 <NA> NA <NA>
## 5387 <NA> NA <NA>
## 5388 <NA> NA <NA>
## 5389 <NA> NA <NA>
## 5390 <NA> NA <NA>
## 5391 <NA> NA <NA>
## 5392 <NA> NA <NA>
## 5393 <NA> NA <NA>
## 5394 <NA> NA <NA>
## 5395 <NA> NA <NA>
## 5396 <NA> NA <NA>
## 5397 <NA> NA <NA>
## 5398 <NA> NA <NA>
## 5399 <NA> NA <NA>
## 5400 <NA> NA <NA>
## 5401 <NA> NA <NA>
## 5402 <NA> NA <NA>
## 5403 <NA> NA <NA>
## 5404 <NA> NA <NA>
## 5405 <NA> NA <NA>
## 5406 <NA> NA <NA>
## 5407 <NA> NA <NA>
## 5408 <NA> NA <NA>
## 5409 <NA> NA <NA>
## 5410 <NA> NA <NA>
## 5411 <NA> NA <NA>
## 5412 <NA> NA <NA>
## 5413 <NA> NA <NA>
## 5414 <NA> NA <NA>
## 5415 <NA> NA <NA>
## 5416 <NA> NA <NA>
## 5417 <NA> NA <NA>
## 5418 <NA> NA <NA>
## 5419 <NA> NA <NA>
## 5420 <NA> NA <NA>
## 5421 <NA> NA <NA>
## 5422 <NA> NA <NA>
## 5423 <NA> NA <NA>
## 5424 <NA> NA <NA>
## 5425 <NA> NA <NA>
## 5426 <NA> NA <NA>
## 5427 <NA> NA <NA>
## 5428 <NA> NA <NA>
## 5429 <NA> NA <NA>
## 5430 <NA> NA <NA>
## 5431 <NA> NA <NA>
## 5432 <NA> NA <NA>
## 5433 <NA> NA <NA>
## 5434 <NA> NA <NA>
## 5435 <NA> NA <NA>
## 5436 <NA> NA <NA>
## 5437 <NA> NA <NA>
## 5438 <NA> NA <NA>
## 5439 <NA> NA <NA>
## 5440 <NA> NA <NA>
## 5441 <NA> NA <NA>
## 5442 <NA> NA <NA>
## 5443 <NA> NA <NA>
## 5444 <NA> NA <NA>
## 5445 <NA> NA <NA>
## 5446 <NA> NA <NA>
## 5447 <NA> NA <NA>
## 5448 <NA> NA <NA>
## 5449 <NA> NA <NA>
## 5450 <NA> NA <NA>
## 5451 <NA> NA <NA>
## 5452 <NA> NA <NA>
## 5453 <NA> NA <NA>
## 5454 <NA> NA <NA>
## 5455 <NA> NA <NA>
## 5456 <NA> NA <NA>
## 5457 <NA> NA <NA>
## 5458 <NA> NA <NA>
## 5459 <NA> NA <NA>
## 5460 <NA> NA <NA>
## 5461 <NA> NA <NA>
## 5462 <NA> NA <NA>
## 5463 <NA> NA <NA>
## 5464 <NA> NA <NA>
## 5465 <NA> NA <NA>
## 5466 <NA> NA <NA>
## 5467 <NA> NA <NA>
## 5468 <NA> NA <NA>
## 5469 <NA> NA <NA>
## 5470 <NA> NA <NA>
## 5471 <NA> NA <NA>
## 5472 <NA> NA <NA>
## 5473 <NA> NA <NA>
## 5474 <NA> NA <NA>
## 5475 <NA> NA <NA>
## 5476 <NA> NA <NA>
## 5477 <NA> NA <NA>
## 5478 <NA> NA <NA>
## 5479 <NA> NA <NA>
## 5480 <NA> NA <NA>
## 5481 <NA> NA <NA>
## 5482 <NA> NA <NA>
## 5483 <NA> NA <NA>
## 5484 <NA> NA <NA>
## 5485 <NA> NA <NA>
## 5486 <NA> NA <NA>
## 5487 <NA> NA <NA>
## 5488 <NA> NA <NA>
## 5489 <NA> NA <NA>
## 5490 <NA> NA <NA>
## 5491 <NA> NA <NA>
## 5492 <NA> NA <NA>
## 5493 <NA> NA <NA>
## 5494 <NA> NA <NA>
## 5495 <NA> NA <NA>
## 5496 <NA> NA <NA>
## 5497 <NA> NA <NA>
## 5498 <NA> NA <NA>
## 5499 <NA> NA <NA>
## 5500 <NA> NA <NA>
## 5501 <NA> NA <NA>
## 5502 <NA> NA <NA>
## 5503 <NA> NA <NA>
## 5504 <NA> NA <NA>
## 5505 <NA> NA <NA>
## 5506 <NA> NA <NA>
## 5507 <NA> NA <NA>
## 5508 <NA> NA <NA>
## 5509 <NA> NA <NA>
## 5510 <NA> NA <NA>
## 5511 <NA> NA <NA>
## 5512 <NA> NA <NA>
## 5513 <NA> NA <NA>
## 5514 <NA> NA <NA>
## 5515 <NA> NA <NA>
## 5516 <NA> NA <NA>
## 5517 <NA> NA <NA>
## 5518 <NA> NA <NA>
## 5519 <NA> NA <NA>
## 5520 <NA> NA <NA>
## 5521 <NA> NA <NA>
## 5522 <NA> NA <NA>
## 5523 <NA> NA <NA>
## 5524 <NA> NA <NA>
## 5525 <NA> NA <NA>
## 5526 <NA> NA <NA>
## 5527 <NA> NA <NA>
## 5528 <NA> NA <NA>
## 5529 <NA> NA <NA>
## 5530 <NA> NA <NA>
## 5531 <NA> NA <NA>
## 5532 <NA> NA <NA>
## 5533 <NA> NA <NA>
## 5534 <NA> NA <NA>
## 5535 <NA> NA <NA>
## 5536 <NA> NA <NA>
## 5537 <NA> NA <NA>
## 5538 <NA> NA <NA>
## 5539 <NA> NA <NA>
## 5540 <NA> NA <NA>
## 5541 <NA> NA <NA>
## 5542 <NA> NA <NA>
## 5543 <NA> NA <NA>
## 5544 <NA> NA <NA>
## 5545 <NA> NA <NA>
## 5546 <NA> NA <NA>
## 5547 <NA> NA <NA>
## 5548 <NA> NA <NA>
## 5549 <NA> NA <NA>
## 5550 <NA> NA <NA>
## 5551 <NA> NA <NA>
## 5552 <NA> NA <NA>
## 5553 <NA> NA <NA>
## 5554 <NA> NA <NA>
## 5555 <NA> NA <NA>
## 5556 <NA> NA <NA>
## 5557 <NA> NA <NA>
## 5558 <NA> NA <NA>
## 5559 <NA> NA <NA>
## 5560 <NA> NA <NA>
## 5561 <NA> NA <NA>
## 5562 <NA> NA <NA>
## 5563 <NA> NA <NA>
## 5564 <NA> NA <NA>
## 5565 <NA> NA <NA>
## 5566 <NA> NA <NA>
## 5567 <NA> NA <NA>
## 5568 <NA> NA <NA>
## 5569 <NA> NA <NA>
## 5570 <NA> NA <NA>
## 5571 <NA> NA <NA>
## 5572 <NA> NA <NA>
## 5573 <NA> NA <NA>
## 5574 <NA> NA <NA>
## 5575 <NA> NA <NA>
## 5576 <NA> NA <NA>
## 5577 <NA> NA <NA>
## 5578 <NA> NA <NA>
## 5579 <NA> NA <NA>
## 5580 <NA> NA <NA>
## 5581 <NA> NA <NA>
## 5582 <NA> NA <NA>
## 5583 <NA> NA <NA>
## 5584 <NA> NA <NA>
## 5585 <NA> NA <NA>
## 5586 <NA> NA <NA>
## 5587 <NA> NA <NA>
## 5588 <NA> NA <NA>
## 5589 <NA> NA <NA>
## 5590 <NA> NA <NA>
## 5591 <NA> NA <NA>
## 5592 <NA> NA <NA>
## 5593 <NA> NA <NA>
## 5594 <NA> NA <NA>
## 5595 <NA> NA <NA>
## 5596 <NA> NA <NA>
## 5597 <NA> NA <NA>
## 5598 <NA> NA <NA>
## 5599 <NA> NA <NA>
## 5600 <NA> NA <NA>
## alcwkdy alcwknd alcohol_day
## 1 0 8 0.32653061224
## 2 48 96 8.81632653061
## 3 42 0 0.91428571429
## 4 NA NA 0.00000000000
## 5 55 0 0.03265306122
## 6 26 32 24.68571428571
## 7 17 0 0.13061224490
## 8 NA NA 0.00000000000
## 9 NA NA 0.00000000000
## 10 42 121 12.00000000000
## 11 24 73 NA
## 12 0 114 NA
## 13 200 0 5.61224489796
## 14 58 50 15.71428571429
## 15 18 0 0.00653061224
## 16 18 28 3.52653061224
## 17 NA NA 0.00000000000
## 18 0 145 11.08571428571
## 19 17 0 4.85714285714
## 20 91 91 1.73469387755
## 21 73 36 NA
## 22 64 36 NA
## 23 41 65 25.82857142857
## 24 24 94 NA
## 25 NA NA 0.00000000000
## 26 73 200 NA
## 27 42 146 0.88163265306
## 28 0 0 0.17632653061
## 29 0 8 0.01088435374
## 30 17 17 0.09142857143
## 31 26 26 15.20000000000
## 32 18 109 13.02857142857
## 33 NA NA 0.00000000000
## 34 NA NA 0.00000000000
## 35 NA NA 0.00000000000
## 36 NA NA 0.00000000000
## 37 24 24 57.14285714286
## 38 NA NA 0.00000000000
## 39 17 17 0.01828571429
## 40 55 182 NA
## 41 NA NA 0.00000000000
## 42 0 18 NA
## 43 0 94 1.71428571429
## 44 28 64 22.28571428571
## 45 18 18 NA
## 46 16 0 4.65306122449
## 47 24 8 3.92857142857
## 48 24 79 5.14285714286
## 49 59 24 2.46857142857
## 50 14 18 15.14285714286
## 51 87 32 20.40816326531
## 52 NA NA 0.00000000000
## 53 16 0 8.34285714286
## 54 0 0 0.00065306122
## 55 NA NA 0.00000000000
## 56 NA NA 0.00000000000
## 57 34 24 2.24489795918
## 58 NA NA 0.00000000000
## 59 16 16 16.00000000000
## 60 277 181 NA
## 61 8 24 16.57142857143
## 62 0 17 0.01306122449
## 63 NA NA 0.00000000000
## 64 NA NA 0.00000000000
## 65 73 0 4.85714285714
## 66 18 0 1.83673469388
## 67 34 90 36.40000000000
## 68 0 118 NA
## 69 NA NA 0.00000000000
## 70 314 121 258.85714285714
## 71 18 18 0.49371428571
## 72 24 48 24.97142857143
## 73 17 17 22.40000000000
## 74 18 18 0.00261224490
## 75 32 74 44.00000000000
## 76 0 33 2.97959183673
## 77 114 0 NA
## 78 24 72 19.14285714286
## 79 24 48 30.85714285714
## 80 64 16 0.29387755102
## 81 36 55 NA
## 82 17 18 1.58367346939
## 83 48 48 17.60000000000
## 84 NA NA 0.00000000000
## 85 17 17 NA
## 86 NA NA 0.00000000000
## 87 42 74 51.14285714286
## 88 0 8 0.03047619048
## 89 24 48 NA
## 90 28 109 43.71428571429
## 91 NA NA 0.00000000000
## 92 28 14 0.69387755102
## 93 72 144 28.68571428571
## 94 14 48 1.20000000000
## 95 0 0 NA
## 96 NA NA 0.00000000000
## 97 24 128 53.71428571429
## 98 91 146 0.00000000000
## 99 24 284 0.91428571429
## 100 0 48 13.00000000000
## 101 32 48 6.80000000000
## 102 17 17 0.24000000000
## 103 NA NA 0.00000000000
## 104 NA NA 0.00000000000
## 105 18 46 10.40000000000
## 106 18 81 17.60000000000
## 107 0 18 NA
## 108 0 17 NA
## 109 17 17 NA
## 110 86 86 NA
## 111 0 8 NA
## 112 80 80 NA
## 113 18 17 NA
## 114 72 262 NA
## 115 14 85 0.11224489796
## 116 32 0 0.31428571429
## 117 8 8 8.00000000000
## 118 48 48 NA
## 119 36 88 NA
## 120 34 42 36.28571428571
## 121 NA NA 0.00000000000
## 122 0 18 NA
## 123 9 94 0.25714285714
## 124 125 16 3.68979591837
## 125 16 17 0.07053061224
## 126 91 79 9.60000000000
## 127 NA NA 0.00000000000
## 128 81 28 NA
## 129 NA NA 0.00000000000
## 130 0 24 6.28571428571
## 131 18 55 NA
## 132 NA NA 0.00000000000
## 133 18 18 6.80000000000
## 134 NA NA 0.00000000000
## 135 80 191 36.51428571429
## 136 34 17 NA
## 137 0 28 0.22171428571
## 138 0 146 2.05714285714
## 139 16 91 10.74285714286
## 140 NA NA 0.00000000000
## 141 NA NA 0.00000000000
## 142 34 25 NA
## 143 NA NA 0.00000000000
## 144 NA NA 0.00000000000
## 145 116 116 0.56122448980
## 146 NA NA 0.00000000000
## 147 32 36 15.31428571429
## 148 NA NA 0.00000000000
## 149 24 42 7.20000000000
## 150 32 80 45.71428571429
## 151 0 96 1.57142857143
## 152 NA NA 0.00000000000
## 153 56 64 4.57142857143
## 154 NA NA 0.00000000000
## 155 14 36 7.77142857143
## 156 NA NA 0.00000000000
## 157 82 66 0.09714285714
## 158 9 55 0.03469387755
## 159 0 71 0.00108843537
## 160 28 99 1.28571428571
## 161 84 140 100.00000000000
## 162 72 48 15.88571428571
## 163 32 17 19.60000000000
## 164 NA NA 0.00000000000
## 165 193 273 215.85714285714
## 166 18 36 15.61224489796
## 167 NA NA 0.00000000000
## 168 0 16 NA
## 169 24 0 10.24489795918
## 170 16 0 0.35265306122
## 171 34 65 6.05714285714
## 172 NA NA 0.00000000000
## 173 NA NA 0.00000000000
## 174 0 25 NA
## 175 24 0 NA
## 176 73 109 28.51428571429
## 177 71 128 0.51657142857
## 178 NA NA 0.00000000000
## 179 0 34 NA
## 180 16 34 1.10857142857
## 181 27 27 4.57142857143
## 182 0 16 0.82285714286
## 183 17 17 0.00000000000
## 184 17 34 0.00000000000
## 185 17 70 NA
## 186 55 164 NA
## 187 NA NA 0.00000000000
## 188 NA NA 0.00000000000
## 189 0 14 0.48571428571
## 190 NA NA 0.00000000000
## 191 28 28 NA
## 192 0 16 0.17346938776
## 193 0 34 12.45714285714
## 194 0 146 NA
## 195 36 36 6.40000000000
## 196 79 0 99.82857142857
## 197 36 71 5.02857142857
## 198 0 84 NA
## 199 41 41 41.00000000000
## 200 17 8 1.94285714286
## 201 32 202 0.32653061224
## 202 17 168 0.00435374150
## 203 8 16 NA
## 204 NA NA 0.00000000000
## 205 14 85 NA
## 206 NA NA 0.00000000000
## 207 245 0 NA
## 208 18 0 2.42857142857
## 209 24 24 20.85714285714
## 210 32 0 NA
## 211 0 72 5.14285714286
## 212 0 44 NA
## 213 60 60 2.17142857143
## 214 14 0 20.00000000000
## 215 18 18 13.48571428571
## 216 0 16 2.58285714286
## 217 8 8 1.86122448980
## 218 48 48 48.00000000000
## 219 8 91 0.01763265306
## 220 0 0 0.00000000000
## 221 48 73 NA
## 222 28 28 NA
## 223 NA NA 0.00000000000
## 224 NA NA 0.00000000000
## 225 17 24 NA
## 226 NA NA 0.00000000000
## 227 0 48 NA
## 228 NA NA 0.00000000000
## 229 84 84 84.00000000000
## 230 28 36 0.00021768707
## 231 0 198 NA
## 232 244 100 202.85714285714
## 233 0 635 NA
## 234 65 28 103.54285714286
## 235 0 17 NA
## 236 103 121 108.14285714286
## 237 0 0 8.16326530612
## 238 NA NA 0.00000000000
## 239 0 32 NA
## 240 NA NA 0.00000000000
## 241 131 133 0.00182857143
## 242 114 40 0.40000000000
## 243 NA NA 0.00000000000
## 244 55 0 7.20000000000
## 245 48 89 2.42857142857
## 246 17 0 NA
## 247 0 59 NA
## 248 48 120 12.34285714286
## 249 17 17 13.04081632653
## 250 9 34 NA
## 251 0 34 0.73469387755
## 252 0 18 NA
## 253 0 18 3.83673469388
## 254 58 83 6.80000000000
## 255 0 101 7.20000000000
## 256 NA NA 0.00000000000
## 257 0 167 17.60000000000
## 258 8 8 7.17142857143
## 259 32 18 3.77142857143
## 260 60 174 32.57142857143
## 261 NA NA 0.00000000000
## 262 NA NA 0.00000000000
## 263 65 65 0.00000000000
## 264 55 73 15.08571428571
## 265 36 70 12.34285714286
## 266 16 36 20.11428571429
## 267 0 34 3.18367346939
## 268 0 28 0.30400000000
## 269 24 17 2.57142857143
## 270 18 56 1.63265306122
## 271 90 220 0.22857142857
## 272 0 91 16.57142857143
## 273 35 35 6.91428571429
## 274 51 0 2.77551020408
## 275 36 36 1.70000000000
## 276 11 11 0.26057142857
## 277 24 48 0.73469387755
## 278 34 55 7.00000000000
## 279 24 0 2.16326530612
## 280 0 168 NA
## 281 17 32 NA
## 282 NA NA 0.00000000000
## 283 24 0 10.18367346939
## 284 NA NA 0.00000000000
## 285 0 28 NA
## 286 93 16 19.20000000000
## 287 NA NA 0.00000000000
## 288 72 56 1.19183673469
## 289 NA NA 0.00000000000
## 290 0 18 0.00000000000
## 291 NA NA 0.00000000000
## 292 17 17 NA
## 293 32 18 NA
## 294 34 34 NA
## 295 NA NA 0.00000000000
## 296 34 17 29.14285714286
## 297 35 53 6.80000000000
## 298 0 0 NA
## 299 44 36 41.71428571429
## 300 NA NA 0.00000000000
## 301 0 0 1.14285714286
## 302 0 36 1.52000000000
## 303 NA NA 0.00000000000
## 304 0 48 NA
## 305 18 163 20.45714285714
## 306 89 89 89.00000000000
## 307 48 73 0.91428571429
## 308 0 32 NA
## 309 36 109 12.34285714286
## 310 NA NA 0.00000000000
## 311 9 0 NA
## 312 48 72 20.45714285714
## 313 24 24 4.44897959184
## 314 NA NA 0.00000000000
## 315 40 0 NA
## 316 NA NA 0.00000000000
## 317 62 64 9.60000000000
## 318 0 127 NA
## 319 184 175 37.02857142857
## 320 84 94 9.48571428571
## 321 48 36 0.00000000000
## 322 17 17 NA
## 323 24 14 1.30285714286
## 324 18 14 21.48571428571
## 325 17 24 NA
## 326 17 48 2.28571428571
## 327 NA NA 0.00000000000
## 328 0 85 NA
## 329 16 40 NA
## 330 0 48 2.36734693878
## 331 0 0 0.34000000000
## 332 16 16 42.68571428571
## 333 24 48 39.31428571429
## 334 24 118 0.69387755102
## 335 556 524 5.48571428571
## 336 139 0 14.62857142857
## 337 17 17 0.18707482993
## 338 NA NA 0.00000000000
## 339 NA NA 0.00000000000
## 340 9 14 NA
## 341 NA NA 0.00000000000
## 342 0 18 NA
## 343 9 18 6.80000000000
## 344 34 34 NA
## 345 48 80 NA
## 346 0 0 NA
## 347 NA NA 0.00000000000
## 348 18 36 0.10285714286
## 349 17 17 0.03428571429
## 350 NA NA 0.00000000000
## 351 97 24 NA
## 352 NA NA 0.00000000000
## 353 624 624 624.00000000000
## 354 0 48 NA
## 355 17 32 10.40000000000
## 356 258 209 14.40000000000
## 357 98 63 NA
## 358 NA NA 0.00000000000
## 359 0 17 0.44571428571
## 360 NA NA 0.00000000000
## 361 0 84 NA
## 362 NA NA 0.00000000000
## 363 NA NA 0.00000000000
## 364 42 50 2.05714285714
## 365 0 40 5.71428571429
## 366 34 34 1.94285714286
## 367 32 32 NA
## 368 146 0 6.80000000000
## 369 NA NA 0.00000000000
## 370 0 115 NA
## 371 17 48 34.40000000000
## 372 0 64 0.09306122449
## 373 16 41 0.91428571429
## 374 0 17 0.69387755102
## 375 NA NA 0.00000000000
## 376 NA NA 0.00000000000
## 377 91 91 32.00000000000
## 378 42 42 42.00000000000
## 379 24 48 7.08571428571
## 380 NA NA 0.00000000000
## 381 NA NA 0.00000000000
## 382 17 55 50.51428571429
## 383 NA NA 0.00000000000
## 384 NA NA 0.00000000000
## 385 8 8 NA
## 386 0 17 0.07857142857
## 387 0 18 1.70000000000
## 388 73 182 13.71428571429
## 389 34 34 9.14285714286
## 390 NA NA 0.00000000000
## 391 14 48 3.20000000000
## 392 17 17 0.10285714286
## 393 28 75 1.83673469388
## 394 16 114 9.12857142857
## 395 24 24 19.20000000000
## 396 18 127 20.34285714286
## 397 NA NA 0.00000000000
## 398 42 66 NA
## 399 37 91 14.51428571429
## 400 17 17 0.51428571429
## 401 18 18 5.20000000000
## 402 38 350 NA
## 403 8 8 8.00000000000
## 404 108 127 2.05714285714
## 405 9 18 4.81632653061
## 406 34 49 13.31428571429
## 407 28 0 37.54285714286
## 408 NA NA 0.00000000000
## 409 0 96 NA
## 410 34 28 0.52380952381
## 411 8 8 0.42857142857
## 412 0 146 36.97959183673
## 413 0 28 0.11755102041
## 414 18 24 0.17142857143
## 415 144 141 2.57142857143
## 416 0 104 3.56734693878
## 417 80 118 6.51428571429
## 418 0 48 0.04937142857
## 419 NA NA 0.00000000000
## 420 48 24 41.14285714286
## 421 NA NA 35.02857142857
## 422 115 784 NA
## 423 0 16 0.30285714286
## 424 0 34 NA
## 425 82 68 26.34285714286
## 426 120 72 NA
## 427 91 133 103.00000000000
## 428 17 0 0.40816326531
## 429 17 17 NA
## 430 72 48 2.74285714286
## 431 17 17 0.16685714286
## 432 17 17 0.00000000000
## 433 0 0 NA
## 434 NA NA 0.00000000000
## 435 50 69 55.42857142857
## 436 34 84 3.20000000000
## 437 NA NA 0.00000000000
## 438 36 66 11.42857142857
## 439 0 41 NA
## 440 17 72 2.57142857143
## 441 0 17 0.04489795918
## 442 NA NA 0.00000000000
## 443 0 16 6.28571428571
## 444 0 203 NA
## 445 18 24 19.71428571429
## 446 40 0 1.34693877551
## 447 17 72 NA
## 448 53 117 7.20000000000
## 449 242 37 NA
## 450 34 25 44.68571428571
## 451 96 98 11.63265306122
## 452 NA NA 0.00000000000
## 453 14 14 0.36952380952
## 454 0 152 2.22857142857
## 455 NA NA 0.00000000000
## 456 NA NA 0.00000000000
## 457 33 33 0.16190476190
## 458 NA 0 0.32000000000
## 459 36 163 11.65714285714
## 460 14 109 0.05782312925
## 461 50 48 NA
## 462 8 8 3.20000000000
## 463 178 0 2.73469387755
## 464 24 48 30.85714285714
## 465 64 64 NA
## 466 0 73 16.68571428571
## 467 36 36 4.40816326531
## 468 0 36 7.18367346939
## 469 28 28 28.00000000000
## 470 80 96 84.57142857143
## 471 24 48 14.97142857143
## 472 24 48 30.85714285714
## 473 42 21 5.91836734694
## 474 32 0 NA
## 475 9 18 0.33142857143
## 476 50 55 NA
## 477 17 0 0.00026122449
## 478 24 48 12.57142857143
## 479 42 28 NA
## 480 36 60 0.46530612245
## 481 0 353 NA
## 482 NA NA 0.00000000000
## 483 192 320 2.46938775510
## 484 110 124 NA
## 485 NA NA 0.00000000000
## 486 17 17 17.00000000000
## 487 0 8 NA
## 488 17 17 2.51428571429
## 489 16 0 NA
## 490 17 17 0.09714285714
## 491 48 32 46.40000000000
## 492 14 41 2.42857142857
## 493 72 96 NA
## 494 18 18 NA
## 495 0 84 0.03673469388
## 496 NA NA 0.00000000000
## 497 17 34 1.94285714286
## 498 49 72 NA
## 499 14 80 0.51428571429
## 500 73 55 67.85714285714
## 501 17 34 7.30612244898
## 502 190 86 160.28571428571
## 503 72 127 13.25714285714
## 504 NA NA 0.00000000000
## 505 NA NA 0.00000000000
## 506 16 16 NA
## 507 14 109 11.65714285714
## 508 28 85 18.28571428571
## 509 0 34 4.90000000000
## 510 NA NA 0.00000000000
## 511 14 14 1.51428571429
## 512 17 0 10.97142857143
## 513 NA NA 0.00000000000
## 514 NA NA 0.00000000000
## 515 24 36 NA
## 516 14 14 0.72800000000
## 517 NA NA 0.00000000000
## 518 0 120 0.32653061224
## 519 42 0 2.04081632653
## 520 64 64 NA
## 521 139 0 23.31428571429
## 522 NA NA 0.00000000000
## 523 26 88 NA
## 524 86 158 8.11428571429
## 525 8 18 NA
## 526 24 66 NA
## 527 38 136 30.97142857143
## 528 55 121 NA
## 529 0 63 6.24489795918
## 530 17 17 0.83428571429
## 531 17 17 NA
## 532 18 0 8.85714285714
## 533 8 72 8.11428571429
## 534 0 22 0.00000000000
## 535 NA NA 0.00000000000
## 536 17 0 NA
## 537 91 91 0.86095238095
## 538 0 14 5.17714285714
## 539 0 34 NA
## 540 273 309 283.28571428571
## 541 14 0 19.31428571429
## 542 18 36 23.14285714286
## 543 0 14 0.36000000000
## 544 0 0 0.49942857143
## 545 28 42 40.00000000000
## 546 0 56 26.05714285714
## 547 53 72 NA
## 548 NA NA 0.00000000000
## 549 34 34 NA
## 550 0 25 0.44800000000
## 551 24 50 11.08571428571
## 552 24 72 NA
## 553 36 168 86.34285714286
## 554 32 28 NA
## 555 0 24 3.42857142857
## 556 48 48 48.00000000000
## 557 17 17 0.36000000000
## 558 135 135 135.00000000000
## 559 0 72 0.22448979592
## 560 0 48 NA
## 561 71 115 9.25714285714
## 562 17 72 NA
## 563 24 0 NA
## 564 0 90 4.09795918367
## 565 17 48 3.38775510204
## 566 NA NA 0.00000000000
## 567 8 14 1.82857142857
## 568 55 99 1.60000000000
## 569 0 58 NA
## 570 28 85 0.00000000000
## 571 65 65 NA
## 572 0 205 NA
## 573 NA NA 0.00000000000
## 574 48 48 6.85714285714
## 575 17 17 0.88000000000
## 576 8 17 0.02938775510
## 577 NA NA 0.00000000000
## 578 63 58 4.57142857143
## 579 28 161 7.67346938776
## 580 73 73 1.65714285714
## 581 161 0 0.00000000000
## 582 0 173 0.13061224490
## 583 120 0 0.05959183673
## 584 27 27 1.95918367347
## 585 NA NA 0.00000000000
## 586 32 64 17.14285714286
## 587 17 17 0.97142857143
## 588 NA NA 0.00000000000
## 589 18 36 2.42857142857
## 590 NA NA 0.00000000000
## 591 34 72 NA
## 592 0 42 NA
## 593 NA NA 0.00000000000
## 594 36 36 NA
## 595 9 17 NA
## 596 0 36 NA
## 597 0 0 0.38285714286
## 598 14 143 2.85714285714
## 599 24 96 1.48571428571
## 600 24 143 6.85714285714
## 601 17 17 17.00000000000
## 602 NA NA 0.00000000000
## 603 NA NA 0.00000000000
## 604 55 55 55.00000000000
## 605 NA NA 0.00000000000
## 606 NA NA 0.00000000000
## 607 24 24 0.61714285714
## 608 34 34 2.51428571429
## 609 24 67 33.31428571429
## 610 0 0 0.00000000000
## 611 55 37 34.91428571429
## 612 18 24 0.00587755102
## 613 NA NA 0.00000000000
## 614 0 17 0.07619047619
## 615 0 91 0.00304761905
## 616 17 17 0.48571428571
## 617 0 146 0.73469387755
## 618 34 16 NA
## 619 NA NA 0.00000000000
## 620 NA NA 0.00000000000
## 621 0 32 NA
## 622 NA NA 0.00000000000
## 623 24 60 NA
## 624 0 32 0.03167346939
## 625 NA NA 0.00000000000
## 626 NA NA 0.00000000000
## 627 8 17 0.35200000000
## 628 28 48 0.50666666667
## 629 0 109 NA
## 630 0 14 0.69387755102
## 631 NA NA 0.00000000000
## 632 24 17 NA
## 633 0 17 0.34000000000
## 634 0 71 0.48571428571
## 635 56 125 2.42857142857
## 636 162 0 NA
## 637 17 0 NA
## 638 0 0 1.02285714286
## 639 111 111 0.32653061224
## 640 18 18 0.00060952381
## 641 32 56 38.85714285714
## 642 91 431 3.88571428571
## 643 48 108 8.45714285714
## 644 0 17 NA
## 645 120 72 10.80000000000
## 646 84 145 11.42857142857
## 647 0 24 0.18367346939
## 648 18 0 0.87428571429
## 649 18 18 2.53061224490
## 650 0 273 0.43428571429
## 651 0 73 3.64000000000
## 652 11 11 NA
## 653 32 32 32.00000000000
## 654 NA NA 0.00000000000
## 655 NA NA 0.00000000000
## 656 17 0 3.37142857143
## 657 121 48 NA
## 658 14 37 NA
## 659 157 277 1.82857142857
## 660 17 72 6.80000000000
## 661 24 72 25.88571428571
## 662 18 36 4.89795918367
## 663 36 91 51.71428571429
## 664 0 48 3.26530612245
## 665 0 18 1.80000000000
## 666 NA NA 0.00000000000
## 667 24 98 1.14285714286
## 668 72 72 8.74285714286
## 669 0 24 NA
## 670 38 76 12.85714285714
## 671 53 144 34.45714285714
## 672 8 0 NA
## 673 91 254 NA
## 674 49 20 5.18367346939
## 675 166 149 NA
## 676 0 113 1.60000000000
## 677 8 40 NA
## 678 NA NA 0.00000000000
## 679 65 157 0.73469387755
## 680 NA NA 0.00000000000
## 681 0 169 4.75510204082
## 682 17 17 13.40816326531
## 683 0 48 NA
## 684 0 32 2.32653061224
## 685 0 36 1.37142857143
## 686 162 362 219.14285714286
## 687 NA NA 0.00000000000
## 688 NA NA 0.00000000000
## 689 240 72 192.00000000000
## 690 64 136 NA
## 691 NA NA 0.00000000000
## 692 42 58 11.20000000000
## 693 29 0 NA
## 694 17 24 1.82857142857
## 695 NA NA 0.00000000000
## 696 55 109 70.42857142857
## 697 0 140 0.01387755102
## 698 0 0 NA
## 699 NA NA 0.00000000000
## 700 0 91 NA
## 701 0 16 NA
## 702 24 65 2.49714285714
## 703 0 0 0.97959183673
## 704 0 0 0.57371428571
## 705 112 112 2.24000000000
## 706 NA NA 0.00000000000
## 707 24 48 3.88571428571
## 708 NA NA 0.00000000000
## 709 NA NA 0.00000000000
## 710 0 14 0.02400000000
## 711 36 48 16.68571428571
## 712 NA NA 0.00000000000
## 713 24 36 14.40000000000
## 714 17 70 4.08163265306
## 715 NA NA 0.00000000000
## 716 55 127 22.57142857143
## 717 NA NA 0.00000000000
## 718 NA NA 0.00000000000
## 719 25 25 25.00000000000
## 720 121 193 141.57142857143
## 721 18 63 0.00000000000
## 722 0 105 1.80000000000
## 723 NA NA 0.00000000000
## 724 NA NA NA
## 725 NA NA 0.00000000000
## 726 48 98 18.40000000000
## 727 0 134 NA
## 728 NA NA 0.00000000000
## 729 0 72 NA
## 730 14 36 0.97142857143
## 731 0 56 1.07428571429
## 732 0 24 NA
## 733 NA NA 0.00000000000
## 734 36 55 4.40000000000
## 735 NA NA 0.00000000000
## 736 104 72 NA
## 737 24 52 9.60000000000
## 738 34 32 16.40000000000
## 739 31 31 31.00000000000
## 740 70 70 5.21632653061
## 741 24 48 30.85714285714
## 742 17 24 5.77142857143
## 743 179 291 32.22857142857
## 744 8 8 0.00000000000
## 745 17 160 NA
## 746 0 18 0.01828571429
## 747 NA NA 0.00000000000
## 748 NA NA 0.00000000000
## 749 29 29 0.26000000000
## 750 24 24 0.13600000000
## 751 0 120 0.29795918367
## 752 72 0 NA
## 753 NA NA 0.00000000000
## 754 208 208 24.05714285714
## 755 18 0 0.34000000000
## 756 0 36 1.14285714286
## 757 17 25 4.11428571429
## 758 NA NA 0.00000000000
## 759 24 42 NA
## 760 0 42 NA
## 761 0 72 NA
## 762 NA NA 0.00000000000
## 763 28 24 NA
## 764 NA NA 0.00000000000
## 765 NA NA 0.00000000000
## 766 24 48 13.71428571429
## 767 100 16 76.00000000000
## 768 16 16 1.91428571429
## 769 0 88 0.20800000000
## 770 24 72 NA
## 771 0 24 0.29387755102
## 772 NA NA 0.00000000000
## 773 NA NA 0.00000000000
## 774 14 32 0.35200000000
## 775 18 101 70.00000000000
## 776 17 17 0.10285714286
## 777 17 0 1.53469387755
## 778 18 77 5.14285714286
## 779 55 73 9.60000000000
## 780 160 0 NA
## 781 NA NA 0.00000000000
## 782 NA NA 0.00000000000
## 783 28 14 9.14285714286
## 784 36 109 NA
## 785 48 89 8.22857142857
## 786 NA NA 0.00000000000
## 787 34 312 NA
## 788 55 73 5.02857142857
## 789 0 35 NA
## 790 49 56 24.00000000000
## 791 14 32 4.00000000000
## 792 34 50 7.20000000000
## 793 9 NA NA
## 794 0 0 0.04571428571
## 795 0 48 4.48979591837
## 796 8 8 1.82857142857
## 797 178 253 3.20000000000
## 798 NA NA 0.00000000000
## 799 18 28 3.08571428571
## 800 25 17 19.20000000000
## 801 72 72 72.00000000000
## 802 NA NA 0.00000000000
## 803 NA NA 0.00000000000
## 804 NA NA 0.00000000000
## 805 0 221 1.90476190476
## 806 NA NA 0.00000000000
## 807 92 92 92.00000000000
## 808 0 0 NA
## 809 24 66 NA
## 810 56 0 12.68571428571
## 811 NA NA 0.00000000000
## 812 17 0 NA
## 813 48 17 5.02857142857
## 814 0 120 4.14285714286
## 815 36 36 0.00000000000
## 816 162 162 22.05714285714
## 817 NA NA 0.00000000000
## 818 24 24 24.00000000000
## 819 34 34 11.20000000000
## 820 48 80 0.15836734694
## 821 24 24 NA
## 822 NA NA 0.00000000000
## 823 56 90 NA
## 824 56 113 NA
## 825 0 18 16.57142857143
## 826 0 24 NA
## 827 17 17 0.68571428571
## 828 18 0 NA
## 829 0 17 NA
## 830 130 74 7.60000000000
## 831 156 48 NA
## 832 109 162 2.18775510204
## 833 NA NA 0.00000000000
## 834 66 72 5.48571428571
## 835 50 104 NA
## 836 17 18 1.02857142857
## 837 16 16 0.45714285714
## 838 408 387 NA
## 839 73 36 0.56666666667
## 840 14 14 1.76000000000
## 841 0 90 NA
## 842 24 56 6.53061224490
## 843 48 48 48.00000000000
## 844 NA NA 0.00000000000
## 845 25 50 33.60000000000
## 846 0 72 3.91836734694
## 847 NA NA 0.00000000000
## 848 18 18 NA
## 849 NA NA 0.00000000000
## 850 NA NA 0.00000000000
## 851 24 24 1.70000000000
## 852 NA NA 0.00000000000
## 853 0 14 0.65306122449
## 854 14 14 12.11428571429
## 855 73 177 NA
## 856 49 35 22.62857142857
## 857 24 36 81.14285714286
## 858 0 0 0.16000000000
## 859 17 36 NA
## 860 NA NA 0.00000000000
## 861 NA NA 0.00000000000
## 862 16 16 16.00000000000
## 863 0 17 NA
## 864 NA NA 0.00000000000
## 865 47 91 1.11020408163
## 866 171 72 72.57142857143
## 867 4 112 NA
## 868 28 55 21.77142857143
## 869 113 169 1.94285714286
## 870 36 36 NA
## 871 0 264 11.06122448980
## 872 17 17 5.11428571429
## 873 NA NA 0.00000000000
## 874 14 14 3.16326530612
## 875 0 32 2.89795918367
## 876 25 25 43.25714285714
## 877 111 230 0.22857142857
## 878 0 42 NA
## 879 14 48 0.00000000000
## 880 24 16 6.89795918367
## 881 91 146 NA
## 882 55 42 3.65714285714
## 883 NA NA 0.00000000000
## 884 0 68 NA
## 885 0 16 14.28571428571
## 886 NA NA 0.00000000000
## 887 0 72 0.72571428571
## 888 0 50 2.26938775510
## 889 NA NA 0.00000000000
## 890 0 18 NA
## 891 0 17 NA
## 892 34 34 NA
## 893 NA NA 0.00000000000
## 894 NA NA 0.00000000000
## 895 9 9 0.66571428571
## 896 NA NA 0.00000000000
## 897 NA NA 0.00000000000
## 898 24 152 2.80000000000
## 899 NA NA 0.00000000000
## 900 36 24 0.07379591837
## 901 17 17 0.17142857143
## 902 25 8 NA
## 903 48 42 52.62857142857
## 904 55 78 37.14285714286
## 905 42 18 NA
## 906 28 72 15.71428571429
## 907 91 56 23.88571428571
## 908 100 269 4.37142857143
## 909 0 0 0.05714285714
## 910 17 17 NA
## 911 0 72 0.74285714286
## 912 NA NA 0.00000000000
## 913 8 0 0.32571428571
## 914 0 109 0.19200000000
## 915 0 17 NA
## 916 0 72 4.85714285714
## 917 24 48 30.85714285714
## 918 56 56 6.74285714286
## 919 54 42 27.42857142857
## 920 33 42 0.15510204082
## 921 0 80 NA
## 922 0 96 NA
## 923 17 17 6.80000000000
## 924 NA NA 0.00000000000
## 925 17 0 30.83673469388
## 926 0 0 NA
## 927 0 69 3.30612244898
## 928 72 144 NA
## 929 24 24 NA
## 930 0 18 0.65306122449
## 931 NA NA 0.00000000000
## 932 NA NA 0.00000000000
## 933 24 24 6.45714285714
## 934 34 34 34.00000000000
## 935 40 159 2.44897959184
## 936 55 91 65.28571428571
## 937 0 0 1.63265306122
## 938 0 0 0.12571428571
## 939 0 48 3.88571428571
## 940 48 32 2.05714285714
## 941 25 42 29.85714285714
## 942 17 72 2.05714285714
## 943 NA NA 0.00000000000
## 944 55 55 0.86530612245
## 945 162 73 136.57142857143
## 946 NA NA 0.00000000000
## 947 NA NA 0.00000000000
## 948 11 55 26.05714285714
## 949 0 109 NA
## 950 0 24 0.06938775510
## 951 0 17 0.57142857143
## 952 0 593 NA
## 953 0 0 2.86857142857
## 954 24 24 11.54285714286
## 955 55 109 1.02040816327
## 956 0 42 NA
## 957 24 24 24.00000000000
## 958 NA NA 0.00000000000
## 959 NA NA 0.00000000000
## 960 48 86 19.08571428571
## 961 24 72 3.20000000000
## 962 33 64 41.85714285714
## 963 24 24 11.20000000000
## 964 24 70 2.44897959184
## 965 0 40 4.07346938776
## 966 73 0 52.14285714286
## 967 42 85 37.02857142857
## 968 59 155 12.46938775510
## 969 34 17 NA
## 970 94 131 NA
## 971 56 85 64.28571428571
## 972 0 44 NA
## 973 17 56 NA
## 974 0 17 0.13600000000
## 975 79 79 NA
## 976 127 71 26.00000000000
## 977 NA NA 0.00000000000
## 978 56 36 24.05714285714
## 979 NA NA 0.00000000000
## 980 0 42 0.13095238095
## 981 13 48 23.00000000000
## 982 42 71 50.28571428571
## 983 NA NA 0.00000000000
## 984 48 80 18.28571428571
## 985 41 0 8.68571428571
## 986 NA NA 0.00000000000
## 987 14 28 3.02040816327
## 988 NA NA 0.00000000000
## 989 NA NA 0.00000000000
## 990 18 18 3.88571428571
## 991 34 72 3.20000000000
## 992 0 17 0.65306122449
## 993 0 72 0.17142857143
## 994 NA NA 0.00000000000
## 995 0 8 NA
## 996 48 48 0.73028571429
## 997 24 36 27.42857142857
## 998 0 17 NA
## 999 NA NA 0.00000000000
## 1000 NA NA 0.00000000000
## 1001 14 14 0.65306122449
## 1002 NA NA 0.00000000000
## 1003 NA NA 0.00000000000
## 1004 NA NA 0.00000000000
## 1005 271 302 2.42857142857
## 1006 240 128 208.00000000000
## 1007 NA NA 0.00000000000
## 1008 243 280 0.00000000000
## 1009 38 76 8.80000000000
## 1010 NA NA 0.00000000000
## 1011 90 149 11.54285714286
## 1012 73 91 50.85714285714
## 1013 162 72 10.40000000000
## 1014 24 8 4.59183673469
## 1015 0 55 NA
## 1016 0 49 14.00000000000
## 1017 32 48 14.57142857143
## 1018 17 17 14.40000000000
## 1019 0 32 0.16000000000
## 1020 NA NA 0.00000000000
## 1021 28 28 28.00000000000
## 1022 24 24 2.37142857143
## 1023 17 17 0.04114285714
## 1024 24 48 4.40000000000
## 1025 0 14 0.21485714286
## 1026 48 48 48.00000000000
## 1027 17 17 NA
## 1028 NA NA 0.00000000000
## 1029 0 146 0.00000000000
## 1030 0 24 NA
## 1031 17 17 NA
## 1032 0 56 NA
## 1033 115 55 12.34285714286
## 1034 17 17 16.00000000000
## 1035 0 55 0.08228571429
## 1036 0 34 0.50476190476
## 1037 109 0 NA
## 1038 26 63 6.85714285714
## 1039 17 74 19.20000000000
## 1040 85 76 8.51428571429
## 1041 113 113 0.68027210884
## 1042 273 146 NA
## 1043 42 66 0.57142857143
## 1044 71 34 6.85714285714
## 1045 24 162 NA
## 1046 NA NA 0.00000000000
## 1047 18 79 NA
## 1048 632 120 NA
## 1049 0 146 0.65306122449
## 1050 16 55 NA
## 1051 24 72 1.77959183673
## 1052 14 56 3.20000000000
## 1053 NA NA 0.00000000000
## 1054 42 58 46.57142857143
## 1055 62 225 28.40000000000
## 1056 121 271 NA
## 1057 17 48 5.37142857143
## 1058 NA NA 0.00000000000
## 1059 36 73 26.97142857143
## 1060 0 17 NA
## 1061 NA NA 0.00000000000
## 1062 24 24 NA
## 1063 17 34 NA
## 1064 0 50 0.01122448980
## 1065 0 0 NA
## 1066 0 111 NA
## 1067 24 144 NA
## 1068 36 36 0.91428571429
## 1069 0 144 2.05714285714
## 1070 0 55 14.26122448980
## 1071 0 73 0.71836734694
## 1072 18 119 NA
## 1073 NA NA 0.00000000000
## 1074 NA NA 0.00000000000
## 1075 49 32 0.00000000000
## 1076 91 178 3.42857142857
## 1077 0 17 0.30628571429
## 1078 0 17 5.85714285714
## 1079 17 17 6.80000000000
## 1080 0 106 0.27755102041
## 1081 17 288 11.20000000000
## 1082 17 48 0.09142857143
## 1083 17 17 13.60000000000
## 1084 66 50 11.51020408163
## 1085 8 96 1.30000000000
## 1086 0 17 NA
## 1087 NA NA 0.00000000000
## 1088 161 103 NA
## 1089 8 55 11.65714285714
## 1090 NA NA 0.00000000000
## 1091 0 176 0.27809523810
## 1092 18 18 16.05714285714
## 1093 16 0 0.68000000000
## 1094 NA NA 0.00000000000
## 1095 NA NA 0.00000000000
## 1096 24 72 8.59183673469
## 1097 17 17 0.00000000000
## 1098 0 0 0.14400000000
## 1099 17 17 16.68571428571
## 1100 17 75 NA
## 1101 36 109 56.85714285714
## 1102 34 34 0.00000000000
## 1103 NA NA 0.00000000000
## 1104 NA NA 0.00000000000
## 1105 NA NA 0.00000000000
## 1106 48 72 4.11428571429
## 1107 36 111 NA
## 1108 0 132 NA
## 1109 0 48 1.70000000000
## 1110 65 55 5.48571428571
## 1111 97 97 23.77142857143
## 1112 NA NA 0.00000000000
## 1113 NA NA 0.00000000000
## 1114 119 115 35.60000000000
## 1115 NA NA 0.00000000000
## 1116 64 32 0.91428571429
## 1117 0 216 22.05714285714
## 1118 NA NA 0.00000000000
## 1119 128 0 91.42857142857
## 1120 28 42 32.00000000000
## 1121 18 249 NA
## 1122 282 28 0.00000000000
## 1123 0 96 0.03142857143
## 1124 7 0 NA
## 1125 NA NA 0.00000000000
## 1126 17 90 3.65714285714
## 1127 8 40 22.74285714286
## 1128 106 106 106.00000000000
## 1129 0 140 NA
## 1130 55 55 2.57142857143
## 1131 NA NA 0.00000000000
## 1132 0 24 0.09142857143
## 1133 225 225 NA
## 1134 100 96 21.94285714286
## 1135 NA NA 0.00000000000
## 1136 79 248 9.60000000000
## 1137 0 0 NA
## 1138 NA NA 0.00000000000
## 1139 NA NA 0.00000000000
## 1140 0 42 NA
## 1141 NA NA 0.00000000000
## 1142 NA NA 0.00000000000
## 1143 82 80 81.42857142857
## 1144 28 28 28.00000000000
## 1145 0 122 NA
## 1146 55 55 NA
## 1147 NA NA 0.00000000000
## 1148 42 42 11.42857142857
## 1149 8 34 0.15542857143
## 1150 NA NA 0.00000000000
## 1151 17 0 NA
## 1152 26 61 NA
## 1153 NA NA 0.00000000000
## 1154 0 56 1.54857142857
## 1155 NA NA 0.00000000000
## 1156 0 253 1.04000000000
## 1157 42 108 NA
## 1158 0 42 1.76000000000
## 1159 0 0 25.02857142857
## 1160 14 36 14.51428571429
## 1161 43 77 72.57142857143
## 1162 0 14 25.00000000000
## 1163 80 8 1.83673469388
## 1164 16 24 NA
## 1165 24 8 2.97959183673
## 1166 0 24 3.26530612245
## 1167 24 72 37.71428571429
## 1168 36 37 34.74285714286
## 1169 NA NA 0.00000000000
## 1170 NA NA 0.00000000000
## 1171 24 48 0.44285714286
## 1172 34 34 34.00000000000
## 1173 0 72 0.51428571429
## 1174 0 0 0.00002176871
## 1175 17 18 0.02571428571
## 1176 0 0 0.73469387755
## 1177 28 100 17.82857142857
## 1178 0 48 1.79591836735
## 1179 0 0 0.48571428571
## 1180 48 72 54.85714285714
## 1181 0 36 NA
## 1182 36 55 6.80000000000
## 1183 55 58 55.85714285714
## 1184 16 76 33.14285714286
## 1185 NA NA 0.00000000000
## 1186 209 36 8.45714285714
## 1187 0 48 8.57142857143
## 1188 24 24 0.07482993197
## 1189 210 141 6.74285714286
## 1190 0 0 2.00000000000
## 1191 0 34 2.85714285714
## 1192 18 18 NA
## 1193 88 72 1.70000000000
## 1194 8 24 0.53333333333
## 1195 NA NA 0.00000000000
## 1196 0 17 NA
## 1197 17 121 7.60000000000
## 1198 NA NA 0.00000000000
## 1199 52 52 10.34285714286
## 1200 24 58 NA
## 1201 24 34 1.92653061224
## 1202 0 91 0.65306122449
## 1203 NA NA 0.00000000000
## 1204 25 25 9.71428571429
## 1205 0 14 0.31771428571
## 1206 NA NA 0.00000000000
## 1207 17 8 0.39200000000
## 1208 65 65 0.22857142857
## 1209 106 166 9.14285714286
## 1210 NA NA 0.00000000000
## 1211 NA NA 0.00000000000
## 1212 48 48 1.14285714286
## 1213 0 52 NA
## 1214 36 73 5.48571428571
## 1215 80 115 6.85714285714
## 1216 17 0 NA
## 1217 NA NA 0.00000000000
## 1218 24 36 27.42857142857
## 1219 73 24 0.00000000000
## 1220 NA NA 0.00000000000
## 1221 65 108 6.40000000000
## 1222 114 65 12.34285714286
## 1223 0 200 8.00000000000
## 1224 18 73 33.71428571429
## 1225 NA NA 0.00000000000
## 1226 0 8 4.31714285714
## 1227 36 0 0.31224489796
## 1228 0 0 4.53061224490
## 1229 NA NA 0.00000000000
## 1230 NA NA 0.00000000000
## 1231 72 112 0.00000000000
## 1232 NA NA 0.00000000000
## 1233 0 14 NA
## 1234 0 129 4.00000000000
## 1235 0 8 NA
## 1236 17 17 20.34285714286
## 1237 NA NA 0.00000000000
## 1238 NA NA 0.00000000000
## 1239 73 73 0.55238095238
## 1240 NA NA 0.00000000000
## 1241 16 106 218.74285714286
## 1242 172 24 39.71428571429
## 1243 14 14 NA
## 1244 17 34 NA
## 1245 17 118 0.09142857143
## 1246 0 24 3.42857142857
## 1247 17 17 NA
## 1248 14 16 2.28571428571
## 1249 102 101 NA
## 1250 0 48 0.20489795918
## 1251 7 34 6.80000000000
## 1252 NA NA 0.00000000000
## 1253 17 64 0.00705306122
## 1254 24 94 2.71428571429
## 1255 NA NA 0.00000000000
## 1256 0 17 0.12114285714
## 1257 142 142 NA
## 1258 41 50 NA
## 1259 NA NA 0.00000000000
## 1260 NA NA 0.00000000000
## 1261 NA NA 0.00000000000
## 1262 35 35 0.80000000000
## 1263 NA NA 0.00000000000
## 1264 72 164 98.28571428571
## 1265 14 14 4.17142857143
## 1266 42 42 NA
## 1267 NA NA 0.00000000000
## 1268 36 36 NA
## 1269 24 28 1.95918367347
## 1270 NA NA 0.00000000000
## 1271 17 8 NA
## 1272 0 40 12.00000000000
## 1273 48 112 66.28571428571
## 1274 NA NA 0.00000000000
## 1275 0 57 0.00043537415
## 1276 8 9 NA
## 1277 41 85 NA
## 1278 36 36 2.05714285714
## 1279 17 17 NA
## 1280 24 72 4.32653061224
## 1281 0 144 NA
## 1282 17 24 4.62857142857
## 1283 67 32 NA
## 1284 NA NA 0.00000000000
## 1285 0 103 13.60000000000
## 1286 186 114 0.16190476190
## 1287 25 56 22.85714285714
## 1288 17 11 NA
## 1289 338 205 8.08163265306
## 1290 28 42 32.00000000000
## 1291 32 32 32.00000000000
## 1292 32 32 3.62857142857
## 1293 72 67 0.00000000000
## 1294 96 64 NA
## 1295 24 24 28.97959183673
## 1296 8 0 0.34285714286
## 1297 42 65 25.91836734694
## 1298 0 82 NA
## 1299 NA NA 0.00000000000
## 1300 0 253 14.79183673469
## 1301 288 0 NA
## 1302 NA NA 0.00000000000
## 1303 24 24 9.25714285714
## 1304 48 0 0.69387755102
## 1305 48 84 6.80000000000
## 1306 73 144 NA
## 1307 0 17 NA
## 1308 0 0 0.57028571429
## 1309 104 97 15.44897959184
## 1310 81 32 0.00000000000
## 1311 NA NA 0.00000000000
## 1312 17 17 NA
## 1313 0 14 1.30612244898
## 1314 32 32 32.00000000000
## 1315 NA NA 0.00000000000
## 1316 25 17 1.74571428571
## 1317 0 0 NA
## 1318 0 0 NA
## 1319 8 17 10.57142857143
## 1320 0 109 18.79591836735
## 1321 160 116 30.45714285714
## 1322 55 91 NA
## 1323 101 0 249.60000000000
## 1324 24 24 24.00000000000
## 1325 NA NA 0.00000000000
## 1326 41 24 5.48571428571
## 1327 0 120 13.26530612245
## 1328 55 91 8.51428571429
## 1329 24 50 3.32857142857
## 1330 0 14 NA
## 1331 0 120 1.02857142857
## 1332 34 32 8.53061224490
## 1333 0 0 NA
## 1334 42 42 42.00000000000
## 1335 0 95 97.60000000000
## 1336 56 0 0.02217142857
## 1337 34 17 1.73469387755
## 1338 8 0 0.09142857143
## 1339 32 18 0.36897959184
## 1340 36 36 0.06122448980
## 1341 18 18 0.01645714286
## 1342 152 164 155.42857142857
## 1343 NA NA 0.00000000000
## 1344 17 9 1.62857142857
## 1345 NA NA 0.00000000000
## 1346 NA NA 0.00000000000
## 1347 NA NA 0.00000000000
## 1348 14 24 16.85714285714
## 1349 55 151 1.21333333333
## 1350 0 75 0.96000000000
## 1351 36 36 2.40816326531
## 1352 17 34 35.20000000000
## 1353 0 0 0.00000000000
## 1354 0 87 NA
## 1355 0 1948 1.76326530612
## 1356 40 0 28.57142857143
## 1357 17 32 1.94285714286
## 1358 48 82 0.00000000000
## 1359 0 146 NA
## 1360 NA NA 0.00000000000
## 1361 65 176 96.71428571429
## 1362 56 0 NA
## 1363 27 27 NA
## 1364 240 144 9.60000000000
## 1365 0 0 NA
## 1366 24 48 2.42857142857
## 1367 18 0 NA
## 1368 14 34 17.71428571429
## 1369 NA NA 0.00000000000
## 1370 0 60 0.64285714286
## 1371 NA NA 0.00000000000
## 1372 36 137 4.57142857143
## 1373 17 17 NA
## 1374 80 95 13.60000000000
## 1375 8 8 8.00000000000
## 1376 NA NA 0.00000000000
## 1377 0 16 NA
## 1378 48 48 12.80000000000
## 1379 NA NA 0.00000000000
## 1380 36 217 NA
## 1381 34 190 41.71428571429
## 1382 0 48 NA
## 1383 NA NA 0.00000000000
## 1384 35 25 32.14285714286
## 1385 34 24 2.30612244898
## 1386 24 48 1.38775510204
## 1387 48 72 13.14285714286
## 1388 0 199 NA
## 1389 0 24 NA
## 1390 0 168 0.73469387755
## 1391 32 40 34.28571428571
## 1392 17 24 0.73469387755
## 1393 0 17 NA
## 1394 0 26 0.62857142857
## 1395 24 96 0.97142857143
## 1396 0 72 2.85714285714
## 1397 0 107 10.34285714286
## 1398 84 64 7.31428571429
## 1399 0 48 0.00971428571
## 1400 81 79 9.25714285714
## 1401 26 24 25.42857142857
## 1402 41 28 1.94285714286
## 1403 0 0 NA
## 1404 42 0 NA
## 1405 0 0 NA
## 1406 NA NA 0.00000000000
## 1407 NA NA 0.00000000000
## 1408 17 17 1.02857142857
## 1409 NA NA 0.00000000000
## 1410 73 109 NA
## 1411 NA NA 0.00000000000
## 1412 NA NA 0.00000000000
## 1413 0 32 8.62857142857
## 1414 0 17 0.00346938776
## 1415 17 8 36.40000000000
## 1416 103 60 16.80000000000
## 1417 NA NA 0.00000000000
## 1418 0 18 0.24914285714
## 1419 60 80 12.34285714286
## 1420 24 24 NA
## 1421 NA NA 0.00000000000
## 1422 NA NA 0.00000000000
## 1423 0 180 NA
## 1424 56 120 11.14285714286
## 1425 14 146 51.71428571429
## 1426 24 36 NA
## 1427 0 65 NA
## 1428 0 66 NA
## 1429 NA NA 0.00000000000
## 1430 34 34 3.20000000000
## 1431 0 0 NA
## 1432 72 72 1.94285714286
## 1433 56 0 2.51428571429
## 1434 0 7 0.12800000000
## 1435 NA NA 0.00000000000
## 1436 8 17 0.60000000000
## 1437 NA NA 0.00000000000
## 1438 0 24 0.83238095238
## 1439 NA NA 0.00000000000
## 1440 22 110 1.99657142857
## 1441 86 106 2.05714285714
## 1442 42 56 NA
## 1443 24 36 41.65714285714
## 1444 NA NA 0.00000000000
## 1445 56 85 1.14285714286
## 1446 0 66 0.68000000000
## 1447 24 48 13.60000000000
## 1448 36 146 NA
## 1449 48 88 NA
## 1450 77 190 9.48571428571
## 1451 9 0 0.10057142857
## 1452 17 17 NA
## 1453 0 32 0.82000000000
## 1454 53 0 3.65142857143
## 1455 72 18 56.57142857143
## 1456 36 144 6.80000000000
## 1457 24 32 16.57142857143
## 1458 0 97 0.03885714286
## 1459 71 141 91.00000000000
## 1460 0 0 0.53877551020
## 1461 NA NA 0.00000000000
## 1462 0 0 0.00653061224
## 1463 NA NA 0.00000000000
## 1464 NA NA 0.00000000000
## 1465 18 18 17.60000000000
## 1466 8 18 0.74666666667
## 1467 NA NA 0.00000000000
## 1468 14 47 4.65306122449
## 1469 34 34 9.60000000000
## 1470 NA NA 0.00000000000
## 1471 17 17 NA
## 1472 42 44 42.57142857143
## 1473 0 113 NA
## 1474 0 370 NA
## 1475 60 48 0.00008707483
## 1476 NA NA 0.00000000000
## 1477 8 0 NA
## 1478 0 16 9.28571428571
## 1479 17 92 0.80000000000
## 1480 NA NA 0.00000000000
## 1481 16 16 NA
## 1482 17 17 NA
## 1483 17 42 19.65714285714
## 1484 0 0 NA
## 1485 48 36 0.20571428571
## 1486 0 16 3.50000000000
## 1487 36 36 2.15510204082
## 1488 0 0 1.07428571429
## 1489 0 17 0.60000000000
## 1490 48 72 0.04857142857
## 1491 24 24 NA
## 1492 0 56 NA
## 1493 18 91 1.76326530612
## 1494 17 17 19.54285714286
## 1495 0 48 1.46666666667
## 1496 14 17 NA
## 1497 36 71 20.97142857143
## 1498 14 14 NA
## 1499 0 22 0.41714285714
## 1500 NA NA 0.00000000000
## 1501 8 17 6.80000000000
## 1502 34 34 0.45714285714
## 1503 24 0 0.10285714286
## 1504 17 34 7.20000000000
## 1505 17 55 50.85714285714
## 1506 NA NA 0.00000000000
## 1507 16 16 NA
## 1508 NA NA 0.00000000000
## 1509 0 162 NA
## 1510 NA NA 2.87346938776
## 1511 NA NA 0.00000000000
## 1512 NA NA 0.00000000000
## 1513 0 168 3.20000000000
## 1514 31 17 1.38775510204
## 1515 464 176 45.37142857143
## 1516 0 8 0.04342857143
## 1517 0 72 NA
## 1518 0 168 0.09931972789
## 1519 17 49 1.14285714286
## 1520 50 64 4.62857142857
## 1521 0 16 0.40000000000
## 1522 18 48 3.14285714286
## 1523 31 34 15.31428571429
## 1524 0 0 0.26971428571
## 1525 14 14 NA
## 1526 NA NA 0.00000000000
## 1527 60 116 4.12244897959
## 1528 0 45 0.63809523810
## 1529 38 24 34.00000000000
## 1530 208 64 166.85714285714
## 1531 0 72 18.16326530612
## 1532 18 24 2.36734693878
## 1533 NA NA 0.00000000000
## 1534 195 227 8.00000000000
## 1535 0 17 1.02857142857
## 1536 36 36 NA
## 1537 36 48 10.97142857143
## 1538 NA NA 0.00000000000
## 1539 34 72 12.91428571429
## 1540 137 175 3.20000000000
## 1541 0 24 0.98775510204
## 1542 48 72 16.68571428571
## 1543 32 112 1.67619047619
## 1544 0 17 5.20408163265
## 1545 8 8 3.20000000000
## 1546 0 120 0.05165714286
## 1547 NA NA 0.00000000000
## 1548 9 25 5.14285714286
## 1549 96 72 89.14285714286
## 1550 72 72 7.88571428571
## 1551 NA NA 0.00000000000
## 1552 0 41 1.57142857143
## 1553 NA NA 0.00000000000
## 1554 0 111 0.03722448980
## 1555 0 22 4.40816326531
## 1556 NA NA 0.00000000000
## 1557 NA NA 0.00000000000
## 1558 NA NA 0.00000000000
## 1559 8 8 5.71428571429
## 1560 14 42 57.25714285714
## 1561 49 24 2.44897959184
## 1562 72 72 11.88571428571
## 1563 0 104 6.85714285714
## 1564 71 85 75.00000000000
## 1565 103 94 11.60000000000
## 1566 73 24 59.00000000000
## 1567 17 17 36.34285714286
## 1568 48 48 5.48571428571
## 1569 217 161 NA
## 1570 0 0 0.96000000000
## 1571 17 34 16.45714285714
## 1572 18 99 3.04081632653
## 1573 36 166 NA
## 1574 8 17 NA
## 1575 24 24 24.00000000000
## 1576 55 0 NA
## 1577 55 24 122.45714285714
## 1578 85 90 2.44897959184
## 1579 NA NA 0.00000000000
## 1580 NA NA 0.00000000000
## 1581 0 0 0.63428571429
## 1582 24 146 1.82857142857
## 1583 86 0 0.00000000000
## 1584 0 9 NA
## 1585 48 24 1.53142857143
## 1586 156 48 3.88571428571
## 1587 24 56 NA
## 1588 NA NA 0.00000000000
## 1589 0 14 NA
## 1590 8 34 31.20000000000
## 1591 31 17 0.72000000000
## 1592 14 14 NA
## 1593 0 18 NA
## 1594 NA NA 0.00000000000
## 1595 0 8 4.57142857143
## 1596 80 80 42.51428571429
## 1597 24 42 2.74285714286
## 1598 17 17 NA
## 1599 32 32 41.20000000000
## 1600 0 48 NA
## 1601 NA NA 0.00000000000
## 1602 73 18 0.45714285714
## 1603 0 42 NA
## 1604 28 14 NA
## 1605 24 144 4.85714285714
## 1606 NA NA 0.00000000000
## 1607 18 18 1.14285714286
## 1608 18 9 0.77714285714
## 1609 16 32 NA
## 1610 138 143 6.80000000000
## 1611 17 17 NA
## 1612 18 48 0.05278911565
## 1613 36 0 2.74285714286
## 1614 0 56 NA
## 1615 34 34 26.05714285714
## 1616 413 754 510.42857142857
## 1617 14 99 9.63265306122
## 1618 0 83 NA
## 1619 16 16 16.00000000000
## 1620 NA NA 0.00000000000
## 1621 NA NA 0.00000000000
## 1622 0 58 NA
## 1623 17 48 6.80000000000
## 1624 NA NA 0.00000000000
## 1625 150 150 0.58666666667
## 1626 9 9 NA
## 1627 412 72 6.80000000000
## 1628 0 27 0.00000000000
## 1629 195 246 0.73469387755
## 1630 34 56 NA
## 1631 34 50 NA
## 1632 8 8 1.68000000000
## 1633 0 0 NA
## 1634 0 11 NA
## 1635 83 115 22.17142857143
## 1636 NA NA 0.00000000000
## 1637 42 237 7.74285714286
## 1638 17 17 0.60571428571
## 1639 55 91 19.31428571429
## 1640 NA NA 0.00000000000
## 1641 52 0 2.42857142857
## 1642 0 48 NA
## 1643 18 48 4.85714285714
## 1644 32 32 NA
## 1645 0 8 4.05714285714
## 1646 73 122 NA
## 1647 NA NA 0.00000000000
## 1648 NA NA 0.00000000000
## 1649 0 18 NA
## 1650 32 8 2.21428571429
## 1651 8 8 NA
## 1652 NA NA 0.00000000000
## 1653 94 72 17.82857142857
## 1654 NA NA 0.00000000000
## 1655 17 182 4.68571428571
## 1656 0 42 2.07085714286
## 1657 0 42 13.08571428571
## 1658 17 17 0.56666666667
## 1659 48 48 1.94285714286
## 1660 0 0 NA
## 1661 472 336 2.16285714286
## 1662 NA NA 0.00000000000
## 1663 48 72 NA
## 1664 NA NA 0.00000000000
## 1665 8 17 0.16326530612
## 1666 NA NA 0.00000000000
## 1667 52 56 1.82857142857
## 1668 18 18 18.00000000000
## 1669 0 17 4.16326530612
## 1670 17 17 17.00000000000
## 1671 0 95 23.20000000000
## 1672 NA NA 0.00000000000
## 1673 93 262 7.88571428571
## 1674 0 12 NA
## 1675 24 40 2.02857142857
## 1676 NA NA 0.00000000000
## 1677 56 99 68.28571428571
## 1678 36 36 36.00000000000
## 1679 155 160 11.42857142857
## 1680 24 24 13.08571428571
## 1681 NA NA 0.00000000000
## 1682 NA NA 0.00000000000
## 1683 24 106 28.51428571429
## 1684 0 33 0.97142857143
## 1685 72 72 72.00000000000
## 1686 0 66 0.00000000000
## 1687 49 132 5.95918367347
## 1688 0 48 4.82857142857
## 1689 0 17 NA
## 1690 72 234 NA
## 1691 NA NA 0.00000000000
## 1692 0 48 10.00000000000
## 1693 45 45 45.00000000000
## 1694 0 36 1.58857142857
## 1695 143 182 73.37142857143
## 1696 9 36 1.96000000000
## 1697 0 56 NA
## 1698 14 14 2.63142857143
## 1699 NA NA 0.00000000000
## 1700 17 34 12.57142857143
## 1701 NA NA 0.00000000000
## 1702 17 17 NA
## 1703 0 271 0.00000000000
## 1704 0 8 NA
## 1705 72 28 38.62857142857
## 1706 17 34 1.70476190476
## 1707 42 91 NA
## 1708 31 46 5.60000000000
## 1709 76 0 21.58571428571
## 1710 36 18 0.00800000000
## 1711 NA NA 0.00000000000
## 1712 24 48 1.56122448980
## 1713 18 8 NA
## 1714 0 34 17.37142857143
## 1715 34 91 NA
## 1716 0 72 0.07619047619
## 1717 34 34 NA
## 1718 8 48 1.46938775510
## 1719 24 72 13.20000000000
## 1720 0 17 NA
## 1721 0 165 0.45714285714
## 1722 18 18 18.00000000000
## 1723 0 24 NA
## 1724 0 33 1.45714285714
## 1725 0 72 NA
## 1726 18 55 NA
## 1727 72 72 72.00000000000
## 1728 NA NA 0.00000000000
## 1729 118 183 NA
## 1730 97 210 28.91428571429
## 1731 24 24 16.45714285714
## 1732 NA NA 0.00000000000
## 1733 34 9 0.14400000000
## 1734 NA NA 0.00000000000
## 1735 123 127 0.04857142857
## 1736 NA NA 0.00000000000
## 1737 41 35 39.28571428571
## 1738 0 298 0.02312925170
## 1739 0 41 NA
## 1740 16 64 19.77142857143
## 1741 25 36 3.20000000000
## 1742 0 18 NA
## 1743 NA NA 0.00000000000
## 1744 48 48 2.92244897959
## 1745 NA NA 0.00000000000
## 1746 8 24 12.71428571429
## 1747 0 8 NA
## 1748 48 64 1.02448979592
## 1749 24 14 0.13061224490
## 1750 NA NA 0.00000000000
## 1751 24 0 50.85714285714
## 1752 NA NA 0.00000000000
## 1753 0 73 1.30612244898
## 1754 42 66 12.34285714286
## 1755 8 48 25.60000000000
## 1756 36 36 0.95619047619
## 1757 14 50 1.14285714286
## 1758 0 44 0.60571428571
## 1759 48 48 8.34285714286
## 1760 NA NA 0.00000000000
## 1761 0 0 0.24685714286
## 1762 334 73 NA
## 1763 25 72 38.42857142857
## 1764 85 292 14.40000000000
## 1765 8 17 0.04000000000
## 1766 18 32 NA
## 1767 48 72 4.11428571429
## 1768 84 36 11.20000000000
## 1769 32 NA 33.82857142857
## 1770 84 0 1.76326530612
## 1771 0 0 0.26081632653
## 1772 0 216 NA
## 1773 36 157 NA
## 1774 NA NA 0.01469387755
## 1775 NA NA 0.00000000000
## 1776 18 18 NA
## 1777 14 17 0.91836734694
## 1778 14 14 0.71428571429
## 1779 17 52 0.07673469388
## 1780 0 0 0.13600000000
## 1781 17 17 0.14400000000
## 1782 24 24 0.00000000000
## 1783 8 193 2.92244897959
## 1784 34 32 12.34285714286
## 1785 NA NA 0.00000000000
## 1786 17 0 NA
## 1787 0 192 3.42857142857
## 1788 14 14 NA
## 1789 94 82 12.34285714286
## 1790 24 84 14.40000000000
## 1791 24 48 9.14285714286
## 1792 17 26 NA
## 1793 73 64 1.71428571429
## 1794 48 36 4.62857142857
## 1795 17 17 20.57142857143
## 1796 NA NA 0.00000000000
## 1797 24 16 4.85714285714
## 1798 17 0 0.35200000000
## 1799 0 0 0.14342857143
## 1800 71 55 12.34285714286
## 1801 NA NA 0.00000000000
## 1802 24 48 15.20000000000
## 1803 116 157 2.85142857143
## 1804 8 8 0.07542857143
## 1805 0 28 NA
## 1806 17 17 17.00000000000
## 1807 NA NA 0.00000000000
## 1808 72 34 17.14285714286
## 1809 56 56 NA
## 1810 94 194 1.37142857143
## 1811 14 36 5.18367346939
## 1812 34 34 8.72857142857
## 1813 0 55 NA
## 1814 156 327 40.34285714286
## 1815 32 32 0.65142857143
## 1816 159 233 180.14285714286
## 1817 18 9 NA
## 1818 NA NA 0.00000000000
## 1819 0 72 5.28979591837
## 1820 NA NA 0.00000000000
## 1821 81 32 91.42857142857
## 1822 0 34 1.35510204082
## 1823 32 24 NA
## 1824 0 16 NA
## 1825 24 48 45.60000000000
## 1826 64 180 97.14285714286
## 1827 0 0 0.00000000000
## 1828 48 48 0.00000000000
## 1829 28 71 NA
## 1830 48 42 NA
## 1831 36 36 36.00000000000
## 1832 NA NA 0.00000000000
## 1833 0 14 1.79047619048
## 1834 8 48 0.30171428571
## 1835 0 55 NA
## 1836 91 55 3.02040816327
## 1837 117 56 6.80000000000
## 1838 0 17 0.24685714286
## 1839 34 91 50.28571428571
## 1840 18 36 3.06938775510
## 1841 0 0 2.71428571429
## 1842 24 24 3.69387755102
## 1843 17 24 0.00000000000
## 1844 51 36 0.91428571429
## 1845 8 17 2.11428571429
## 1846 16 16 0.40228571429
## 1847 NA NA 0.00000000000
## 1848 0 136 6.80000000000
## 1849 0 272 0.03047619048
## 1850 35 0 NA
## 1851 NA NA 0.00000000000
## 1852 NA NA 0.00000000000
## 1853 0 64 3.46938775510
## 1854 0 73 0.45714285714
## 1855 0 8 0.45714285714
## 1856 NA NA 0.00000000000
## 1857 0 70 3.26530612245
## 1858 NA NA 0.00000000000
## 1859 NA NA 0.00000000000
## 1860 292 0 0.43333333333
## 1861 NA NA 0.00000000000
## 1862 NA NA 0.00000000000
## 1863 14 8 0.00000000000
## 1864 17 17 0.00000000000
## 1865 NA NA 0.00000000000
## 1866 NA NA 0.00000000000
## 1867 24 24 1.95918367347
## 1868 48 0 4.57142857143
## 1869 NA NA 0.00000000000
## 1870 67 0 47.85714285714
## 1871 NA NA 0.00000000000
## 1872 NA NA 0.00000000000
## 1873 24 36 6.80000000000
## 1874 66 127 17.37142857143
## 1875 73 81 8.68571428571
## 1876 34 44 31.54285714286
## 1877 8 0 0.06367346939
## 1878 NA NA 0.00000000000
## 1879 0 58 0.00000000000
## 1880 18 24 7.20000000000
## 1881 0 0 3.21428571429
## 1882 50 48 NA
## 1883 NA NA 0.00000000000
## 1884 16 33 20.85714285714
## 1885 24 32 NA
## 1886 16 56 NA
## 1887 0 312 9.60000000000
## 1888 22 26 NA
## 1889 0 34 6.09795918367
## 1890 48 0 5.61632653061
## 1891 NA NA 0.00000000000
## 1892 0 8 0.22666666667
## 1893 24 50 31.42857142857
## 1894 NA NA 0.00000000000
## 1895 0 17 0.16000000000
## 1896 NA NA 0.00000000000
## 1897 194 218 8.74285714286
## 1898 NA NA 0.00000000000
## 1899 8 8 7.26530612245
## 1900 0 8 0.78367346939
## 1901 NA NA 0.00000000000
## 1902 48 48 22.22857142857
## 1903 50 40 2.08979591837
## 1904 48 96 61.71428571429
## 1905 18 56 2.42857142857
## 1906 NA NA 0.00000000000
## 1907 17 0 0.05142857143
## 1908 56 84 64.00000000000
## 1909 0 8 0.40000000000
## 1910 131 200 13.14285714286
## 1911 25 57 27.14285714286
## 1912 0 146 0.56666666667
## 1913 NA NA 0.00000000000
## 1914 60 36 8.74285714286
## 1915 NA NA 0.00000000000
## 1916 0 16 0.03265306122
## 1917 205 0 146.42857142857
## 1918 0 73 NA
## 1919 17 25 NA
## 1920 18 18 64.11428571429
## 1921 17 17 NA
## 1922 32 42 34.85714285714
## 1923 0 16 0.00457142857
## 1924 127 42 35.08571428571
## 1925 NA NA 0.00000000000
## 1926 17 18 NA
## 1927 72 72 1.48979591837
## 1928 0 14 NA
## 1929 0 109 NA
## 1930 NA NA 0.00000000000
## 1931 NA NA 0.00000000000
## 1932 24 24 NA
## 1933 NA NA 0.00000000000
## 1934 0 0 0.45714285714
## 1935 0 98 1.24571428571
## 1936 0 43 NA
## 1937 0 18 NA
## 1938 0 24 0.73469387755
## 1939 0 36 0.33142857143
## 1940 152 152 0.34666666667
## 1941 36 0 0.13828571429
## 1942 48 34 NA
## 1943 14 14 14.00000000000
## 1944 0 0 0.05551020408
## 1945 33 35 6.40000000000
## 1946 35 14 0.58666666667
## 1947 0 36 0.17142857143
## 1948 0 36 NA
## 1949 34 34 0.97142857143
## 1950 17 17 17.00000000000
## 1951 18 91 16.45714285714
## 1952 72 72 72.00000000000
## 1953 NA NA NA
## 1954 NA NA 0.00000000000
## 1955 18 55 0.64000000000
## 1956 40 88 17.71428571429
## 1957 NA NA 0.00000000000
## 1958 NA NA 0.00000000000
## 1959 NA NA 0.00000000000
## 1960 71 117 84.14285714286
## 1961 NA NA 0.00000000000
## 1962 73 73 NA
## 1963 NA NA 0.00000000000
## 1964 17 0 0.03400000000
## 1965 NA NA 0.00000000000
## 1966 0 109 NA
## 1967 34 24 3.88571428571
## 1968 24 24 0.22000000000
## 1969 66 62 64.85714285714
## 1970 NA NA 0.00000000000
## 1971 28 85 0.01469387755
## 1972 17 17 9.98285714286
## 1973 34 50 NA
## 1974 0 0 0.14000000000
## 1975 24 28 0.00000000000
## 1976 32 32 5.60000000000
## 1977 32 142 4.85714285714
## 1978 65 129 NA
## 1979 42 73 NA
## 1980 17 52 NA
## 1981 NA NA 0.00000000000
## 1982 0 55 3.30612244898
## 1983 0 67 2.42857142857
## 1984 0 64 0.50285714286
## 1985 0 87 0.04326530612
## 1986 NA NA 0.00000000000
## 1987 17 25 0.96000000000
## 1988 8 18 NA
## 1989 0 72 10.97142857143
## 1990 24 42 5.60000000000
## 1991 24 24 10.87755102041
## 1992 34 71 44.57142857143
## 1993 NA NA 0.00000000000
## 1994 24 24 24.00000000000
## 1995 17 25 NA
## 1996 32 32 NA
## 1997 NA NA 0.00000000000
## 1998 NA NA 0.00000000000
## 1999 NA NA 0.00000000000
## 2000 17 0 2.40000000000
## 2001 56 176 13.71428571429
## 2002 NA NA 0.00000000000
## 2003 17 0 0.42571428571
## 2004 16 52 12.00000000000
## 2005 84 144 25.60000000000
## 2006 0 0 NA
## 2007 NA NA 0.00000000000
## 2008 17 0 0.56666666667
## 2009 NA NA 0.00000000000
## 2010 9 34 4.10000000000
## 2011 73 0 39.71428571429
## 2012 22 22 89.14285714286
## 2013 0 36 NA
## 2014 0 55 0.07619047619
## 2015 NA NA 0.00000000000
## 2016 NA NA 0.00000000000
## 2017 36 36 0.19428571429
## 2018 NA NA 0.00000000000
## 2019 0 17 0.20367346939
## 2020 46 40 NA
## 2021 72 72 17.48571428571
## 2022 NA NA 0.00000000000
## 2023 32 32 32.00000000000
## 2024 32 41 NA
## 2025 36 55 42.62857142857
## 2026 24 24 4.34285714286
## 2027 14 72 14.40000000000
## 2028 0 183 NA
## 2029 364 186 26.40000000000
## 2030 NA NA 0.00000000000
## 2031 0 220 NA
## 2032 18 18 1.95918367347
## 2033 0 48 0.03265306122
## 2034 17 17 NA
## 2035 0 115 6.01428571429
## 2036 18 27 29.54285714286
## 2037 NA NA 0.00000000000
## 2038 0 125 1.48571428571
## 2039 18 18 2.05714285714
## 2040 14 17 0.38400000000
## 2041 302 302 302.00000000000
## 2042 0 0 NA
## 2043 14 14 14.00000000000
## 2044 NA NA 0.00000000000
## 2045 NA NA 0.00000000000
## 2046 320 320 7.20000000000
## 2047 0 72 12.57142857143
## 2048 17 18 NA
## 2049 32 32 NA
## 2050 48 125 70.00000000000
## 2051 0 112 1.14285714286
## 2052 14 24 16.85714285714
## 2053 0 64 NA
## 2054 NA NA 0.00000000000
## 2055 0 137 0.69387755102
## 2056 196 160 NA
## 2057 8 16 10.28571428571
## 2058 16 16 0.76190476190
## 2059 56 48 0.26666666667
## 2060 0 124 NA
## 2061 0 0 0.02383673469
## 2062 72 80 NA
## 2063 0 720 NA
## 2064 48 34 NA
## 2065 73 173 17.50000000000
## 2066 14 46 NA
## 2067 14 756 6.80000000000
## 2068 24 82 6.80000000000
## 2069 0 16 0.24285714286
## 2070 148 148 2.08571428571
## 2071 NA NA 0.00000000000
## 2072 18 18 5.14285714286
## 2073 NA NA 0.00000000000
## 2074 24 0 NA
## 2075 17 0 3.42857142857
## 2076 17 0 0.00000000000
## 2077 0 72 NA
## 2078 0 65 NA
## 2079 0 36 NA
## 2080 146 36 114.57142857143
## 2081 56 24 10.51428571429
## 2082 0 0 0.68000000000
## 2083 0 112 NA
## 2084 0 18 0.58285714286
## 2085 84 48 2.51428571429
## 2086 147 129 NA
## 2087 87 103 NA
## 2088 16 42 23.42857142857
## 2089 0 36 NA
## 2090 0 35 2.28571428571
## 2091 34 72 4.85714285714
## 2092 0 178 36.40000000000
## 2093 60 36 53.14285714286
## 2094 0 42 0.29387755102
## 2095 NA NA 0.00000000000
## 2096 NA NA 0.00000000000
## 2097 0 36 1.63265306122
## 2098 0 128 0.27755102041
## 2099 17 24 0.51428571429
## 2100 72 72 4.57142857143
## 2101 0 0 0.13600000000
## 2102 0 160 0.97142857143
## 2103 NA NA 0.00000000000
## 2104 NA NA 0.00000000000
## 2105 0 28 NA
## 2106 72 36 1.60000000000
## 2107 0 31 1.20952380952
## 2108 NA NA 0.00000000000
## 2109 34 72 3.88571428571
## 2110 131 409 113.31428571429
## 2111 17 17 1.25714285714
## 2112 24 24 4.69387755102
## 2113 91 91 4.91428571429
## 2114 NA NA 0.00000000000
## 2115 16 48 NA
## 2116 NA NA 4.00000000000
## 2117 165 0 0.00000000000
## 2118 NA NA 0.00000000000
## 2119 0 9 0.83428571429
## 2120 0 19 NA
## 2121 NA NA 0.00000000000
## 2122 24 48 0.21714285714
## 2123 0 17 NA
## 2124 73 128 88.71428571429
## 2125 17 17 9.25714285714
## 2126 0 16 0.00000000000
## 2127 24 24 2.61224489796
## 2128 0 32 0.03040000000
## 2129 17 0 1.10952380952
## 2130 17 0 NA
## 2131 NA NA 0.00000000000
## 2132 101 224 1.60000000000
## 2133 0 79 0.13061224490
## 2134 18 42 NA
## 2135 17 17 0.40914285714
## 2136 17 17 17.00000000000
## 2137 17 100 0.00000000000
## 2138 NA NA 0.00000000000
## 2139 168 41 12.80000000000
## 2140 NA NA 0.00000000000
## 2141 17 17 6.40000000000
## 2142 17 34 23.37142857143
## 2143 18 64 0.69387755102
## 2144 42 55 0.12299319728
## 2145 32 32 32.00000000000
## 2146 33 140 NA
## 2147 14 55 2.00000000000
## 2148 50 50 13.60000000000
## 2149 171 66 2.85714285714
## 2150 17 9 NA
## 2151 97 146 12.57142857143
## 2152 NA NA 0.00000000000
## 2153 55 91 15.08571428571
## 2154 52 169 29.48571428571
## 2155 62 62 12.34285714286
## 2156 56 56 56.00000000000
## 2157 32 0 2.74285714286
## 2158 0 34 1.78000000000
## 2159 16 16 19.20000000000
## 2160 NA NA 0.00000000000
## 2161 NA NA 0.00000000000
## 2162 32 32 1.34857142857
## 2163 NA NA 0.00000000000
## 2164 31 50 0.45714285714
## 2165 72 72 72.00000000000
## 2166 0 18 0.54285714286
## 2167 0 17 0.01828571429
## 2168 14 14 0.32000000000
## 2169 17 17 NA
## 2170 NA NA 0.00000000000
## 2171 NA NA 0.00000000000
## 2172 55 55 6.80000000000
## 2173 0 0 0.24685714286
## 2174 0 18 NA
## 2175 24 0 NA
## 2176 14 8 54.00000000000
## 2177 0 52 0.18612244898
## 2178 36 68 8.22857142857
## 2179 NA NA 0.00000000000
## 2180 16 8 NA
## 2181 14 117 5.48571428571
## 2182 48 108 33.42857142857
## 2183 14 14 NA
## 2184 17 0 0.40914285714
## 2185 64 86 13.08571428571
## 2186 0 24 0.08897959184
## 2187 37 47 6.85714285714
## 2188 36 14 4.80000000000
## 2189 24 31 4.57142857143
## 2190 24 0 10.28571428571
## 2191 NA NA 0.00000000000
## 2192 84 92 3.17142857143
## 2193 0 87 NA
## 2194 NA NA 0.00000000000
## 2195 0 85 NA
## 2196 36 64 6.00000000000
## 2197 NA NA 0.00000000000
## 2198 NA NA 0.00000000000
## 2199 0 48 1.01224489796
## 2200 NA NA 0.00000000000
## 2201 28 93 10.34285714286
## 2202 18 71 NA
## 2203 36 136 NA
## 2204 85 85 3.88571428571
## 2205 17 34 21.85714285714
## 2206 192 156 181.71428571429
## 2207 34 34 27.02857142857
## 2208 0 0 NA
## 2209 55 218 6.62857142857
## 2210 8 25 12.85714285714
## 2211 56 56 17.71428571429
## 2212 NA NA 0.00000000000
## 2213 0 16 7.21632653061
## 2214 0 45 0.00000000000
## 2215 NA NA 0.00000000000
## 2216 73 73 73.00000000000
## 2217 236 118 26.00000000000
## 2218 NA NA 0.00000000000
## 2219 0 0 23.42857142857
## 2220 NA NA 0.00000000000
## 2221 0 25 NA
## 2222 NA NA 0.00000000000
## 2223 72 73 NA
## 2224 18 18 NA
## 2225 24 0 1.14285714286
## 2226 NA NA 0.00000000000
## 2227 73 146 0.69387755102
## 2228 NA NA 0.00000000000
## 2229 0 14 0.20952380952
## 2230 0 24 NA
## 2231 91 142 NA
## 2232 NA NA 0.00000000000
## 2233 NA NA 0.00000000000
## 2234 NA NA 0.00000000000
## 2235 0 36 0.73469387755
## 2236 NA NA 0.00000000000
## 2237 NA NA 0.00000000000
## 2238 63 42 1.95918367347
## 2239 NA NA 0.00000000000
## 2240 36 55 19.20000000000
## 2241 34 34 34.00000000000
## 2242 32 0 1.30612244898
## 2243 60 97 6.80000000000
## 2244 0 232 NA
## 2245 18 67 NA
## 2246 167 178 NA
## 2247 NA NA 0.00000000000
## 2248 NA NA 0.00000000000
## 2249 14 55 4.22857142857
## 2250 18 36 23.14285714286
## 2251 0 8 NA
## 2252 34 85 NA
## 2253 17 8 0.19200000000
## 2254 24 50 24.62857142857
## 2255 17 48 NA
## 2256 NA NA 0.00000000000
## 2257 17 24 26.40000000000
## 2258 NA NA 0.00000000000
## 2259 0 17 0.74057142857
## 2260 24 17 29.20000000000
## 2261 72 121 0.45714285714
## 2262 0 17 46.00000000000
## 2263 0 0 0.95238095238
## 2264 26 18 23.71428571429
## 2265 50 50 50.00000000000
## 2266 NA NA NA
## 2267 NA NA NA
## 2268 NA NA NA
## 2269 NA NA NA
## 2270 NA NA NA
## 2271 NA NA NA
## 2272 NA NA NA
## 2273 NA NA NA
## 2274 NA NA NA
## 2275 NA NA NA
## 2276 NA NA NA
## 2277 NA NA NA
## 2278 NA NA NA
## 2279 NA NA NA
## 2280 NA NA NA
## 2281 NA NA NA
## 2282 NA NA NA
## 2283 NA NA NA
## 2284 NA NA NA
## 2285 NA NA NA
## 2286 NA NA NA
## 2287 NA NA NA
## 2288 NA NA NA
## 2289 NA NA NA
## 2290 NA NA NA
## 2291 NA NA NA
## 2292 NA NA NA
## 2293 NA NA NA
## 2294 NA NA NA
## 2295 NA NA NA
## 2296 NA NA NA
## 2297 NA NA NA
## 2298 NA NA NA
## 2299 NA NA NA
## 2300 NA NA NA
## 2301 NA NA NA
## 2302 NA NA NA
## 2303 NA NA NA
## 2304 NA NA NA
## 2305 NA NA NA
## 2306 NA NA NA
## 2307 NA NA NA
## 2308 NA NA NA
## 2309 NA NA NA
## 2310 NA NA NA
## 2311 NA NA NA
## 2312 NA NA NA
## 2313 NA NA NA
## 2314 NA NA NA
## 2315 NA NA NA
## 2316 NA NA NA
## 2317 NA NA NA
## 2318 NA NA NA
## 2319 NA NA NA
## 2320 NA NA NA
## 2321 NA NA NA
## 2322 NA NA NA
## 2323 NA NA NA
## 2324 NA NA NA
## 2325 NA NA NA
## 2326 NA NA NA
## 2327 NA NA NA
## 2328 NA NA NA
## 2329 NA NA NA
## 2330 NA NA NA
## 2331 NA NA NA
## 2332 NA NA NA
## 2333 NA NA NA
## 2334 NA NA NA
## 2335 NA NA NA
## 2336 NA NA NA
## 2337 NA NA NA
## 2338 NA NA NA
## 2339 NA NA NA
## 2340 NA NA NA
## 2341 NA NA NA
## 2342 NA NA NA
## 2343 NA NA NA
## 2344 NA NA NA
## 2345 NA NA NA
## 2346 NA NA NA
## 2347 NA NA NA
## 2348 NA NA NA
## 2349 NA NA NA
## 2350 NA NA NA
## 2351 NA NA NA
## 2352 NA NA NA
## 2353 NA NA NA
## 2354 NA NA NA
## 2355 NA NA NA
## 2356 NA NA NA
## 2357 NA NA NA
## 2358 NA NA NA
## 2359 NA NA NA
## 2360 NA NA NA
## 2361 NA NA NA
## 2362 NA NA NA
## 2363 NA NA NA
## 2364 NA NA NA
## 2365 NA NA NA
## 2366 NA NA NA
## 2367 NA NA NA
## 2368 NA NA NA
## 2369 NA NA NA
## 2370 NA NA NA
## 2371 NA NA NA
## 2372 NA NA NA
## 2373 NA NA NA
## 2374 NA NA NA
## 2375 NA NA NA
## 2376 NA NA NA
## 2377 NA NA NA
## 2378 NA NA NA
## 2379 NA NA NA
## 2380 NA NA NA
## 2381 NA NA NA
## 2382 NA NA NA
## 2383 NA NA NA
## 2384 NA NA NA
## 2385 NA NA NA
## 2386 NA NA NA
## 2387 NA NA NA
## 2388 NA NA NA
## 2389 NA NA NA
## 2390 NA NA NA
## 2391 NA NA NA
## 2392 NA NA NA
## 2393 NA NA NA
## 2394 NA NA NA
## 2395 NA NA NA
## 2396 NA NA NA
## 2397 NA NA NA
## 2398 NA NA NA
## 2399 NA NA NA
## 2400 NA NA NA
## 2401 NA NA NA
## 2402 NA NA NA
## 2403 NA NA NA
## 2404 NA NA NA
## 2405 NA NA NA
## 2406 NA NA NA
## 2407 NA NA NA
## 2408 NA NA NA
## 2409 NA NA NA
## 2410 NA NA NA
## 2411 NA NA NA
## 2412 NA NA NA
## 2413 NA NA NA
## 2414 NA NA NA
## 2415 NA NA NA
## 2416 NA NA NA
## 2417 NA NA NA
## 2418 NA NA NA
## 2419 NA NA NA
## 2420 NA NA NA
## 2421 NA NA NA
## 2422 NA NA NA
## 2423 NA NA NA
## 2424 NA NA NA
## 2425 NA NA NA
## 2426 NA NA NA
## 2427 NA NA NA
## 2428 NA NA NA
## 2429 NA NA NA
## 2430 NA NA NA
## 2431 NA NA NA
## 2432 NA NA NA
## 2433 NA NA NA
## 2434 NA NA NA
## 2435 NA NA NA
## 2436 NA NA NA
## 2437 NA NA NA
## 2438 NA NA NA
## 2439 NA NA NA
## 2440 NA NA NA
## 2441 NA NA NA
## 2442 NA NA NA
## 2443 NA NA NA
## 2444 NA NA NA
## 2445 NA NA NA
## 2446 NA NA NA
## 2447 NA NA NA
## 2448 NA NA NA
## 2449 NA NA NA
## 2450 NA NA NA
## 2451 NA NA NA
## 2452 NA NA NA
## 2453 NA NA NA
## 2454 NA NA NA
## 2455 NA NA NA
## 2456 NA NA NA
## 2457 NA NA NA
## 2458 NA NA NA
## 2459 NA NA NA
## 2460 NA NA NA
## 2461 NA NA NA
## 2462 NA NA NA
## 2463 NA NA NA
## 2464 NA NA NA
## 2465 NA NA NA
## 2466 NA NA NA
## 2467 NA NA NA
## 2468 NA NA NA
## 2469 NA NA NA
## 2470 NA NA NA
## 2471 NA NA NA
## 2472 NA NA NA
## 2473 NA NA NA
## 2474 NA NA NA
## 2475 NA NA NA
## 2476 NA NA NA
## 2477 NA NA NA
## 2478 NA NA NA
## 2479 NA NA NA
## 2480 NA NA NA
## 2481 NA NA NA
## 2482 NA NA NA
## 2483 NA NA NA
## 2484 NA NA NA
## 2485 NA NA NA
## 2486 NA NA NA
## 2487 NA NA NA
## 2488 NA NA NA
## 2489 NA NA NA
## 2490 NA NA NA
## 2491 NA NA NA
## 2492 NA NA NA
## 2493 NA NA NA
## 2494 NA NA NA
## 2495 NA NA NA
## 2496 NA NA NA
## 2497 NA NA NA
## 2498 NA NA NA
## 2499 NA NA NA
## 2500 NA NA NA
## 2501 NA NA NA
## 2502 NA NA NA
## 2503 NA NA NA
## 2504 NA NA NA
## 2505 NA NA NA
## 2506 NA NA NA
## 2507 NA NA NA
## 2508 NA NA NA
## 2509 NA NA NA
## 2510 NA NA NA
## 2511 NA NA NA
## 2512 NA NA NA
## 2513 NA NA NA
## 2514 NA NA NA
## 2515 NA NA NA
## 2516 NA NA NA
## 2517 NA NA NA
## 2518 NA NA NA
## 2519 NA NA NA
## 2520 NA NA NA
## 2521 NA NA NA
## 2522 NA NA NA
## 2523 NA NA NA
## 2524 NA NA NA
## 2525 NA NA NA
## 2526 NA NA NA
## 2527 NA NA NA
## 2528 NA NA NA
## 2529 NA NA NA
## 2530 NA NA NA
## 2531 NA NA NA
## 2532 NA NA NA
## 2533 NA NA NA
## 2534 NA NA NA
## 2535 NA NA NA
## 2536 NA NA NA
## 2537 NA NA NA
## 2538 NA NA NA
## 2539 NA NA NA
## 2540 NA NA NA
## 2541 NA NA NA
## 2542 NA NA NA
## 2543 NA NA NA
## 2544 NA NA NA
## 2545 NA NA NA
## 2546 NA NA NA
## 2547 NA NA NA
## 2548 NA NA NA
## 2549 NA NA NA
## 2550 NA NA NA
## 2551 NA NA NA
## 2552 NA NA NA
## 2553 NA NA NA
## 2554 NA NA NA
## 2555 NA NA NA
## 2556 NA NA NA
## 2557 NA NA NA
## 2558 NA NA NA
## 2559 NA NA NA
## 2560 NA NA NA
## 2561 NA NA NA
## 2562 NA NA NA
## 2563 NA NA NA
## 2564 NA NA NA
## 2565 NA NA NA
## 2566 NA NA NA
## 2567 NA NA NA
## 2568 NA NA NA
## 2569 NA NA NA
## 2570 NA NA NA
## 2571 NA NA NA
## 2572 NA NA NA
## 2573 NA NA NA
## 2574 NA NA NA
## 2575 NA NA NA
## 2576 NA NA NA
## 2577 NA NA NA
## 2578 NA NA NA
## 2579 NA NA NA
## 2580 NA NA NA
## 2581 NA NA NA
## 2582 NA NA NA
## 2583 NA NA NA
## 2584 NA NA NA
## 2585 NA NA NA
## 2586 NA NA NA
## 2587 NA NA NA
## 2588 NA NA NA
## 2589 NA NA NA
## 2590 NA NA NA
## 2591 NA NA NA
## 2592 NA NA NA
## 2593 NA NA NA
## 2594 NA NA NA
## 2595 NA NA NA
## 2596 NA NA NA
## 2597 NA NA NA
## 2598 NA NA NA
## 2599 NA NA NA
## 2600 NA NA NA
## 2601 NA NA NA
## 2602 NA NA NA
## 2603 NA NA NA
## 2604 NA NA NA
## 2605 NA NA NA
## 2606 NA NA NA
## 2607 NA NA NA
## 2608 NA NA NA
## 2609 NA NA NA
## 2610 NA NA NA
## 2611 NA NA NA
## 2612 NA NA NA
## 2613 NA NA NA
## 2614 NA NA NA
## 2615 NA NA NA
## 2616 NA NA NA
## 2617 NA NA NA
## 2618 NA NA NA
## 2619 NA NA NA
## 2620 NA NA NA
## 2621 NA NA NA
## 2622 NA NA NA
## 2623 NA NA NA
## 2624 NA NA NA
## 2625 NA NA NA
## 2626 NA NA NA
## 2627 NA NA NA
## 2628 NA NA NA
## 2629 NA NA NA
## 2630 NA NA NA
## 2631 NA NA NA
## 2632 NA NA NA
## 2633 NA NA NA
## 2634 NA NA NA
## 2635 NA NA NA
## 2636 NA NA NA
## 2637 NA NA NA
## 2638 NA NA NA
## 2639 NA NA NA
## 2640 NA NA NA
## 2641 NA NA NA
## 2642 NA NA NA
## 2643 NA NA NA
## 2644 NA NA NA
## 2645 NA NA NA
## 2646 NA NA NA
## 2647 NA NA NA
## 2648 NA NA NA
## 2649 NA NA NA
## 2650 NA NA NA
## 2651 NA NA NA
## 2652 NA NA NA
## 2653 NA NA NA
## 2654 NA NA NA
## 2655 NA NA NA
## 2656 NA NA NA
## 2657 NA NA NA
## 2658 NA NA NA
## 2659 NA NA NA
## 2660 NA NA NA
## 2661 NA NA NA
## 2662 NA NA NA
## 2663 NA NA NA
## 2664 NA NA NA
## 2665 NA NA NA
## 2666 NA NA NA
## 2667 NA NA NA
## 2668 NA NA NA
## 2669 NA NA NA
## 2670 NA NA NA
## 2671 NA NA NA
## 2672 NA NA NA
## 2673 NA NA NA
## 2674 NA NA NA
## 2675 NA NA NA
## 2676 NA NA NA
## 2677 NA NA NA
## 2678 NA NA NA
## 2679 NA NA NA
## 2680 NA NA NA
## 2681 NA NA NA
## 2682 NA NA NA
## 2683 NA NA NA
## 2684 NA NA NA
## 2685 NA NA NA
## 2686 NA NA NA
## 2687 NA NA NA
## 2688 NA NA NA
## 2689 NA NA NA
## 2690 NA NA NA
## 2691 NA NA NA
## 2692 NA NA NA
## 2693 NA NA NA
## 2694 NA NA NA
## 2695 NA NA NA
## 2696 NA NA NA
## 2697 NA NA NA
## 2698 NA NA NA
## 2699 NA NA NA
## 2700 NA NA NA
## 2701 NA NA NA
## 2702 NA NA NA
## 2703 NA NA NA
## 2704 NA NA NA
## 2705 NA NA NA
## 2706 NA NA NA
## 2707 NA NA NA
## 2708 NA NA NA
## 2709 NA NA NA
## 2710 NA NA NA
## 2711 NA NA NA
## 2712 NA NA NA
## 2713 NA NA NA
## 2714 NA NA NA
## 2715 NA NA NA
## 2716 NA NA NA
## 2717 NA NA NA
## 2718 NA NA NA
## 2719 NA NA NA
## 2720 NA NA NA
## 2721 NA NA NA
## 2722 NA NA NA
## 2723 NA NA NA
## 2724 NA NA NA
## 2725 NA NA NA
## 2726 NA NA NA
## 2727 NA NA NA
## 2728 NA NA NA
## 2729 NA NA NA
## 2730 NA NA NA
## 2731 NA NA NA
## 2732 NA NA NA
## 2733 NA NA NA
## 2734 NA NA NA
## 2735 NA NA NA
## 2736 NA NA NA
## 2737 NA NA NA
## 2738 NA NA NA
## 2739 NA NA NA
## 2740 NA NA NA
## 2741 NA NA NA
## 2742 NA NA NA
## 2743 NA NA NA
## 2744 NA NA NA
## 2745 NA NA NA
## 2746 NA NA NA
## 2747 NA NA NA
## 2748 NA NA NA
## 2749 NA NA NA
## 2750 NA NA NA
## 2751 NA NA NA
## 2752 NA NA NA
## 2753 NA NA NA
## 2754 NA NA NA
## 2755 NA NA NA
## 2756 NA NA NA
## 2757 NA NA NA
## 2758 NA NA NA
## 2759 NA NA NA
## 2760 NA NA NA
## 2761 NA NA NA
## 2762 NA NA NA
## 2763 NA NA NA
## 2764 NA NA NA
## 2765 NA NA NA
## 2766 NA NA NA
## 2767 NA NA NA
## 2768 NA NA NA
## 2769 NA NA NA
## 2770 NA NA NA
## 2771 NA NA NA
## 2772 NA NA NA
## 2773 NA NA NA
## 2774 NA NA NA
## 2775 NA NA NA
## 2776 NA NA NA
## 2777 NA NA NA
## 2778 NA NA NA
## 2779 NA NA NA
## 2780 NA NA NA
## 2781 NA NA NA
## 2782 NA NA NA
## 2783 NA NA NA
## 2784 NA NA NA
## 2785 NA NA NA
## 2786 NA NA NA
## 2787 NA NA NA
## 2788 NA NA NA
## 2789 NA NA NA
## 2790 NA NA NA
## 2791 NA NA NA
## 2792 NA NA NA
## 2793 NA NA NA
## 2794 NA NA NA
## 2795 NA NA NA
## 2796 NA NA NA
## 2797 NA NA NA
## 2798 NA NA NA
## 2799 NA NA NA
## 2800 NA NA NA
## 2801 NA NA NA
## 2802 NA NA NA
## 2803 NA NA NA
## 2804 NA NA NA
## 2805 NA NA NA
## 2806 NA NA NA
## 2807 NA NA NA
## 2808 NA NA NA
## 2809 NA NA NA
## 2810 NA NA NA
## 2811 NA NA NA
## 2812 NA NA NA
## 2813 NA NA NA
## 2814 NA NA NA
## 2815 NA NA NA
## 2816 NA NA NA
## 2817 NA NA NA
## 2818 NA NA NA
## 2819 NA NA NA
## 2820 NA NA NA
## 2821 NA NA NA
## 2822 NA NA NA
## 2823 NA NA NA
## 2824 NA NA NA
## 2825 NA NA NA
## 2826 NA NA NA
## 2827 NA NA NA
## 2828 NA NA NA
## 2829 NA NA NA
## 2830 NA NA NA
## 2831 NA NA NA
## 2832 NA NA NA
## 2833 NA NA NA
## 2834 NA NA NA
## 2835 NA NA NA
## 2836 NA NA NA
## 2837 NA NA NA
## 2838 NA NA NA
## 2839 NA NA NA
## 2840 NA NA NA
## 2841 NA NA NA
## 2842 NA NA NA
## 2843 NA NA NA
## 2844 NA NA NA
## 2845 NA NA NA
## 2846 NA NA NA
## 2847 NA NA NA
## 2848 NA NA NA
## 2849 NA NA NA
## 2850 NA NA NA
## 2851 NA NA NA
## 2852 NA NA NA
## 2853 NA NA NA
## 2854 NA NA NA
## 2855 NA NA NA
## 2856 NA NA NA
## 2857 NA NA NA
## 2858 NA NA NA
## 2859 NA NA NA
## 2860 NA NA NA
## 2861 NA NA NA
## 2862 NA NA NA
## 2863 NA NA NA
## 2864 NA NA NA
## 2865 NA NA NA
## 2866 NA NA NA
## 2867 NA NA NA
## 2868 NA NA NA
## 2869 NA NA NA
## 2870 NA NA NA
## 2871 NA NA NA
## 2872 NA NA NA
## 2873 NA NA NA
## 2874 NA NA NA
## 2875 NA NA NA
## 2876 NA NA NA
## 2877 NA NA NA
## 2878 NA NA NA
## 2879 NA NA NA
## 2880 NA NA NA
## 2881 NA NA NA
## 2882 NA NA NA
## 2883 NA NA NA
## 2884 NA NA NA
## 2885 NA NA NA
## 2886 NA NA NA
## 2887 NA NA NA
## 2888 NA NA NA
## 2889 NA NA NA
## 2890 NA NA NA
## 2891 NA NA NA
## 2892 NA NA NA
## 2893 NA NA NA
## 2894 NA NA NA
## 2895 NA NA NA
## 2896 NA NA NA
## 2897 NA NA NA
## 2898 NA NA NA
## 2899 NA NA NA
## 2900 NA NA NA
## 2901 NA NA NA
## 2902 NA NA NA
## 2903 NA NA NA
## 2904 NA NA NA
## 2905 NA NA NA
## 2906 NA NA NA
## 2907 NA NA NA
## 2908 NA NA NA
## 2909 NA NA NA
## 2910 NA NA NA
## 2911 NA NA NA
## 2912 NA NA NA
## 2913 NA NA NA
## 2914 NA NA NA
## 2915 NA NA NA
## 2916 NA NA NA
## 2917 NA NA NA
## 2918 NA NA NA
## 2919 NA NA NA
## 2920 NA NA NA
## 2921 NA NA NA
## 2922 NA NA NA
## 2923 NA NA NA
## 2924 NA NA NA
## 2925 NA NA NA
## 2926 NA NA NA
## 2927 NA NA NA
## 2928 NA NA NA
## 2929 NA NA NA
## 2930 NA NA NA
## 2931 NA NA NA
## 2932 NA NA NA
## 2933 NA NA NA
## 2934 NA NA NA
## 2935 NA NA NA
## 2936 NA NA NA
## 2937 NA NA NA
## 2938 NA NA NA
## 2939 NA NA NA
## 2940 NA NA NA
## 2941 NA NA NA
## 2942 NA NA NA
## 2943 NA NA NA
## 2944 NA NA NA
## 2945 NA NA NA
## 2946 NA NA NA
## 2947 NA NA NA
## 2948 NA NA NA
## 2949 NA NA NA
## 2950 NA NA NA
## 2951 NA NA NA
## 2952 NA NA NA
## 2953 NA NA NA
## 2954 NA NA NA
## 2955 NA NA NA
## 2956 NA NA NA
## 2957 NA NA NA
## 2958 NA NA NA
## 2959 NA NA NA
## 2960 NA NA NA
## 2961 NA NA NA
## 2962 NA NA NA
## 2963 NA NA NA
## 2964 NA NA NA
## 2965 NA NA NA
## 2966 NA NA NA
## 2967 NA NA NA
## 2968 NA NA NA
## 2969 NA NA NA
## 2970 NA NA NA
## 2971 NA NA NA
## 2972 NA NA NA
## 2973 NA NA NA
## 2974 NA NA NA
## 2975 NA NA NA
## 2976 NA NA NA
## 2977 NA NA NA
## 2978 NA NA NA
## 2979 NA NA NA
## 2980 NA NA NA
## 2981 NA NA NA
## 2982 NA NA NA
## 2983 NA NA NA
## 2984 NA NA NA
## 2985 NA NA NA
## 2986 NA NA NA
## 2987 NA NA NA
## 2988 NA NA NA
## 2989 NA NA NA
## 2990 NA NA NA
## 2991 NA NA NA
## 2992 NA NA NA
## 2993 NA NA NA
## 2994 NA NA NA
## 2995 NA NA NA
## 2996 NA NA NA
## 2997 NA NA NA
## 2998 NA NA NA
## 2999 NA NA NA
## 3000 NA NA NA
## 3001 NA NA NA
## 3002 NA NA NA
## 3003 NA NA NA
## 3004 NA NA NA
## 3005 NA NA NA
## 3006 NA NA NA
## 3007 NA NA NA
## 3008 NA NA NA
## 3009 NA NA NA
## 3010 NA NA NA
## 3011 NA NA NA
## 3012 NA NA NA
## 3013 NA NA NA
## 3014 NA NA NA
## 3015 NA NA NA
## 3016 NA NA NA
## 3017 NA NA NA
## 3018 NA NA NA
## 3019 NA NA NA
## 3020 NA NA NA
## 3021 NA NA NA
## 3022 NA NA NA
## 3023 NA NA NA
## 3024 NA NA NA
## 3025 NA NA NA
## 3026 NA NA NA
## 3027 NA NA NA
## 3028 NA NA NA
## 3029 NA NA NA
## 3030 NA NA NA
## 3031 NA NA NA
## 3032 NA NA NA
## 3033 NA NA NA
## 3034 NA NA NA
## 3035 NA NA NA
## 3036 NA NA NA
## 3037 NA NA NA
## 3038 NA NA NA
## 3039 NA NA NA
## 3040 NA NA NA
## 3041 NA NA NA
## 3042 NA NA NA
## 3043 NA NA NA
## 3044 NA NA NA
## 3045 NA NA NA
## 3046 NA NA NA
## 3047 NA NA NA
## 3048 NA NA NA
## 3049 NA NA NA
## 3050 NA NA NA
## 3051 NA NA NA
## 3052 NA NA NA
## 3053 NA NA NA
## 3054 NA NA NA
## 3055 NA NA NA
## 3056 NA NA NA
## 3057 NA NA NA
## 3058 NA NA NA
## 3059 NA NA NA
## 3060 NA NA NA
## 3061 NA NA NA
## 3062 NA NA NA
## 3063 NA NA NA
## 3064 NA NA NA
## 3065 NA NA NA
## 3066 NA NA NA
## 3067 NA NA NA
## 3068 NA NA NA
## 3069 NA NA NA
## 3070 NA NA NA
## 3071 NA NA NA
## 3072 NA NA NA
## 3073 NA NA NA
## 3074 NA NA NA
## 3075 NA NA NA
## 3076 NA NA NA
## 3077 NA NA NA
## 3078 NA NA NA
## 3079 NA NA NA
## 3080 NA NA NA
## 3081 NA NA NA
## 3082 NA NA NA
## 3083 NA NA NA
## 3084 NA NA NA
## 3085 NA NA NA
## 3086 NA NA NA
## 3087 NA NA NA
## 3088 NA NA NA
## 3089 NA NA NA
## 3090 NA NA NA
## 3091 NA NA NA
## 3092 NA NA NA
## 3093 NA NA NA
## 3094 NA NA NA
## 3095 NA NA NA
## 3096 NA NA NA
## 3097 NA NA NA
## 3098 NA NA NA
## 3099 NA NA NA
## 3100 NA NA NA
## 3101 NA NA NA
## 3102 NA NA NA
## 3103 NA NA NA
## 3104 NA NA NA
## 3105 NA NA NA
## 3106 NA NA NA
## 3107 NA NA NA
## 3108 NA NA NA
## 3109 NA NA NA
## 3110 NA NA NA
## 3111 NA NA NA
## 3112 NA NA NA
## 3113 NA NA NA
## 3114 NA NA NA
## 3115 NA NA NA
## 3116 NA NA NA
## 3117 NA NA NA
## 3118 NA NA NA
## 3119 NA NA NA
## 3120 NA NA NA
## 3121 NA NA NA
## 3122 NA NA NA
## 3123 NA NA NA
## 3124 NA NA NA
## 3125 NA NA NA
## 3126 NA NA NA
## 3127 NA NA NA
## 3128 NA NA NA
## 3129 NA NA NA
## 3130 NA NA NA
## 3131 NA NA NA
## 3132 NA NA NA
## 3133 NA NA NA
## 3134 NA NA NA
## 3135 NA NA NA
## 3136 NA NA NA
## 3137 NA NA NA
## 3138 NA NA NA
## 3139 NA NA NA
## 3140 NA NA NA
## 3141 NA NA NA
## 3142 NA NA NA
## 3143 NA NA NA
## 3144 NA NA NA
## 3145 NA NA NA
## 3146 NA NA NA
## 3147 NA NA NA
## 3148 NA NA NA
## 3149 NA NA NA
## 3150 NA NA NA
## 3151 NA NA NA
## 3152 NA NA NA
## 3153 NA NA NA
## 3154 NA NA NA
## 3155 NA NA NA
## 3156 NA NA NA
## 3157 NA NA NA
## 3158 NA NA NA
## 3159 NA NA NA
## 3160 NA NA NA
## 3161 NA NA NA
## 3162 NA NA NA
## 3163 NA NA NA
## 3164 NA NA NA
## 3165 NA NA NA
## 3166 NA NA NA
## 3167 NA NA NA
## 3168 NA NA NA
## 3169 NA NA NA
## 3170 NA NA NA
## 3171 NA NA NA
## 3172 NA NA NA
## 3173 NA NA NA
## 3174 NA NA NA
## 3175 NA NA NA
## 3176 NA NA NA
## 3177 NA NA NA
## 3178 NA NA NA
## 3179 NA NA NA
## 3180 NA NA NA
## 3181 NA NA NA
## 3182 NA NA NA
## 3183 NA NA NA
## 3184 NA NA NA
## 3185 NA NA NA
## 3186 NA NA NA
## 3187 NA NA NA
## 3188 NA NA NA
## 3189 NA NA NA
## 3190 NA NA NA
## 3191 NA NA NA
## 3192 NA NA NA
## 3193 NA NA NA
## 3194 NA NA NA
## 3195 NA NA NA
## 3196 NA NA NA
## 3197 NA NA NA
## 3198 NA NA NA
## 3199 NA NA NA
## 3200 NA NA NA
## 3201 NA NA NA
## 3202 NA NA NA
## 3203 NA NA NA
## 3204 NA NA NA
## 3205 NA NA NA
## 3206 NA NA NA
## 3207 NA NA NA
## 3208 NA NA NA
## 3209 NA NA NA
## 3210 NA NA NA
## 3211 NA NA NA
## 3212 NA NA NA
## 3213 NA NA NA
## 3214 NA NA NA
## 3215 NA NA NA
## 3216 NA NA NA
## 3217 NA NA NA
## 3218 NA NA NA
## 3219 NA NA NA
## 3220 NA NA NA
## 3221 NA NA NA
## 3222 NA NA NA
## 3223 NA NA NA
## 3224 NA NA NA
## 3225 NA NA NA
## 3226 NA NA NA
## 3227 NA NA NA
## 3228 NA NA NA
## 3229 NA NA NA
## 3230 NA NA NA
## 3231 NA NA NA
## 3232 NA NA NA
## 3233 NA NA NA
## 3234 NA NA NA
## 3235 NA NA NA
## 3236 NA NA NA
## 3237 NA NA NA
## 3238 NA NA NA
## 3239 NA NA NA
## 3240 NA NA NA
## 3241 NA NA NA
## 3242 NA NA NA
## 3243 NA NA NA
## 3244 NA NA NA
## 3245 NA NA NA
## 3246 NA NA NA
## 3247 NA NA NA
## 3248 NA NA NA
## 3249 NA NA NA
## 3250 NA NA NA
## 3251 NA NA NA
## 3252 NA NA NA
## 3253 NA NA NA
## 3254 NA NA NA
## 3255 NA NA NA
## 3256 NA NA NA
## 3257 NA NA NA
## 3258 NA NA NA
## 3259 NA NA NA
## 3260 NA NA NA
## 3261 NA NA NA
## 3262 NA NA NA
## 3263 NA NA NA
## 3264 NA NA NA
## 3265 NA NA NA
## 3266 NA NA NA
## 3267 NA NA NA
## 3268 NA NA NA
## 3269 NA NA NA
## 3270 NA NA NA
## 3271 NA NA NA
## 3272 NA NA NA
## 3273 NA NA NA
## 3274 NA NA NA
## 3275 NA NA NA
## 3276 NA NA NA
## 3277 NA NA NA
## 3278 NA NA NA
## 3279 NA NA NA
## 3280 NA NA NA
## 3281 NA NA NA
## 3282 NA NA NA
## 3283 NA NA NA
## 3284 NA NA NA
## 3285 NA NA NA
## 3286 NA NA NA
## 3287 NA NA NA
## 3288 NA NA NA
## 3289 NA NA NA
## 3290 NA NA NA
## 3291 NA NA NA
## 3292 NA NA NA
## 3293 NA NA NA
## 3294 NA NA NA
## 3295 NA NA NA
## 3296 NA NA NA
## 3297 NA NA NA
## 3298 NA NA NA
## 3299 NA NA NA
## 3300 NA NA NA
## 3301 NA NA NA
## 3302 NA NA NA
## 3303 NA NA NA
## 3304 NA NA NA
## 3305 NA NA NA
## 3306 NA NA NA
## 3307 NA NA NA
## 3308 NA NA NA
## 3309 NA NA NA
## 3310 NA NA NA
## 3311 NA NA NA
## 3312 NA NA NA
## 3313 NA NA NA
## 3314 NA NA NA
## 3315 NA NA NA
## 3316 NA NA NA
## 3317 NA NA NA
## 3318 NA NA NA
## 3319 NA NA NA
## 3320 NA NA NA
## 3321 NA NA NA
## 3322 NA NA NA
## 3323 NA NA NA
## 3324 NA NA NA
## 3325 NA NA NA
## 3326 NA NA NA
## 3327 NA NA NA
## 3328 NA NA NA
## 3329 NA NA NA
## 3330 NA NA NA
## 3331 NA NA NA
## 3332 NA NA NA
## 3333 NA NA NA
## 3334 NA NA NA
## 3335 NA NA NA
## 3336 NA NA NA
## 3337 NA NA NA
## 3338 NA NA NA
## 3339 NA NA NA
## 3340 NA NA NA
## 3341 NA NA NA
## 3342 NA NA NA
## 3343 NA NA NA
## 3344 NA NA NA
## 3345 NA NA NA
## 3346 NA NA NA
## 3347 NA NA NA
## 3348 NA NA NA
## 3349 NA NA NA
## 3350 NA NA NA
## 3351 NA NA NA
## 3352 NA NA NA
## 3353 NA NA NA
## 3354 NA NA NA
## 3355 NA NA NA
## 3356 NA NA NA
## 3357 NA NA NA
## 3358 NA NA NA
## 3359 NA NA NA
## 3360 NA NA NA
## 3361 NA NA NA
## 3362 NA NA NA
## 3363 NA NA NA
## 3364 NA NA NA
## 3365 NA NA NA
## 3366 NA NA NA
## 3367 NA NA NA
## 3368 NA NA NA
## 3369 NA NA NA
## 3370 NA NA NA
## 3371 NA NA NA
## 3372 NA NA NA
## 3373 NA NA NA
## 3374 NA NA NA
## 3375 NA NA NA
## 3376 NA NA NA
## 3377 NA NA NA
## 3378 NA NA NA
## 3379 NA NA NA
## 3380 NA NA NA
## 3381 NA NA NA
## 3382 NA NA NA
## 3383 NA NA NA
## 3384 NA NA NA
## 3385 NA NA NA
## 3386 NA NA NA
## 3387 NA NA NA
## 3388 NA NA NA
## 3389 NA NA NA
## 3390 NA NA NA
## 3391 NA NA NA
## 3392 NA NA NA
## 3393 NA NA NA
## 3394 NA NA NA
## 3395 NA NA NA
## 3396 NA NA NA
## 3397 NA NA NA
## 3398 NA NA NA
## 3399 NA NA NA
## 3400 NA NA NA
## 3401 NA NA NA
## 3402 NA NA NA
## 3403 NA NA NA
## 3404 NA NA NA
## 3405 NA NA NA
## 3406 NA NA NA
## 3407 NA NA NA
## 3408 NA NA NA
## 3409 NA NA NA
## 3410 NA NA NA
## 3411 NA NA NA
## 3412 NA NA NA
## 3413 NA NA NA
## 3414 NA NA NA
## 3415 NA NA NA
## 3416 NA NA NA
## 3417 NA NA NA
## 3418 NA NA NA
## 3419 NA NA NA
## 3420 NA NA NA
## 3421 NA NA NA
## 3422 NA NA NA
## 3423 NA NA NA
## 3424 NA NA NA
## 3425 NA NA NA
## 3426 NA NA NA
## 3427 NA NA NA
## 3428 NA NA NA
## 3429 NA NA NA
## 3430 NA NA NA
## 3431 NA NA NA
## 3432 NA NA NA
## 3433 NA NA NA
## 3434 NA NA NA
## 3435 NA NA NA
## 3436 NA NA NA
## 3437 NA NA NA
## 3438 NA NA NA
## 3439 NA NA NA
## 3440 NA NA NA
## 3441 NA NA NA
## 3442 NA NA NA
## 3443 NA NA NA
## 3444 NA NA NA
## 3445 NA NA NA
## 3446 NA NA NA
## 3447 NA NA NA
## 3448 NA NA NA
## 3449 NA NA NA
## 3450 NA NA NA
## 3451 NA NA NA
## 3452 NA NA NA
## 3453 NA NA NA
## 3454 NA NA NA
## 3455 NA NA NA
## 3456 NA NA NA
## 3457 NA NA NA
## 3458 NA NA NA
## 3459 NA NA NA
## 3460 NA NA NA
## 3461 NA NA NA
## 3462 NA NA NA
## 3463 NA NA NA
## 3464 NA NA NA
## 3465 NA NA NA
## 3466 NA NA NA
## 3467 NA NA NA
## 3468 NA NA NA
## 3469 NA NA NA
## 3470 NA NA NA
## 3471 NA NA NA
## 3472 NA NA NA
## 3473 NA NA NA
## 3474 NA NA NA
## 3475 NA NA NA
## 3476 NA NA NA
## 3477 NA NA NA
## 3478 NA NA NA
## 3479 NA NA NA
## 3480 NA NA NA
## 3481 NA NA NA
## 3482 NA NA NA
## 3483 NA NA NA
## 3484 NA NA NA
## 3485 NA NA NA
## 3486 NA NA NA
## 3487 NA NA NA
## 3488 NA NA NA
## 3489 NA NA NA
## 3490 NA NA NA
## 3491 NA NA NA
## 3492 NA NA NA
## 3493 NA NA NA
## 3494 NA NA NA
## 3495 NA NA NA
## 3496 NA NA NA
## 3497 NA NA NA
## 3498 NA NA NA
## 3499 NA NA NA
## 3500 NA NA NA
## 3501 NA NA NA
## 3502 NA NA NA
## 3503 NA NA NA
## 3504 NA NA NA
## 3505 NA NA NA
## 3506 NA NA NA
## 3507 NA NA NA
## 3508 NA NA NA
## 3509 NA NA NA
## 3510 NA NA NA
## 3511 NA NA NA
## 3512 NA NA NA
## 3513 NA NA NA
## 3514 NA NA NA
## 3515 NA NA NA
## 3516 NA NA NA
## 3517 NA NA NA
## 3518 NA NA NA
## 3519 NA NA NA
## 3520 NA NA NA
## 3521 NA NA NA
## 3522 NA NA NA
## 3523 NA NA NA
## 3524 NA NA NA
## 3525 NA NA NA
## 3526 NA NA NA
## 3527 NA NA NA
## 3528 NA NA NA
## 3529 NA NA NA
## 3530 NA NA NA
## 3531 NA NA NA
## 3532 NA NA NA
## 3533 NA NA NA
## 3534 NA NA NA
## 3535 NA NA NA
## 3536 NA NA NA
## 3537 NA NA NA
## 3538 NA NA NA
## 3539 NA NA NA
## 3540 NA NA NA
## 3541 NA NA NA
## 3542 NA NA NA
## 3543 NA NA NA
## 3544 NA NA NA
## 3545 NA NA NA
## 3546 NA NA NA
## 3547 NA NA NA
## 3548 NA NA NA
## 3549 NA NA NA
## 3550 NA NA NA
## 3551 NA NA NA
## 3552 NA NA NA
## 3553 NA NA NA
## 3554 NA NA NA
## 3555 NA NA NA
## 3556 NA NA NA
## 3557 NA NA NA
## 3558 NA NA NA
## 3559 NA NA NA
## 3560 NA NA NA
## 3561 NA NA NA
## 3562 NA NA NA
## 3563 NA NA NA
## 3564 NA NA NA
## 3565 NA NA NA
## 3566 NA NA NA
## 3567 NA NA NA
## 3568 NA NA NA
## 3569 NA NA NA
## 3570 NA NA NA
## 3571 NA NA NA
## 3572 NA NA NA
## 3573 NA NA NA
## 3574 NA NA NA
## 3575 NA NA NA
## 3576 NA NA NA
## 3577 NA NA NA
## 3578 NA NA NA
## 3579 NA NA NA
## 3580 NA NA NA
## 3581 NA NA NA
## 3582 NA NA NA
## 3583 NA NA NA
## 3584 NA NA NA
## 3585 NA NA NA
## 3586 NA NA NA
## 3587 NA NA NA
## 3588 NA NA NA
## 3589 NA NA NA
## 3590 NA NA NA
## 3591 NA NA NA
## 3592 NA NA NA
## 3593 NA NA NA
## 3594 NA NA NA
## 3595 NA NA NA
## 3596 NA NA NA
## 3597 NA NA NA
## 3598 NA NA NA
## 3599 NA NA NA
## 3600 NA NA NA
## 3601 NA NA NA
## 3602 NA NA NA
## 3603 NA NA NA
## 3604 NA NA NA
## 3605 NA NA NA
## 3606 NA NA NA
## 3607 NA NA NA
## 3608 NA NA NA
## 3609 NA NA NA
## 3610 NA NA NA
## 3611 NA NA NA
## 3612 NA NA NA
## 3613 NA NA NA
## 3614 NA NA NA
## 3615 NA NA NA
## 3616 NA NA NA
## 3617 NA NA NA
## 3618 NA NA NA
## 3619 NA NA NA
## 3620 NA NA NA
## 3621 NA NA NA
## 3622 NA NA NA
## 3623 NA NA NA
## 3624 NA NA NA
## 3625 NA NA NA
## 3626 NA NA NA
## 3627 NA NA NA
## 3628 NA NA NA
## 3629 NA NA NA
## 3630 NA NA NA
## 3631 NA NA NA
## 3632 NA NA NA
## 3633 NA NA NA
## 3634 NA NA NA
## 3635 NA NA NA
## 3636 NA NA NA
## 3637 NA NA NA
## 3638 NA NA NA
## 3639 NA NA NA
## 3640 NA NA NA
## 3641 NA NA NA
## 3642 NA NA NA
## 3643 NA NA NA
## 3644 NA NA NA
## 3645 NA NA NA
## 3646 NA NA NA
## 3647 NA NA NA
## 3648 NA NA NA
## 3649 NA NA NA
## 3650 NA NA NA
## 3651 NA NA NA
## 3652 NA NA NA
## 3653 NA NA NA
## 3654 NA NA NA
## 3655 NA NA NA
## 3656 NA NA NA
## 3657 NA NA NA
## 3658 NA NA NA
## 3659 NA NA NA
## 3660 NA NA NA
## 3661 NA NA NA
## 3662 NA NA NA
## 3663 NA NA NA
## 3664 NA NA NA
## 3665 NA NA NA
## 3666 NA NA NA
## 3667 NA NA NA
## 3668 NA NA NA
## 3669 NA NA NA
## 3670 NA NA NA
## 3671 NA NA NA
## 3672 NA NA NA
## 3673 NA NA NA
## 3674 NA NA NA
## 3675 NA NA NA
## 3676 NA NA NA
## 3677 NA NA NA
## 3678 NA NA NA
## 3679 NA NA NA
## 3680 NA NA NA
## 3681 NA NA NA
## 3682 NA NA NA
## 3683 NA NA NA
## 3684 NA NA NA
## 3685 NA NA NA
## 3686 NA NA NA
## 3687 NA NA NA
## 3688 NA NA NA
## 3689 NA NA NA
## 3690 NA NA NA
## 3691 NA NA NA
## 3692 NA NA NA
## 3693 NA NA NA
## 3694 NA NA NA
## 3695 NA NA NA
## 3696 NA NA NA
## 3697 NA NA NA
## 3698 NA NA NA
## 3699 NA NA NA
## 3700 NA NA NA
## 3701 NA NA NA
## 3702 NA NA NA
## 3703 NA NA NA
## 3704 NA NA NA
## 3705 NA NA NA
## 3706 NA NA NA
## 3707 NA NA NA
## 3708 NA NA NA
## 3709 NA NA NA
## 3710 NA NA NA
## 3711 NA NA NA
## 3712 NA NA NA
## 3713 NA NA NA
## 3714 NA NA NA
## 3715 NA NA NA
## 3716 NA NA NA
## 3717 NA NA NA
## 3718 NA NA NA
## 3719 NA NA NA
## 3720 NA NA NA
## 3721 NA NA NA
## 3722 NA NA NA
## 3723 NA NA NA
## 3724 NA NA NA
## 3725 NA NA NA
## 3726 NA NA NA
## 3727 NA NA NA
## 3728 NA NA NA
## 3729 NA NA NA
## 3730 NA NA NA
## 3731 NA NA NA
## 3732 NA NA NA
## 3733 NA NA NA
## 3734 NA NA NA
## 3735 NA NA NA
## 3736 NA NA NA
## 3737 NA NA NA
## 3738 NA NA NA
## 3739 NA NA NA
## 3740 NA NA NA
## 3741 NA NA NA
## 3742 NA NA NA
## 3743 NA NA NA
## 3744 NA NA NA
## 3745 NA NA NA
## 3746 NA NA NA
## 3747 NA NA NA
## 3748 NA NA NA
## 3749 NA NA NA
## 3750 NA NA NA
## 3751 NA NA NA
## 3752 NA NA NA
## 3753 NA NA NA
## 3754 NA NA NA
## 3755 NA NA NA
## 3756 NA NA NA
## 3757 NA NA NA
## 3758 NA NA NA
## 3759 NA NA NA
## 3760 NA NA NA
## 3761 NA NA NA
## 3762 NA NA NA
## 3763 NA NA NA
## 3764 NA NA NA
## 3765 NA NA NA
## 3766 NA NA NA
## 3767 NA NA NA
## 3768 NA NA NA
## 3769 NA NA NA
## 3770 NA NA NA
## 3771 NA NA NA
## 3772 NA NA NA
## 3773 NA NA NA
## 3774 NA NA NA
## 3775 NA NA NA
## 3776 NA NA NA
## 3777 NA NA NA
## 3778 NA NA NA
## 3779 NA NA NA
## 3780 NA NA NA
## 3781 NA NA NA
## 3782 NA NA NA
## 3783 NA NA NA
## 3784 NA NA NA
## 3785 NA NA NA
## 3786 NA NA NA
## 3787 NA NA NA
## 3788 NA NA NA
## 3789 NA NA NA
## 3790 NA NA NA
## 3791 NA NA NA
## 3792 NA NA NA
## 3793 NA NA NA
## 3794 NA NA NA
## 3795 NA NA NA
## 3796 NA NA NA
## 3797 NA NA NA
## 3798 NA NA NA
## 3799 NA NA NA
## 3800 NA NA NA
## 3801 NA NA NA
## 3802 NA NA NA
## 3803 NA NA NA
## 3804 NA NA NA
## 3805 NA NA NA
## 3806 NA NA NA
## 3807 NA NA NA
## 3808 NA NA NA
## 3809 NA NA NA
## 3810 NA NA NA
## 3811 NA NA NA
## 3812 NA NA NA
## 3813 NA NA NA
## 3814 NA NA NA
## 3815 NA NA NA
## 3816 NA NA NA
## 3817 NA NA NA
## 3818 NA NA NA
## 3819 NA NA NA
## 3820 NA NA NA
## 3821 NA NA NA
## 3822 NA NA NA
## 3823 NA NA NA
## 3824 NA NA NA
## 3825 NA NA NA
## 3826 NA NA NA
## 3827 NA NA NA
## 3828 NA NA NA
## 3829 NA NA NA
## 3830 NA NA NA
## 3831 NA NA NA
## 3832 NA NA NA
## 3833 NA NA NA
## 3834 NA NA NA
## 3835 NA NA NA
## 3836 NA NA NA
## 3837 NA NA NA
## 3838 NA NA NA
## 3839 NA NA NA
## 3840 NA NA NA
## 3841 NA NA NA
## 3842 NA NA NA
## 3843 NA NA NA
## 3844 NA NA NA
## 3845 NA NA NA
## 3846 NA NA NA
## 3847 NA NA NA
## 3848 NA NA NA
## 3849 NA NA NA
## 3850 NA NA NA
## 3851 NA NA NA
## 3852 NA NA NA
## 3853 NA NA NA
## 3854 NA NA NA
## 3855 NA NA NA
## 3856 NA NA NA
## 3857 NA NA NA
## 3858 NA NA NA
## 3859 NA NA NA
## 3860 NA NA NA
## 3861 NA NA NA
## 3862 NA NA NA
## 3863 NA NA NA
## 3864 NA NA NA
## 3865 NA NA NA
## 3866 NA NA NA
## 3867 NA NA NA
## 3868 NA NA NA
## 3869 NA NA NA
## 3870 NA NA NA
## 3871 NA NA NA
## 3872 NA NA NA
## 3873 NA NA NA
## 3874 NA NA NA
## 3875 NA NA NA
## 3876 NA NA NA
## 3877 NA NA NA
## 3878 NA NA NA
## 3879 NA NA NA
## 3880 NA NA NA
## 3881 NA NA NA
## 3882 NA NA NA
## 3883 NA NA NA
## 3884 NA NA NA
## 3885 NA NA NA
## 3886 NA NA NA
## 3887 NA NA NA
## 3888 NA NA NA
## 3889 NA NA NA
## 3890 NA NA NA
## 3891 NA NA NA
## 3892 NA NA NA
## 3893 NA NA NA
## 3894 NA NA NA
## 3895 NA NA NA
## 3896 NA NA NA
## 3897 NA NA NA
## 3898 NA NA NA
## 3899 NA NA NA
## 3900 NA NA NA
## 3901 NA NA NA
## 3902 NA NA NA
## 3903 NA NA NA
## 3904 NA NA NA
## 3905 NA NA NA
## 3906 NA NA NA
## 3907 NA NA NA
## 3908 NA NA NA
## 3909 NA NA NA
## 3910 NA NA NA
## 3911 NA NA NA
## 3912 NA NA NA
## 3913 NA NA NA
## 3914 NA NA NA
## 3915 NA NA NA
## 3916 NA NA NA
## 3917 NA NA NA
## 3918 NA NA NA
## 3919 NA NA NA
## 3920 NA NA NA
## 3921 NA NA NA
## 3922 NA NA NA
## 3923 NA NA NA
## 3924 NA NA NA
## 3925 NA NA NA
## 3926 NA NA NA
## 3927 NA NA NA
## 3928 NA NA NA
## 3929 NA NA NA
## 3930 NA NA NA
## 3931 NA NA NA
## 3932 NA NA NA
## 3933 NA NA NA
## 3934 NA NA NA
## 3935 NA NA NA
## 3936 NA NA NA
## 3937 NA NA NA
## 3938 NA NA NA
## 3939 NA NA NA
## 3940 NA NA NA
## 3941 NA NA NA
## 3942 NA NA NA
## 3943 NA NA NA
## 3944 NA NA NA
## 3945 NA NA NA
## 3946 NA NA NA
## 3947 NA NA NA
## 3948 NA NA NA
## 3949 NA NA NA
## 3950 NA NA NA
## 3951 NA NA NA
## 3952 NA NA NA
## 3953 NA NA NA
## 3954 NA NA NA
## 3955 NA NA NA
## 3956 NA NA NA
## 3957 NA NA NA
## 3958 NA NA NA
## 3959 NA NA NA
## 3960 NA NA NA
## 3961 NA NA NA
## 3962 NA NA NA
## 3963 NA NA NA
## 3964 NA NA NA
## 3965 NA NA NA
## 3966 NA NA NA
## 3967 NA NA NA
## 3968 NA NA NA
## 3969 NA NA NA
## 3970 NA NA NA
## 3971 NA NA NA
## 3972 NA NA NA
## 3973 NA NA NA
## 3974 NA NA NA
## 3975 NA NA NA
## 3976 NA NA NA
## 3977 NA NA NA
## 3978 NA NA NA
## 3979 NA NA NA
## 3980 NA NA NA
## 3981 NA NA NA
## 3982 NA NA NA
## 3983 NA NA NA
## 3984 NA NA NA
## 3985 NA NA NA
## 3986 NA NA NA
## 3987 NA NA NA
## 3988 NA NA NA
## 3989 NA NA NA
## 3990 NA NA NA
## 3991 NA NA NA
## 3992 NA NA NA
## 3993 NA NA NA
## 3994 NA NA NA
## 3995 NA NA NA
## 3996 NA NA NA
## 3997 NA NA NA
## 3998 NA NA NA
## 3999 NA NA NA
## 4000 NA NA NA
## 4001 NA NA NA
## 4002 NA NA NA
## 4003 NA NA NA
## 4004 NA NA NA
## 4005 NA NA NA
## 4006 NA NA NA
## 4007 NA NA NA
## 4008 NA NA NA
## 4009 NA NA NA
## 4010 NA NA NA
## 4011 NA NA NA
## 4012 NA NA NA
## 4013 NA NA NA
## 4014 NA NA NA
## 4015 NA NA NA
## 4016 NA NA NA
## 4017 NA NA NA
## 4018 NA NA NA
## 4019 NA NA NA
## 4020 NA NA NA
## 4021 NA NA NA
## 4022 NA NA NA
## 4023 NA NA NA
## 4024 NA NA NA
## 4025 NA NA NA
## 4026 NA NA NA
## 4027 NA NA NA
## 4028 NA NA NA
## 4029 NA NA NA
## 4030 NA NA NA
## 4031 NA NA NA
## 4032 NA NA NA
## 4033 NA NA NA
## 4034 NA NA NA
## 4035 NA NA NA
## 4036 NA NA NA
## 4037 NA NA NA
## 4038 NA NA NA
## 4039 NA NA NA
## 4040 NA NA NA
## 4041 NA NA NA
## 4042 NA NA NA
## 4043 NA NA NA
## 4044 NA NA NA
## 4045 NA NA NA
## 4046 NA NA NA
## 4047 NA NA NA
## 4048 NA NA NA
## 4049 NA NA NA
## 4050 NA NA NA
## 4051 NA NA NA
## 4052 NA NA NA
## 4053 NA NA NA
## 4054 NA NA NA
## 4055 NA NA NA
## 4056 NA NA NA
## 4057 NA NA NA
## 4058 NA NA NA
## 4059 NA NA NA
## 4060 NA NA NA
## 4061 NA NA NA
## 4062 NA NA NA
## 4063 NA NA NA
## 4064 NA NA NA
## 4065 NA NA NA
## 4066 NA NA NA
## 4067 NA NA NA
## 4068 NA NA NA
## 4069 NA NA NA
## 4070 NA NA NA
## 4071 NA NA NA
## 4072 NA NA NA
## 4073 NA NA NA
## 4074 NA NA NA
## 4075 NA NA NA
## 4076 NA NA NA
## 4077 NA NA NA
## 4078 NA NA NA
## 4079 NA NA NA
## 4080 NA NA NA
## 4081 NA NA NA
## 4082 NA NA NA
## 4083 NA NA NA
## 4084 NA NA NA
## 4085 NA NA NA
## 4086 NA NA NA
## 4087 NA NA NA
## 4088 NA NA NA
## 4089 NA NA NA
## 4090 NA NA NA
## 4091 NA NA NA
## 4092 NA NA NA
## 4093 NA NA NA
## 4094 NA NA NA
## 4095 NA NA NA
## 4096 NA NA NA
## 4097 NA NA NA
## 4098 NA NA NA
## 4099 NA NA NA
## 4100 NA NA NA
## 4101 NA NA NA
## 4102 NA NA NA
## 4103 NA NA NA
## 4104 NA NA NA
## 4105 NA NA NA
## 4106 NA NA NA
## 4107 NA NA NA
## 4108 NA NA NA
## 4109 NA NA NA
## 4110 NA NA NA
## 4111 NA NA NA
## 4112 NA NA NA
## 4113 NA NA NA
## 4114 NA NA NA
## 4115 NA NA NA
## 4116 NA NA NA
## 4117 NA NA NA
## 4118 NA NA NA
## 4119 NA NA NA
## 4120 NA NA NA
## 4121 NA NA NA
## 4122 NA NA NA
## 4123 NA NA NA
## 4124 NA NA NA
## 4125 NA NA NA
## 4126 NA NA NA
## 4127 NA NA NA
## 4128 NA NA NA
## 4129 NA NA NA
## 4130 NA NA NA
## 4131 NA NA NA
## 4132 NA NA NA
## 4133 NA NA NA
## 4134 NA NA NA
## 4135 NA NA NA
## 4136 NA NA NA
## 4137 NA NA NA
## 4138 NA NA NA
## 4139 NA NA NA
## 4140 NA NA NA
## 4141 NA NA NA
## 4142 NA NA NA
## 4143 NA NA NA
## 4144 NA NA NA
## 4145 NA NA NA
## 4146 NA NA NA
## 4147 NA NA NA
## 4148 NA NA NA
## 4149 NA NA NA
## 4150 NA NA NA
## 4151 NA NA NA
## 4152 NA NA NA
## 4153 NA NA NA
## 4154 NA NA NA
## 4155 NA NA NA
## 4156 NA NA NA
## 4157 NA NA NA
## 4158 NA NA NA
## 4159 NA NA NA
## 4160 NA NA NA
## 4161 NA NA NA
## 4162 NA NA NA
## 4163 NA NA NA
## 4164 NA NA NA
## 4165 NA NA NA
## 4166 NA NA NA
## 4167 NA NA NA
## 4168 NA NA NA
## 4169 NA NA NA
## 4170 NA NA NA
## 4171 NA NA NA
## 4172 NA NA NA
## 4173 NA NA NA
## 4174 NA NA NA
## 4175 NA NA NA
## 4176 NA NA NA
## 4177 NA NA NA
## 4178 NA NA NA
## 4179 NA NA NA
## 4180 NA NA NA
## 4181 NA NA NA
## 4182 NA NA NA
## 4183 NA NA NA
## 4184 NA NA NA
## 4185 NA NA NA
## 4186 NA NA NA
## 4187 NA NA NA
## 4188 NA NA NA
## 4189 NA NA NA
## 4190 NA NA NA
## 4191 NA NA NA
## 4192 NA NA NA
## 4193 NA NA NA
## 4194 NA NA NA
## 4195 NA NA NA
## 4196 NA NA NA
## 4197 NA NA NA
## 4198 NA NA NA
## 4199 NA NA NA
## 4200 NA NA NA
## 4201 NA NA NA
## 4202 NA NA NA
## 4203 NA NA NA
## 4204 NA NA NA
## 4205 NA NA NA
## 4206 NA NA NA
## 4207 NA NA NA
## 4208 NA NA NA
## 4209 NA NA NA
## 4210 NA NA NA
## 4211 NA NA NA
## 4212 NA NA NA
## 4213 NA NA NA
## 4214 NA NA NA
## 4215 NA NA NA
## 4216 NA NA NA
## 4217 NA NA NA
## 4218 NA NA NA
## 4219 NA NA NA
## 4220 NA NA NA
## 4221 NA NA NA
## 4222 NA NA NA
## 4223 NA NA NA
## 4224 NA NA NA
## 4225 NA NA NA
## 4226 NA NA NA
## 4227 NA NA NA
## 4228 NA NA NA
## 4229 NA NA NA
## 4230 NA NA NA
## 4231 NA NA NA
## 4232 NA NA NA
## 4233 NA NA NA
## 4234 NA NA NA
## 4235 NA NA NA
## 4236 NA NA NA
## 4237 NA NA NA
## 4238 NA NA NA
## 4239 NA NA NA
## 4240 NA NA NA
## 4241 NA NA NA
## 4242 NA NA NA
## 4243 NA NA NA
## 4244 NA NA NA
## 4245 NA NA NA
## 4246 NA NA NA
## 4247 NA NA NA
## 4248 NA NA NA
## 4249 NA NA NA
## 4250 NA NA NA
## 4251 NA NA NA
## 4252 NA NA NA
## 4253 NA NA NA
## 4254 NA NA NA
## 4255 NA NA NA
## 4256 NA NA NA
## 4257 NA NA NA
## 4258 NA NA NA
## 4259 NA NA NA
## 4260 NA NA NA
## 4261 NA NA NA
## 4262 NA NA NA
## 4263 NA NA NA
## 4264 NA NA NA
## 4265 NA NA NA
## 4266 NA NA NA
## 4267 NA NA NA
## 4268 NA NA NA
## 4269 NA NA NA
## 4270 NA NA NA
## 4271 NA NA NA
## 4272 NA NA NA
## 4273 NA NA NA
## 4274 NA NA NA
## 4275 NA NA NA
## 4276 NA NA NA
## 4277 NA NA NA
## 4278 NA NA NA
## 4279 NA NA NA
## 4280 NA NA NA
## 4281 NA NA NA
## 4282 NA NA NA
## 4283 NA NA NA
## 4284 NA NA NA
## 4285 NA NA NA
## 4286 NA NA NA
## 4287 NA NA NA
## 4288 NA NA NA
## 4289 NA NA NA
## 4290 NA NA NA
## 4291 NA NA NA
## 4292 NA NA NA
## 4293 NA NA NA
## 4294 NA NA NA
## 4295 NA NA NA
## 4296 NA NA NA
## 4297 NA NA NA
## 4298 NA NA NA
## 4299 NA NA NA
## 4300 NA NA NA
## 4301 NA NA NA
## 4302 NA NA NA
## 4303 NA NA NA
## 4304 NA NA NA
## 4305 NA NA NA
## 4306 NA NA NA
## 4307 NA NA NA
## 4308 NA NA NA
## 4309 NA NA NA
## 4310 NA NA NA
## 4311 NA NA NA
## 4312 NA NA NA
## 4313 NA NA NA
## 4314 NA NA NA
## 4315 NA NA NA
## 4316 NA NA NA
## 4317 NA NA NA
## 4318 NA NA NA
## 4319 NA NA NA
## 4320 NA NA NA
## 4321 NA NA NA
## 4322 NA NA NA
## 4323 NA NA NA
## 4324 NA NA NA
## 4325 NA NA NA
## 4326 NA NA NA
## 4327 NA NA NA
## 4328 NA NA NA
## 4329 NA NA NA
## 4330 NA NA NA
## 4331 NA NA NA
## 4332 NA NA NA
## 4333 NA NA NA
## 4334 NA NA NA
## 4335 NA NA NA
## 4336 NA NA NA
## 4337 NA NA NA
## 4338 NA NA NA
## 4339 NA NA NA
## 4340 NA NA NA
## 4341 NA NA NA
## 4342 NA NA NA
## 4343 NA NA NA
## 4344 NA NA NA
## 4345 NA NA NA
## 4346 NA NA NA
## 4347 NA NA NA
## 4348 NA NA NA
## 4349 NA NA NA
## 4350 NA NA NA
## 4351 NA NA NA
## 4352 NA NA NA
## 4353 NA NA NA
## 4354 NA NA NA
## 4355 NA NA NA
## 4356 NA NA NA
## 4357 NA NA NA
## 4358 NA NA NA
## 4359 NA NA NA
## 4360 NA NA NA
## 4361 NA NA NA
## 4362 NA NA NA
## 4363 NA NA NA
## 4364 NA NA NA
## 4365 NA NA NA
## 4366 NA NA NA
## 4367 NA NA NA
## 4368 NA NA NA
## 4369 NA NA NA
## 4370 NA NA NA
## 4371 NA NA NA
## 4372 NA NA NA
## 4373 NA NA NA
## 4374 NA NA NA
## 4375 NA NA NA
## 4376 NA NA NA
## 4377 NA NA NA
## 4378 NA NA NA
## 4379 NA NA NA
## 4380 NA NA NA
## 4381 NA NA NA
## 4382 NA NA NA
## 4383 NA NA NA
## 4384 NA NA NA
## 4385 NA NA NA
## 4386 NA NA NA
## 4387 NA NA NA
## 4388 NA NA NA
## 4389 NA NA NA
## 4390 NA NA NA
## 4391 NA NA NA
## 4392 NA NA NA
## 4393 NA NA NA
## 4394 NA NA NA
## 4395 NA NA NA
## 4396 NA NA NA
## 4397 NA NA NA
## 4398 NA NA NA
## 4399 NA NA NA
## 4400 NA NA NA
## 4401 NA NA NA
## 4402 NA NA NA
## 4403 NA NA NA
## 4404 NA NA NA
## 4405 NA NA NA
## 4406 NA NA NA
## 4407 NA NA NA
## 4408 NA NA NA
## 4409 NA NA NA
## 4410 NA NA NA
## 4411 NA NA NA
## 4412 NA NA NA
## 4413 NA NA NA
## 4414 NA NA NA
## 4415 NA NA NA
## 4416 NA NA NA
## 4417 NA NA NA
## 4418 NA NA NA
## 4419 NA NA NA
## 4420 NA NA NA
## 4421 NA NA NA
## 4422 NA NA NA
## 4423 NA NA NA
## 4424 NA NA NA
## 4425 NA NA NA
## 4426 NA NA NA
## 4427 NA NA NA
## 4428 NA NA NA
## 4429 NA NA NA
## 4430 NA NA NA
## 4431 NA NA NA
## 4432 NA NA NA
## 4433 NA NA NA
## 4434 NA NA NA
## 4435 NA NA NA
## 4436 NA NA NA
## 4437 NA NA NA
## 4438 NA NA NA
## 4439 NA NA NA
## 4440 NA NA NA
## 4441 NA NA NA
## 4442 NA NA NA
## 4443 NA NA NA
## 4444 NA NA NA
## 4445 NA NA NA
## 4446 NA NA NA
## 4447 NA NA NA
## 4448 NA NA NA
## 4449 NA NA NA
## 4450 NA NA NA
## 4451 NA NA NA
## 4452 NA NA NA
## 4453 NA NA NA
## 4454 NA NA NA
## 4455 NA NA NA
## 4456 NA NA NA
## 4457 NA NA NA
## 4458 NA NA NA
## 4459 NA NA NA
## 4460 NA NA NA
## 4461 NA NA NA
## 4462 NA NA NA
## 4463 NA NA NA
## 4464 NA NA NA
## 4465 NA NA NA
## 4466 NA NA NA
## 4467 NA NA NA
## 4468 NA NA NA
## 4469 NA NA NA
## 4470 NA NA NA
## 4471 NA NA NA
## 4472 NA NA NA
## 4473 NA NA NA
## 4474 NA NA NA
## 4475 NA NA NA
## 4476 NA NA NA
## 4477 NA NA NA
## 4478 NA NA NA
## 4479 NA NA NA
## 4480 NA NA NA
## 4481 NA NA NA
## 4482 NA NA NA
## 4483 NA NA NA
## 4484 NA NA NA
## 4485 NA NA NA
## 4486 NA NA NA
## 4487 NA NA NA
## 4488 NA NA NA
## 4489 NA NA NA
## 4490 NA NA NA
## 4491 NA NA NA
## 4492 NA NA NA
## 4493 NA NA NA
## 4494 NA NA NA
## 4495 NA NA NA
## 4496 NA NA NA
## 4497 NA NA NA
## 4498 NA NA NA
## 4499 NA NA NA
## 4500 NA NA NA
## 4501 NA NA NA
## 4502 NA NA NA
## 4503 NA NA NA
## 4504 NA NA NA
## 4505 NA NA NA
## 4506 NA NA NA
## 4507 NA NA NA
## 4508 NA NA NA
## 4509 NA NA NA
## 4510 NA NA NA
## 4511 NA NA NA
## 4512 NA NA NA
## 4513 NA NA NA
## 4514 NA NA NA
## 4515 NA NA NA
## 4516 NA NA NA
## 4517 NA NA NA
## 4518 NA NA NA
## 4519 NA NA NA
## 4520 NA NA NA
## 4521 NA NA NA
## 4522 NA NA NA
## 4523 NA NA NA
## 4524 NA NA NA
## 4525 NA NA NA
## 4526 NA NA NA
## 4527 NA NA NA
## 4528 NA NA NA
## 4529 NA NA NA
## 4530 NA NA NA
## 4531 NA NA NA
## 4532 NA NA NA
## 4533 NA NA NA
## 4534 NA NA NA
## 4535 NA NA NA
## 4536 NA NA NA
## 4537 NA NA NA
## 4538 NA NA NA
## 4539 NA NA NA
## 4540 NA NA NA
## 4541 NA NA NA
## 4542 NA NA NA
## 4543 NA NA NA
## 4544 NA NA NA
## 4545 NA NA NA
## 4546 NA NA NA
## 4547 NA NA NA
## 4548 NA NA NA
## 4549 NA NA NA
## 4550 NA NA NA
## 4551 NA NA NA
## 4552 NA NA NA
## 4553 NA NA NA
## 4554 NA NA NA
## 4555 NA NA NA
## 4556 NA NA NA
## 4557 NA NA NA
## 4558 NA NA NA
## 4559 NA NA NA
## 4560 NA NA NA
## 4561 NA NA NA
## 4562 NA NA NA
## 4563 NA NA NA
## 4564 NA NA NA
## 4565 NA NA NA
## 4566 NA NA NA
## 4567 NA NA NA
## 4568 NA NA NA
## 4569 NA NA NA
## 4570 NA NA NA
## 4571 NA NA NA
## 4572 NA NA NA
## 4573 NA NA NA
## 4574 NA NA NA
## 4575 NA NA NA
## 4576 NA NA NA
## 4577 NA NA NA
## 4578 NA NA NA
## 4579 NA NA NA
## 4580 NA NA NA
## 4581 NA NA NA
## 4582 NA NA NA
## 4583 NA NA NA
## 4584 NA NA NA
## 4585 NA NA NA
## 4586 NA NA NA
## 4587 NA NA NA
## 4588 NA NA NA
## 4589 NA NA NA
## 4590 NA NA NA
## 4591 NA NA NA
## 4592 NA NA NA
## 4593 NA NA NA
## 4594 NA NA NA
## 4595 NA NA NA
## 4596 NA NA NA
## 4597 NA NA NA
## 4598 NA NA NA
## 4599 NA NA NA
## 4600 NA NA NA
## 4601 NA NA NA
## 4602 NA NA NA
## 4603 NA NA NA
## 4604 NA NA NA
## 4605 NA NA NA
## 4606 NA NA NA
## 4607 NA NA NA
## 4608 NA NA NA
## 4609 NA NA NA
## 4610 NA NA NA
## 4611 NA NA NA
## 4612 NA NA NA
## 4613 NA NA NA
## 4614 NA NA NA
## 4615 NA NA NA
## 4616 NA NA NA
## 4617 NA NA NA
## 4618 NA NA NA
## 4619 NA NA NA
## 4620 NA NA NA
## 4621 NA NA NA
## 4622 NA NA NA
## 4623 NA NA NA
## 4624 NA NA NA
## 4625 NA NA NA
## 4626 NA NA NA
## 4627 NA NA NA
## 4628 NA NA NA
## 4629 NA NA NA
## 4630 NA NA NA
## 4631 NA NA NA
## 4632 NA NA NA
## 4633 NA NA NA
## 4634 NA NA NA
## 4635 NA NA NA
## 4636 NA NA NA
## 4637 NA NA NA
## 4638 NA NA NA
## 4639 NA NA NA
## 4640 NA NA NA
## 4641 NA NA NA
## 4642 NA NA NA
## 4643 NA NA NA
## 4644 NA NA NA
## 4645 NA NA NA
## 4646 NA NA NA
## 4647 NA NA NA
## 4648 NA NA NA
## 4649 NA NA NA
## 4650 NA NA NA
## 4651 NA NA NA
## 4652 NA NA NA
## 4653 NA NA NA
## 4654 NA NA NA
## 4655 NA NA NA
## 4656 NA NA NA
## 4657 NA NA NA
## 4658 NA NA NA
## 4659 NA NA NA
## 4660 NA NA NA
## 4661 NA NA NA
## 4662 NA NA NA
## 4663 NA NA NA
## 4664 NA NA NA
## 4665 NA NA NA
## 4666 NA NA NA
## 4667 NA NA NA
## 4668 NA NA NA
## 4669 NA NA NA
## 4670 NA NA NA
## 4671 NA NA NA
## 4672 NA NA NA
## 4673 NA NA NA
## 4674 NA NA NA
## 4675 NA NA NA
## 4676 NA NA NA
## 4677 NA NA NA
## 4678 NA NA NA
## 4679 NA NA NA
## 4680 NA NA NA
## 4681 NA NA NA
## 4682 NA NA NA
## 4683 NA NA NA
## 4684 NA NA NA
## 4685 NA NA NA
## 4686 NA NA NA
## 4687 NA NA NA
## 4688 NA NA NA
## 4689 NA NA NA
## 4690 NA NA NA
## 4691 NA NA NA
## 4692 NA NA NA
## 4693 NA NA NA
## 4694 NA NA NA
## 4695 NA NA NA
## 4696 NA NA NA
## 4697 NA NA NA
## 4698 NA NA NA
## 4699 NA NA NA
## 4700 NA NA NA
## 4701 NA NA NA
## 4702 NA NA NA
## 4703 NA NA NA
## 4704 NA NA NA
## 4705 NA NA NA
## 4706 NA NA NA
## 4707 NA NA NA
## 4708 NA NA NA
## 4709 NA NA NA
## 4710 NA NA NA
## 4711 NA NA NA
## 4712 NA NA NA
## 4713 NA NA NA
## 4714 NA NA NA
## 4715 NA NA NA
## 4716 NA NA NA
## 4717 NA NA NA
## 4718 NA NA NA
## 4719 NA NA NA
## 4720 NA NA NA
## 4721 NA NA NA
## 4722 NA NA NA
## 4723 NA NA NA
## 4724 NA NA NA
## 4725 NA NA NA
## 4726 NA NA NA
## 4727 NA NA NA
## 4728 NA NA NA
## 4729 NA NA NA
## 4730 NA NA NA
## 4731 NA NA NA
## 4732 NA NA NA
## 4733 NA NA NA
## 4734 NA NA NA
## 4735 NA NA NA
## 4736 NA NA NA
## 4737 NA NA NA
## 4738 NA NA NA
## 4739 NA NA NA
## 4740 NA NA NA
## 4741 NA NA NA
## 4742 NA NA NA
## 4743 NA NA NA
## 4744 NA NA NA
## 4745 NA NA NA
## 4746 NA NA NA
## 4747 NA NA NA
## 4748 NA NA NA
## 4749 NA NA NA
## 4750 NA NA NA
## 4751 NA NA NA
## 4752 NA NA NA
## 4753 NA NA NA
## 4754 NA NA NA
## 4755 NA NA NA
## 4756 NA NA NA
## 4757 NA NA NA
## 4758 NA NA NA
## 4759 NA NA NA
## 4760 NA NA NA
## 4761 NA NA NA
## 4762 NA NA NA
## 4763 NA NA NA
## 4764 NA NA NA
## 4765 NA NA NA
## 4766 NA NA NA
## 4767 NA NA NA
## 4768 NA NA NA
## 4769 NA NA NA
## 4770 NA NA NA
## 4771 NA NA NA
## 4772 NA NA NA
## 4773 NA NA NA
## 4774 NA NA NA
## 4775 NA NA NA
## 4776 NA NA NA
## 4777 NA NA NA
## 4778 NA NA NA
## 4779 NA NA NA
## 4780 NA NA NA
## 4781 NA NA NA
## 4782 NA NA NA
## 4783 NA NA NA
## 4784 NA NA NA
## 4785 NA NA NA
## 4786 NA NA NA
## 4787 NA NA NA
## 4788 NA NA NA
## 4789 NA NA NA
## 4790 NA NA NA
## 4791 NA NA NA
## 4792 NA NA NA
## 4793 NA NA NA
## 4794 NA NA NA
## 4795 NA NA NA
## 4796 NA NA NA
## 4797 NA NA NA
## 4798 NA NA NA
## 4799 NA NA NA
## 4800 NA NA NA
## 4801 NA NA NA
## 4802 NA NA NA
## 4803 NA NA NA
## 4804 NA NA NA
## 4805 NA NA NA
## 4806 NA NA NA
## 4807 NA NA NA
## 4808 NA NA NA
## 4809 NA NA NA
## 4810 NA NA NA
## 4811 NA NA NA
## 4812 NA NA NA
## 4813 NA NA NA
## 4814 NA NA NA
## 4815 NA NA NA
## 4816 NA NA NA
## 4817 NA NA NA
## 4818 NA NA NA
## 4819 NA NA NA
## 4820 NA NA NA
## 4821 NA NA NA
## 4822 NA NA NA
## 4823 NA NA NA
## 4824 NA NA NA
## 4825 NA NA NA
## 4826 NA NA NA
## 4827 NA NA NA
## 4828 NA NA NA
## 4829 NA NA NA
## 4830 NA NA NA
## 4831 NA NA NA
## 4832 NA NA NA
## 4833 NA NA NA
## 4834 NA NA NA
## 4835 NA NA NA
## 4836 NA NA NA
## 4837 NA NA NA
## 4838 NA NA NA
## 4839 NA NA NA
## 4840 NA NA NA
## 4841 NA NA NA
## 4842 NA NA NA
## 4843 NA NA NA
## 4844 NA NA NA
## 4845 NA NA NA
## 4846 NA NA NA
## 4847 NA NA NA
## 4848 NA NA NA
## 4849 NA NA NA
## 4850 NA NA NA
## 4851 NA NA NA
## 4852 NA NA NA
## 4853 NA NA NA
## 4854 NA NA NA
## 4855 NA NA NA
## 4856 NA NA NA
## 4857 NA NA NA
## 4858 NA NA NA
## 4859 NA NA NA
## 4860 NA NA NA
## 4861 NA NA NA
## 4862 NA NA NA
## 4863 NA NA NA
## 4864 NA NA NA
## 4865 NA NA NA
## 4866 NA NA NA
## 4867 NA NA NA
## 4868 NA NA NA
## 4869 NA NA NA
## 4870 NA NA NA
## 4871 NA NA NA
## 4872 NA NA NA
## 4873 NA NA NA
## 4874 NA NA NA
## 4875 NA NA NA
## 4876 NA NA NA
## 4877 NA NA NA
## 4878 NA NA NA
## 4879 NA NA NA
## 4880 NA NA NA
## 4881 NA NA NA
## 4882 NA NA NA
## 4883 NA NA NA
## 4884 NA NA NA
## 4885 NA NA NA
## 4886 NA NA NA
## 4887 NA NA NA
## 4888 NA NA NA
## 4889 NA NA NA
## 4890 NA NA NA
## 4891 NA NA NA
## 4892 NA NA NA
## 4893 NA NA NA
## 4894 NA NA NA
## 4895 NA NA NA
## 4896 NA NA NA
## 4897 NA NA NA
## 4898 NA NA NA
## 4899 NA NA NA
## 4900 NA NA NA
## 4901 NA NA NA
## 4902 NA NA NA
## 4903 NA NA NA
## 4904 NA NA NA
## 4905 NA NA NA
## 4906 NA NA NA
## 4907 NA NA NA
## 4908 NA NA NA
## 4909 NA NA NA
## 4910 NA NA NA
## 4911 NA NA NA
## 4912 NA NA NA
## 4913 NA NA NA
## 4914 NA NA NA
## 4915 NA NA NA
## 4916 NA NA NA
## 4917 NA NA NA
## 4918 NA NA NA
## 4919 NA NA NA
## 4920 NA NA NA
## 4921 NA NA NA
## 4922 NA NA NA
## 4923 NA NA NA
## 4924 NA NA NA
## 4925 NA NA NA
## 4926 NA NA NA
## 4927 NA NA NA
## 4928 NA NA NA
## 4929 NA NA NA
## 4930 NA NA NA
## 4931 NA NA NA
## 4932 NA NA NA
## 4933 NA NA NA
## 4934 NA NA NA
## 4935 NA NA NA
## 4936 NA NA NA
## 4937 NA NA NA
## 4938 NA NA NA
## 4939 NA NA NA
## 4940 NA NA NA
## 4941 NA NA NA
## 4942 NA NA NA
## 4943 NA NA NA
## 4944 NA NA NA
## 4945 NA NA NA
## 4946 NA NA NA
## 4947 NA NA NA
## 4948 NA NA NA
## 4949 NA NA NA
## 4950 NA NA NA
## 4951 NA NA NA
## 4952 NA NA NA
## 4953 NA NA NA
## 4954 NA NA NA
## 4955 NA NA NA
## 4956 NA NA NA
## 4957 NA NA NA
## 4958 NA NA NA
## 4959 NA NA NA
## 4960 NA NA NA
## 4961 NA NA NA
## 4962 NA NA NA
## 4963 NA NA NA
## 4964 NA NA NA
## 4965 NA NA NA
## 4966 NA NA NA
## 4967 NA NA NA
## 4968 NA NA NA
## 4969 NA NA NA
## 4970 NA NA NA
## 4971 NA NA NA
## 4972 NA NA NA
## 4973 NA NA NA
## 4974 NA NA NA
## 4975 NA NA NA
## 4976 NA NA NA
## 4977 NA NA NA
## 4978 NA NA NA
## 4979 NA NA NA
## 4980 NA NA NA
## 4981 NA NA NA
## 4982 NA NA NA
## 4983 NA NA NA
## 4984 NA NA NA
## 4985 NA NA NA
## 4986 NA NA NA
## 4987 NA NA NA
## 4988 NA NA NA
## 4989 NA NA NA
## 4990 NA NA NA
## 4991 NA NA NA
## 4992 NA NA NA
## 4993 NA NA NA
## 4994 NA NA NA
## 4995 NA NA NA
## 4996 NA NA NA
## 4997 NA NA NA
## 4998 NA NA NA
## 4999 NA NA NA
## 5000 NA NA NA
## 5001 NA NA NA
## 5002 NA NA NA
## 5003 NA NA NA
## 5004 NA NA NA
## 5005 NA NA NA
## 5006 NA NA NA
## 5007 NA NA NA
## 5008 NA NA NA
## 5009 NA NA NA
## 5010 NA NA NA
## 5011 NA NA NA
## 5012 NA NA NA
## 5013 NA NA NA
## 5014 NA NA NA
## 5015 NA NA NA
## 5016 NA NA NA
## 5017 NA NA NA
## 5018 NA NA NA
## 5019 NA NA NA
## 5020 NA NA NA
## 5021 NA NA NA
## 5022 NA NA NA
## 5023 NA NA NA
## 5024 NA NA NA
## 5025 NA NA NA
## 5026 NA NA NA
## 5027 NA NA NA
## 5028 NA NA NA
## 5029 NA NA NA
## 5030 NA NA NA
## 5031 NA NA NA
## 5032 NA NA NA
## 5033 NA NA NA
## 5034 NA NA NA
## 5035 NA NA NA
## 5036 NA NA NA
## 5037 NA NA NA
## 5038 NA NA NA
## 5039 NA NA NA
## 5040 NA NA NA
## 5041 NA NA NA
## 5042 NA NA NA
## 5043 NA NA NA
## 5044 NA NA NA
## 5045 NA NA NA
## 5046 NA NA NA
## 5047 NA NA NA
## 5048 NA NA NA
## 5049 NA NA NA
## 5050 NA NA NA
## 5051 NA NA NA
## 5052 NA NA NA
## 5053 NA NA NA
## 5054 NA NA NA
## 5055 NA NA NA
## 5056 NA NA NA
## 5057 NA NA NA
## 5058 NA NA NA
## 5059 NA NA NA
## 5060 NA NA NA
## 5061 NA NA NA
## 5062 NA NA NA
## 5063 NA NA NA
## 5064 NA NA NA
## 5065 NA NA NA
## 5066 NA NA NA
## 5067 NA NA NA
## 5068 NA NA NA
## 5069 NA NA NA
## 5070 NA NA NA
## 5071 NA NA NA
## 5072 NA NA NA
## 5073 NA NA NA
## 5074 NA NA NA
## 5075 NA NA NA
## 5076 NA NA NA
## 5077 NA NA NA
## 5078 NA NA NA
## 5079 NA NA NA
## 5080 NA NA NA
## 5081 NA NA NA
## 5082 NA NA NA
## 5083 NA NA NA
## 5084 NA NA NA
## 5085 NA NA NA
## 5086 NA NA NA
## 5087 NA NA NA
## 5088 NA NA NA
## 5089 NA NA NA
## 5090 NA NA NA
## 5091 NA NA NA
## 5092 NA NA NA
## 5093 NA NA NA
## 5094 NA NA NA
## 5095 NA NA NA
## 5096 NA NA NA
## 5097 NA NA NA
## 5098 NA NA NA
## 5099 NA NA NA
## 5100 NA NA NA
## 5101 NA NA NA
## 5102 NA NA NA
## 5103 NA NA NA
## 5104 NA NA NA
## 5105 NA NA NA
## 5106 NA NA NA
## 5107 NA NA NA
## 5108 NA NA NA
## 5109 NA NA NA
## 5110 NA NA NA
## 5111 NA NA NA
## 5112 NA NA NA
## 5113 NA NA NA
## 5114 NA NA NA
## 5115 NA NA NA
## 5116 NA NA NA
## 5117 NA NA NA
## 5118 NA NA NA
## 5119 NA NA NA
## 5120 NA NA NA
## 5121 NA NA NA
## 5122 NA NA NA
## 5123 NA NA NA
## 5124 NA NA NA
## 5125 NA NA NA
## 5126 NA NA NA
## 5127 NA NA NA
## 5128 NA NA NA
## 5129 NA NA NA
## 5130 NA NA NA
## 5131 NA NA NA
## 5132 NA NA NA
## 5133 NA NA NA
## 5134 NA NA NA
## 5135 NA NA NA
## 5136 NA NA NA
## 5137 NA NA NA
## 5138 NA NA NA
## 5139 NA NA NA
## 5140 NA NA NA
## 5141 NA NA NA
## 5142 NA NA NA
## 5143 NA NA NA
## 5144 NA NA NA
## 5145 NA NA NA
## 5146 NA NA NA
## 5147 NA NA NA
## 5148 NA NA NA
## 5149 NA NA NA
## 5150 NA NA NA
## 5151 NA NA NA
## 5152 NA NA NA
## 5153 NA NA NA
## 5154 NA NA NA
## 5155 NA NA NA
## 5156 NA NA NA
## 5157 NA NA NA
## 5158 NA NA NA
## 5159 NA NA NA
## 5160 NA NA NA
## 5161 NA NA NA
## 5162 NA NA NA
## 5163 NA NA NA
## 5164 NA NA NA
## 5165 NA NA NA
## 5166 NA NA NA
## 5167 NA NA NA
## 5168 NA NA NA
## 5169 NA NA NA
## 5170 NA NA NA
## 5171 NA NA NA
## 5172 NA NA NA
## 5173 NA NA NA
## 5174 NA NA NA
## 5175 NA NA NA
## 5176 NA NA NA
## 5177 NA NA NA
## 5178 NA NA NA
## 5179 NA NA NA
## 5180 NA NA NA
## 5181 NA NA NA
## 5182 NA NA NA
## 5183 NA NA NA
## 5184 NA NA NA
## 5185 NA NA NA
## 5186 NA NA NA
## 5187 NA NA NA
## 5188 NA NA NA
## 5189 NA NA NA
## 5190 NA NA NA
## 5191 NA NA NA
## 5192 NA NA NA
## 5193 NA NA NA
## 5194 NA NA NA
## 5195 NA NA NA
## 5196 NA NA NA
## 5197 NA NA NA
## 5198 NA NA NA
## 5199 NA NA NA
## 5200 NA NA NA
## 5201 NA NA NA
## 5202 NA NA NA
## 5203 NA NA NA
## 5204 NA NA NA
## 5205 NA NA NA
## 5206 NA NA NA
## 5207 NA NA NA
## 5208 NA NA NA
## 5209 NA NA NA
## 5210 NA NA NA
## 5211 NA NA NA
## 5212 NA NA NA
## 5213 NA NA NA
## 5214 NA NA NA
## 5215 NA NA NA
## 5216 NA NA NA
## 5217 NA NA NA
## 5218 NA NA NA
## 5219 NA NA NA
## 5220 NA NA NA
## 5221 NA NA NA
## 5222 NA NA NA
## 5223 NA NA NA
## 5224 NA NA NA
## 5225 NA NA NA
## 5226 NA NA NA
## 5227 NA NA NA
## 5228 NA NA NA
## 5229 NA NA NA
## 5230 NA NA NA
## 5231 NA NA NA
## 5232 NA NA NA
## 5233 NA NA NA
## 5234 NA NA NA
## 5235 NA NA NA
## 5236 NA NA NA
## 5237 NA NA NA
## 5238 NA NA NA
## 5239 NA NA NA
## 5240 NA NA NA
## 5241 NA NA NA
## 5242 NA NA NA
## 5243 NA NA NA
## 5244 NA NA NA
## 5245 NA NA NA
## 5246 NA NA NA
## 5247 NA NA NA
## 5248 NA NA NA
## 5249 NA NA NA
## 5250 NA NA NA
## 5251 NA NA NA
## 5252 NA NA NA
## 5253 NA NA NA
## 5254 NA NA NA
## 5255 NA NA NA
## 5256 NA NA NA
## 5257 NA NA NA
## 5258 NA NA NA
## 5259 NA NA NA
## 5260 NA NA NA
## 5261 NA NA NA
## 5262 NA NA NA
## 5263 NA NA NA
## 5264 NA NA NA
## 5265 NA NA NA
## 5266 NA NA NA
## 5267 NA NA NA
## 5268 NA NA NA
## 5269 NA NA NA
## 5270 NA NA NA
## 5271 NA NA NA
## 5272 NA NA NA
## 5273 NA NA NA
## 5274 NA NA NA
## 5275 NA NA NA
## 5276 NA NA NA
## 5277 NA NA NA
## 5278 NA NA NA
## 5279 NA NA NA
## 5280 NA NA NA
## 5281 NA NA NA
## 5282 NA NA NA
## 5283 NA NA NA
## 5284 NA NA NA
## 5285 NA NA NA
## 5286 NA NA NA
## 5287 NA NA NA
## 5288 NA NA NA
## 5289 NA NA NA
## 5290 NA NA NA
## 5291 NA NA NA
## 5292 NA NA NA
## 5293 NA NA NA
## 5294 NA NA NA
## 5295 NA NA NA
## 5296 NA NA NA
## 5297 NA NA NA
## 5298 NA NA NA
## 5299 NA NA NA
## 5300 NA NA NA
## 5301 NA NA NA
## 5302 NA NA NA
## 5303 NA NA NA
## 5304 NA NA NA
## 5305 NA NA NA
## 5306 NA NA NA
## 5307 NA NA NA
## 5308 NA NA NA
## 5309 NA NA NA
## 5310 NA NA NA
## 5311 NA NA NA
## 5312 NA NA NA
## 5313 NA NA NA
## 5314 NA NA NA
## 5315 NA NA NA
## 5316 NA NA NA
## 5317 NA NA NA
## 5318 NA NA NA
## 5319 NA NA NA
## 5320 NA NA NA
## 5321 NA NA NA
## 5322 NA NA NA
## 5323 NA NA NA
## 5324 NA NA NA
## 5325 NA NA NA
## 5326 NA NA NA
## 5327 NA NA NA
## 5328 NA NA NA
## 5329 NA NA NA
## 5330 NA NA NA
## 5331 NA NA NA
## 5332 NA NA NA
## 5333 NA NA NA
## 5334 NA NA NA
## 5335 NA NA NA
## 5336 NA NA NA
## 5337 NA NA NA
## 5338 NA NA NA
## 5339 NA NA NA
## 5340 NA NA NA
## 5341 NA NA NA
## 5342 NA NA NA
## 5343 NA NA NA
## 5344 NA NA NA
## 5345 NA NA NA
## 5346 NA NA NA
## 5347 NA NA NA
## 5348 NA NA NA
## 5349 NA NA NA
## 5350 NA NA NA
## 5351 NA NA NA
## 5352 NA NA NA
## 5353 NA NA NA
## 5354 NA NA NA
## 5355 NA NA NA
## 5356 NA NA NA
## 5357 NA NA NA
## 5358 NA NA NA
## 5359 NA NA NA
## 5360 NA NA NA
## 5361 NA NA NA
## 5362 NA NA NA
## 5363 NA NA NA
## 5364 NA NA NA
## 5365 NA NA NA
## 5366 NA NA NA
## 5367 NA NA NA
## 5368 NA NA NA
## 5369 NA NA NA
## 5370 NA NA NA
## 5371 NA NA NA
## 5372 NA NA NA
## 5373 NA NA NA
## 5374 NA NA NA
## 5375 NA NA NA
## 5376 NA NA NA
## 5377 NA NA NA
## 5378 NA NA NA
## 5379 NA NA NA
## 5380 NA NA NA
## 5381 NA NA NA
## 5382 NA NA NA
## 5383 NA NA NA
## 5384 NA NA NA
## 5385 NA NA NA
## 5386 NA NA NA
## 5387 NA NA NA
## 5388 NA NA NA
## 5389 NA NA NA
## 5390 NA NA NA
## 5391 NA NA NA
## 5392 NA NA NA
## 5393 NA NA NA
## 5394 NA NA NA
## 5395 NA NA NA
## 5396 NA NA NA
## 5397 NA NA NA
## 5398 NA NA NA
## 5399 NA NA NA
## 5400 NA NA NA
## 5401 NA NA NA
## 5402 NA NA NA
## 5403 NA NA NA
## 5404 NA NA NA
## 5405 NA NA NA
## 5406 NA NA NA
## 5407 NA NA NA
## 5408 NA NA NA
## 5409 NA NA NA
## 5410 NA NA NA
## 5411 NA NA NA
## 5412 NA NA NA
## 5413 NA NA NA
## 5414 NA NA NA
## 5415 NA NA NA
## 5416 NA NA NA
## 5417 NA NA NA
## 5418 NA NA NA
## 5419 NA NA NA
## 5420 NA NA NA
## 5421 NA NA NA
## 5422 NA NA NA
## 5423 NA NA NA
## 5424 NA NA NA
## 5425 NA NA NA
## 5426 NA NA NA
## 5427 NA NA NA
## 5428 NA NA NA
## 5429 NA NA NA
## 5430 NA NA NA
## 5431 NA NA NA
## 5432 NA NA NA
## 5433 NA NA NA
## 5434 NA NA NA
## 5435 NA NA NA
## 5436 NA NA NA
## 5437 NA NA NA
## 5438 NA NA NA
## 5439 NA NA NA
## 5440 NA NA NA
## 5441 NA NA NA
## 5442 NA NA NA
## 5443 NA NA NA
## 5444 NA NA NA
## 5445 NA NA NA
## 5446 NA NA NA
## 5447 NA NA NA
## 5448 NA NA NA
## 5449 NA NA NA
## 5450 NA NA NA
## 5451 NA NA NA
## 5452 NA NA NA
## 5453 NA NA NA
## 5454 NA NA NA
## 5455 NA NA NA
## 5456 NA NA NA
## 5457 NA NA NA
## 5458 NA NA NA
## 5459 NA NA NA
## 5460 NA NA NA
## 5461 NA NA NA
## 5462 NA NA NA
## 5463 NA NA NA
## 5464 NA NA NA
## 5465 NA NA NA
## 5466 NA NA NA
## 5467 NA NA NA
## 5468 NA NA NA
## 5469 NA NA NA
## 5470 NA NA NA
## 5471 NA NA NA
## 5472 NA NA NA
## 5473 NA NA NA
## 5474 NA NA NA
## 5475 NA NA NA
## 5476 NA NA NA
## 5477 NA NA NA
## 5478 NA NA NA
## 5479 NA NA NA
## 5480 NA NA NA
## 5481 NA NA NA
## 5482 NA NA NA
## 5483 NA NA NA
## 5484 NA NA NA
## 5485 NA NA NA
## 5486 NA NA NA
## 5487 NA NA NA
## 5488 NA NA NA
## 5489 NA NA NA
## 5490 NA NA NA
## 5491 NA NA NA
## 5492 NA NA NA
## 5493 NA NA NA
## 5494 NA NA NA
## 5495 NA NA NA
## 5496 NA NA NA
## 5497 NA NA NA
## 5498 NA NA NA
## 5499 NA NA NA
## 5500 NA NA NA
## 5501 NA NA NA
## 5502 NA NA NA
## 5503 NA NA NA
## 5504 NA NA NA
## 5505 NA NA NA
## 5506 NA NA NA
## 5507 NA NA NA
## 5508 NA NA NA
## 5509 NA NA NA
## 5510 NA NA NA
## 5511 NA NA NA
## 5512 NA NA NA
## 5513 NA NA NA
## 5514 NA NA NA
## 5515 NA NA NA
## 5516 NA NA NA
## 5517 NA NA NA
## 5518 NA NA NA
## 5519 NA NA NA
## 5520 NA NA NA
## 5521 NA NA NA
## 5522 NA NA NA
## 5523 NA NA NA
## 5524 NA NA NA
## 5525 NA NA NA
## 5526 NA NA NA
## 5527 NA NA NA
## 5528 NA NA NA
## 5529 NA NA NA
## 5530 NA NA NA
## 5531 NA NA NA
## 5532 NA NA NA
## 5533 NA NA NA
## 5534 NA NA NA
## 5535 NA NA NA
## 5536 NA NA NA
## 5537 NA NA NA
## 5538 NA NA NA
## 5539 NA NA NA
## 5540 NA NA NA
## 5541 NA NA NA
## 5542 NA NA NA
## 5543 NA NA NA
## 5544 NA NA NA
## 5545 NA NA NA
## 5546 NA NA NA
## 5547 NA NA NA
## 5548 NA NA NA
## 5549 NA NA NA
## 5550 NA NA NA
## 5551 NA NA NA
## 5552 NA NA NA
## 5553 NA NA NA
## 5554 NA NA NA
## 5555 NA NA NA
## 5556 NA NA NA
## 5557 NA NA NA
## 5558 NA NA NA
## 5559 NA NA NA
## 5560 NA NA NA
## 5561 NA NA NA
## 5562 NA NA NA
## 5563 NA NA NA
## 5564 NA NA NA
## 5565 NA NA NA
## 5566 NA NA NA
## 5567 NA NA NA
## 5568 NA NA NA
## 5569 NA NA NA
## 5570 NA NA NA
## 5571 NA NA NA
## 5572 NA NA NA
## 5573 NA NA NA
## 5574 NA NA NA
## 5575 NA NA NA
## 5576 NA NA NA
## 5577 NA NA NA
## 5578 NA NA NA
## 5579 NA NA NA
## 5580 NA NA NA
## 5581 NA NA NA
## 5582 NA NA NA
## 5583 NA NA NA
## 5584 NA NA NA
## 5585 NA NA NA
## 5586 NA NA NA
## 5587 NA NA NA
## 5588 NA NA NA
## 5589 NA NA NA
## 5590 NA NA NA
## 5591 NA NA NA
## 5592 NA NA NA
## 5593 NA NA NA
## 5594 NA NA NA
## 5595 NA NA NA
## 5596 NA NA NA
## 5597 NA NA NA
## 5598 NA NA NA
## 5599 NA NA NA
## 5600 NA NA NA
Our survey contains variables which give information about the data collection process. First, we have some variables that come from the ‘sample data (SDDF)’ file. These contain info about the ‘primary sampling unit’ and the probability of each unit of being selected in the sample. These two variables are only available for respondents. In most projects we would have to compute the probability of being sampled by ourselves.
data[vars.sample.data]
## idno psu prob
## 1 100000003 9388 0.00020306164
## 2 100000005 9241 0.00020306164
## 3 100000008 9472 0.00020306164
## 4 100000009 9450 0.00005076541
## 5 100000010 9479 0.00010153082
## 6 100000012 9460 0.00010153082
## 7 100000015 9440 0.00010153082
## 8 100000016 9494 0.00020306164
## 9 100000017 9376 0.00010153082
## 10 100000020 9273 0.00010153082
## 11 100000022 9445 0.00010153082
## 12 100000023 9430 0.00006768721
## 13 100000025 9405 0.00020306164
## 14 100000030 9373 0.00010153082
## 15 100000031 9299 0.00010153082
## 16 100000033 9230 0.00010153082
## 17 100000034 9313 0.00020306164
## 18 100000036 9266 0.00002256240
## 19 100000037 9440 0.00010153082
## 20 100000041 9345 0.00010153082
## 21 100000043 9444 0.00010153082
## 22 100000046 9485 0.00010153082
## 23 100000047 9476 0.00020306164
## 24 100000048 9296 0.00010153082
## 25 100000050 9320 0.00010153082
## 26 100000052 9413 0.00020306164
## 27 100000053 9495 0.00010153082
## 28 100000054 9264 0.00010153082
## 29 100000055 9386 0.00020306164
## 30 100000057 9241 0.00020306164
## 31 100000062 9418 0.00010153082
## 32 100000063 9240 0.00010153082
## 33 100000067 9389 0.00004061233
## 34 100000070 9236 0.00020306164
## 35 100000071 9242 0.00010153082
## 36 100000073 9458 0.00010153082
## 37 100000075 9481 0.00010153082
## 38 100000076 9347 0.00020306164
## 39 100000077 9356 0.00020306164
## 40 100000080 9377 0.00010153082
## 41 100000084 9486 0.00006768721
## 42 100000085 9353 0.00005076541
## 43 100000086 9458 0.00020306164
## 44 100000088 9370 0.00010153082
## 45 100000089 9324 0.00020306164
## 46 100000091 9363 0.00010153082
## 47 100000095 9234 0.00010153082
## 48 100000096 9256 0.00010153082
## 49 100000103 9439 0.00010153082
## 50 100000104 9289 0.00010153082
## 51 100000107 9464 0.00010153082
## 52 100000108 9296 0.00010153082
## 53 100000109 9440 0.00020306164
## 54 100000110 9463 0.00010153082
## 55 100000111 9297 0.00020306164
## 56 100000113 9414 0.00020306164
## 57 100000115 9289 0.00020306164
## 58 100000121 9277 0.00002030616
## 59 100000122 9400 0.00010153082
## 60 100000123 9393 0.00006768721
## 61 100000124 9236 0.00020306164
## 62 100000126 9430 0.00010153082
## 63 100000127 9293 0.00020306164
## 64 100000139 9239 0.00010153082
## 65 100000141 9363 0.00020306164
## 66 100000143 9387 0.00010153082
## 67 100000145 9344 0.00010153082
## 68 100000147 9454 0.00020306164
## 69 100000148 9490 0.00004061233
## 70 100000152 9358 0.00010153082
## 71 100000153 9297 0.00006768721
## 72 100000156 9406 0.00010153082
## 73 100000157 9384 0.00010153082
## 74 100000158 9501 0.00020306164
## 75 100000159 9417 0.00010153082
## 76 100000167 9504 0.00003384361
## 77 100000168 9402 0.00020306164
## 78 100000170 9284 0.00010153082
## 79 100000171 9246 0.00010153082
## 80 100000174 9450 0.00005076541
## 81 100000175 9431 0.00010153082
## 82 100000176 9423 0.00010153082
## 83 100000180 9252 0.00010153082
## 84 100000181 9349 0.00010153082
## 85 100000182 9241 0.00020306164
## 86 100000183 9444 0.00010153082
## 87 100000184 9396 0.00010153082
## 88 100000185 9373 0.00010153082
## 89 100000186 9245 0.00006768721
## 90 100000189 9300 0.00010153082
## 91 100000193 9272 0.00020306164
## 92 100000197 9450 0.00010153082
## 93 100000205 9378 0.00010153082
## 94 100000207 9274 0.00020306164
## 95 100000208 9411 0.00005076541
## 96 100000211 9329 0.00020306164
## 97 100000212 9367 0.00020306164
## 98 100000213 9352 0.00020306164
## 99 100000219 9313 0.00010153082
## 100 100000221 9389 0.00020306164
## 101 100000224 9316 0.00010153082
## 102 100000225 9280 0.00010153082
## 103 100000227 9234 0.00010153082
## 104 100000229 9379 0.00010153082
## 105 100000231 9229 0.00010153082
## 106 100000235 9444 0.00010153082
## 107 100000240 9405 0.00020306164
## 108 100000248 9349 0.00010153082
## 109 100000250 9484 0.00020306164
## 110 100000251 9499 0.00010153082
## 111 100000253 9477 0.00020306164
## 112 100000256 9353 0.00006768721
## 113 100000261 9391 0.00010153082
## 114 100000263 9355 0.00020306164
## 115 100000264 9456 0.00010153082
## 116 100000265 9388 0.00020306164
## 117 100000266 9312 0.00010153082
## 118 100000267 9385 0.00010153082
## 119 100000268 9378 0.00002256240
## 120 100000269 9316 0.00010153082
## 121 100000270 9392 0.00010153082
## 122 100000271 9296 0.00010153082
## 123 100000272 9349 0.00020306164
## 124 100000275 9307 0.00020306164
## 125 100000276 9257 0.00020306164
## 126 100000279 9236 0.00020306164
## 127 100000281 9448 0.00010153082
## 128 100000283 9497 0.00010153082
## 129 100000284 9488 0.00010153082
## 130 100000285 9377 0.00001846015
## 131 100000288 9392 0.00020306164
## 132 100000289 9482 0.00020306164
## 133 100000290 9452 0.00010153082
## 134 100000298 9339 0.00020306164
## 135 100000300 9365 0.00010153082
## 136 100000302 9384 0.00010153082
## 137 100000303 9462 0.00006768721
## 138 100000304 9350 0.00020306164
## 139 100000305 9312 0.00020306164
## 140 100000306 9445 0.00020306164
## 141 100000313 9468 0.00010153082
## 142 100000314 9481 0.00005076541
## 143 100000321 9310 0.00020306164
## 144 100000322 9315 0.00020306164
## 145 100000326 9311 0.00010153082
## 146 100000329 9386 0.00010153082
## 147 100000331 9367 0.00010153082
## 148 100000333 9429 0.00020306164
## 149 100000334 9254 0.00010153082
## 150 100000335 9241 0.00010153082
## 151 100000341 9227 0.00006768721
## 152 100000344 9249 0.00006768721
## 153 100000348 9389 0.00020306164
## 154 100000350 9324 0.00010153082
## 155 100000352 9267 0.00010153082
## 156 100000357 9355 0.00010153082
## 157 100000358 9272 0.00010153082
## 158 100000359 9298 0.00020306164
## 159 100000360 9292 0.00020306164
## 160 100000365 9498 0.00005076541
## 161 100000371 9439 0.00010153082
## 162 100000374 9470 0.00010153082
## 163 100000375 9229 0.00020306164
## 164 100000376 9337 0.00020306164
## 165 100000379 9236 0.00020306164
## 166 100000386 9299 0.00020306164
## 167 100000387 9469 0.00010153082
## 168 100000389 9236 0.00020306164
## 169 100000390 9282 0.00010153082
## 170 100000392 9317 0.00010153082
## 171 100000393 9461 0.00010153082
## 172 100000395 9333 0.00006768721
## 173 100000396 9261 0.00020306164
## 174 100000398 9491 0.00010153082
## 175 100000400 9303 0.00020306164
## 176 100000401 9325 0.00010153082
## 177 100000403 9238 0.00020306164
## 178 100000405 9494 0.00020306164
## 179 100000408 9381 0.00020306164
## 180 100000411 9288 0.00020306164
## 181 100000412 9374 0.00020306164
## 182 100000415 9491 0.00020306164
## 183 100000417 9450 0.00020306164
## 184 100000418 9504 0.00010153082
## 185 100000420 9343 0.00010153082
## 186 100000421 9331 0.00010153082
## 187 100000422 9270 0.00006768721
## 188 100000423 9354 0.00020306164
## 189 100000425 9389 0.00010153082
## 190 100000427 9476 0.00020306164
## 191 100000430 9450 0.00006768721
## 192 100000431 9300 0.00010153082
## 193 100000435 9257 0.00010153082
## 194 100000439 9329 0.00002256240
## 195 100000441 9495 0.00010153082
## 196 100000449 9475 0.00010153082
## 197 100000450 9363 0.00020306164
## 198 100000451 9491 0.00010153082
## 199 100000452 9378 0.00010153082
## 200 100000453 9344 0.00005076541
## 201 100000454 9351 0.00010153082
## 202 100000456 9446 0.00010153082
## 203 100000457 9345 0.00010153082
## 204 100000462 9464 0.00020306164
## 205 100000463 9236 0.00010153082
## 206 100000464 9478 0.00020306164
## 207 100000465 9311 0.00010153082
## 208 100000467 9230 0.00020306164
## 209 100000468 9385 0.00010153082
## 210 100000470 9499 0.00005076541
## 211 100000471 9310 0.00020306164
## 212 100000474 9281 0.00010153082
## 213 100000475 9436 0.00020306164
## 214 100000477 9263 0.00010153082
## 215 100000478 9356 0.00010153082
## 216 100000479 9360 0.00010153082
## 217 100000480 9453 0.00020306164
## 218 100000481 9475 0.00010153082
## 219 100000482 9235 0.00020306164
## 220 100000485 9291 0.00010153082
## 221 100000490 9426 0.00010153082
## 222 100000491 9351 0.00005076541
## 223 100000494 9278 0.00020306164
## 224 100000495 9389 0.00020306164
## 225 100000500 9248 0.00010153082
## 226 100000501 9435 0.00020306164
## 227 100000502 9468 0.00010153082
## 228 100000503 9422 0.00005076541
## 229 100000511 9227 0.00010153082
## 230 100000512 9313 0.00010153082
## 231 100000514 9227 0.00020306164
## 232 100000515 9368 0.00010153082
## 233 100000516 9505 0.00020306164
## 234 100000517 9267 0.00010153082
## 235 100000518 9457 0.00010153082
## 236 100000521 9412 0.00010153082
## 237 100000523 9278 0.00010153082
## 238 100000524 9270 0.00010153082
## 239 100000528 9249 0.00010153082
## 240 100000529 9420 0.00020306164
## 241 100000531 9240 0.00020306164
## 242 100000532 9356 0.00020306164
## 243 100000535 9397 0.00005076541
## 244 100000538 9317 0.00020306164
## 245 100000539 9396 0.00010153082
## 246 100000541 9320 0.00020306164
## 247 100000544 9487 0.00006768721
## 248 100000545 9298 0.00020306164
## 249 100000548 9245 0.00020306164
## 250 100000550 9453 0.00010153082
## 251 100000554 9304 0.00010153082
## 252 100000556 9488 0.00010153082
## 253 100000558 9326 0.00010153082
## 254 100000559 9363 0.00010153082
## 255 100000560 9374 0.00010153082
## 256 100000561 9405 0.00006768721
## 257 100000562 9255 0.00020306164
## 258 100000564 9410 0.00010153082
## 259 100000565 9434 0.00020306164
## 260 100000567 9239 0.00010153082
## 261 100000570 9399 0.00020306164
## 262 100000574 9341 0.00020306164
## 263 100000575 9309 0.00010153082
## 264 100000576 9287 0.00020306164
## 265 100000577 9375 0.00010153082
## 266 100000580 9361 0.00020306164
## 267 100000581 9397 0.00006768721
## 268 100000583 9428 0.00020306164
## 269 100000584 9360 0.00020306164
## 270 100000586 9303 0.00005076541
## 271 100000589 9330 0.00010153082
## 272 100000590 9399 0.00010153082
## 273 100000591 9454 0.00020306164
## 274 100000593 9457 0.00010153082
## 275 100000594 9481 0.00010153082
## 276 100000595 9280 0.00020306164
## 277 100000596 9369 0.00020306164
## 278 100000599 9241 0.00010153082
## 279 100000600 9504 0.00004061233
## 280 100000602 9319 0.00010153082
## 281 100000607 9245 0.00020306164
## 282 100000608 9303 0.00005076541
## 283 100000609 9260 0.00010153082
## 284 100000613 9405 0.00010153082
## 285 100000615 9460 0.00010153082
## 286 100000617 9372 0.00010153082
## 287 100000621 9439 0.00020306164
## 288 100000622 9483 0.00020306164
## 289 100000623 9441 0.00010153082
## 290 100000626 9380 0.00010153082
## 291 100000632 9369 0.00010153082
## 292 100000634 9360 0.00010153082
## 293 100000635 9308 0.00010153082
## 294 100000637 9333 0.00010153082
## 295 100000638 9487 0.00006768721
## 296 100000639 9259 0.00010153082
## 297 100000641 9398 0.00010153082
## 298 100000642 9424 0.00020306164
## 299 100000645 9248 0.00010153082
## 300 100000646 9406 0.00010153082
## 301 100000648 9347 0.00010153082
## 302 100000650 9313 0.00010153082
## 303 100000652 9426 0.00010153082
## 304 100000655 9328 0.00020306164
## 305 100000658 9479 0.00005076541
## 306 100000662 9496 0.00020306164
## 307 100000663 9467 0.00006768721
## 308 100000664 9370 0.00006768721
## 309 100000666 9245 0.00020306164
## 310 100000671 9423 0.00020306164
## 311 100000674 9394 0.00020306164
## 312 100000677 9420 0.00020306164
## 313 100000678 9503 0.00006768721
## 314 100000680 9340 0.00020306164
## 315 100000681 9397 0.00010153082
## 316 100000688 9338 0.00006768721
## 317 100000692 9471 0.00010153082
## 318 100000693 9480 0.00010153082
## 319 100000698 9450 0.00010153082
## 320 100000701 9312 0.00020306164
## 321 100000708 9321 0.00020306164
## 322 100000720 9451 0.00020306164
## 323 100000727 9369 0.00010153082
## 324 100000728 9376 0.00020306164
## 325 100000730 9229 0.00006768721
## 326 100000735 9500 0.00020306164
## 327 100000736 9403 0.00010153082
## 328 100000739 9274 0.00020306164
## 329 100000744 9469 0.00020306164
## 330 100000745 9273 0.00020306164
## 331 100000747 9483 0.00020306164
## 332 100000750 9388 0.00010153082
## 333 100000751 9375 0.00020306164
## 334 100000752 9481 0.00020306164
## 335 100000753 9277 0.00020306164
## 336 100000754 9260 0.00010153082
## 337 100000755 9333 0.00020306164
## 338 100000756 9419 0.00020306164
## 339 100000759 9362 0.00020306164
## 340 100000762 9460 0.00020306164
## 341 100000764 9312 0.00020306164
## 342 100000767 9434 0.00010153082
## 343 100000768 9494 0.00010153082
## 344 100000769 9394 0.00010153082
## 345 100000770 9483 0.00010153082
## 346 100000772 9450 0.00020306164
## 347 100000773 9327 0.00010153082
## 348 100000774 9334 0.00010153082
## 349 100000776 9262 0.00010153082
## 350 100000778 9249 0.00020306164
## 351 100000779 9387 0.00010153082
## 352 100000781 9382 0.00010153082
## 353 100000784 9310 0.00020306164
## 354 100000785 9436 0.00005076541
## 355 100000791 9486 0.00020306164
## 356 100000796 9455 0.00020306164
## 357 100000797 9499 0.00020306164
## 358 100000798 9415 0.00020306164
## 359 100000804 9357 0.00010153082
## 360 100000808 9383 0.00020306164
## 361 100000810 9380 0.00010153082
## 362 100000815 9350 0.00020306164
## 363 100000821 9353 0.00020306164
## 364 100000827 9413 0.00010153082
## 365 100000830 9411 0.00020306164
## 366 100000838 9427 0.00010153082
## 367 100000839 9423 0.00006768721
## 368 100000840 9411 0.00010153082
## 369 100000841 9279 0.00010153082
## 370 100000842 9378 0.00010153082
## 371 100000844 9474 0.00005076541
## 372 100000846 9493 0.00010153082
## 373 100000847 9360 0.00010153082
## 374 100000848 9400 0.00020306164
## 375 100000849 9418 0.00006768721
## 376 100000850 9243 0.00004061233
## 377 100000853 9319 0.00010153082
## 378 100000854 9320 0.00020306164
## 379 100000855 9268 0.00005076541
## 380 100000856 9261 0.00010153082
## 381 100000857 9330 0.00020306164
## 382 100000859 9374 0.00020306164
## 383 100000860 9452 0.00010153082
## 384 100000862 9366 0.00004061233
## 385 100000863 9305 0.00010153082
## 386 100000866 9293 0.00010153082
## 387 100000867 9315 0.00010153082
## 388 100000877 9351 0.00005076541
## 389 100000879 9459 0.00010153082
## 390 100000881 9424 0.00010153082
## 391 100000883 9240 0.00006768721
## 392 100000887 9376 0.00010153082
## 393 100000888 9499 0.00020306164
## 394 100000892 9284 0.00020306164
## 395 100000898 9316 0.00010153082
## 396 100000907 9253 0.00006768721
## 397 100000909 9286 0.00020306164
## 398 100000911 9376 0.00010153082
## 399 100000916 9256 0.00010153082
## 400 100000919 9457 0.00006768721
## 401 100000922 9456 0.00010153082
## 402 100000923 9496 0.00010153082
## 403 100000927 9282 0.00020306164
## 404 100000929 9295 0.00020306164
## 405 100000930 9243 0.00010153082
## 406 100000931 9294 0.00010153082
## 407 100000939 9234 0.00010153082
## 408 100000943 9415 0.00020306164
## 409 100000945 9487 0.00006768721
## 410 100000948 9339 0.00020306164
## 411 100000953 9459 0.00010153082
## 412 100000956 9238 0.00020306164
## 413 100000957 9250 0.00020306164
## 414 100000958 9253 0.00010153082
## 415 100000959 9355 0.00020306164
## 416 100000960 9478 0.00020306164
## 417 100000963 9476 0.00010153082
## 418 100000964 9328 0.00010153082
## 419 100000971 9504 0.00010153082
## 420 100000974 9278 0.00010153082
## 421 100000977 9350 0.00020306164
## 422 100000978 9498 0.00010153082
## 423 100000984 9344 0.00020306164
## 424 100000987 9503 0.00010153082
## 425 100000988 9310 0.00010153082
## 426 100000992 9334 0.00010153082
## 427 100000993 9370 0.00010153082
## 428 100000998 9304 0.00010153082
## 429 100001001 9252 0.00020306164
## 430 100001003 9495 0.00005076541
## 431 100001006 9360 0.00020306164
## 432 100001008 9477 0.00010153082
## 433 100001011 9262 0.00020306164
## 434 100001021 9317 0.00010153082
## 435 100001022 9314 0.00020306164
## 436 100001023 9476 0.00010153082
## 437 100001025 9239 0.00020306164
## 438 100001027 9235 0.00010153082
## 439 100001031 9285 0.00010153082
## 440 100001032 9288 0.00010153082
## 441 100001033 9504 0.00010153082
## 442 100001034 9495 0.00010153082
## 443 100001038 9486 0.00010153082
## 444 100001040 9251 0.00010153082
## 445 100001041 9342 0.00020306164
## 446 100001044 9404 0.00010153082
## 447 100001045 9286 0.00006768721
## 448 100001047 9275 0.00004061233
## 449 100001048 9382 0.00010153082
## 450 100001049 9481 0.00010153082
## 451 100001052 9288 0.00020306164
## 452 100001054 9432 0.00010153082
## 453 100001057 9360 0.00004061233
## 454 100001063 9276 0.00020306164
## 455 100001070 9362 0.00010153082
## 456 100001080 9228 0.00020306164
## 457 100001081 9287 0.00010153082
## 458 100001087 9228 0.00020306164
## 459 100001089 9286 0.00010153082
## 460 100001094 9258 0.00010153082
## 461 100001097 9408 0.00010153082
## 462 100001100 9341 0.00020306164
## 463 100001102 9407 0.00020306164
## 464 100001103 9322 0.00010153082
## 465 100001106 9409 0.00010153082
## 466 100001107 9272 0.00020306164
## 467 100001110 9337 0.00010153082
## 468 100001112 9233 0.00010153082
## 469 100001114 9253 0.00010153082
## 470 100001119 9422 0.00020306164
## 471 100001121 9280 0.00010153082
## 472 100001122 9394 0.00010153082
## 473 100001123 9415 0.00020306164
## 474 100001125 9274 0.00020306164
## 475 100001126 9442 0.00010153082
## 476 100001128 9470 0.00020306164
## 477 100001129 9476 0.00010153082
## 478 100001130 9467 0.00006768721
## 479 100001132 9395 0.00005076541
## 480 100001134 9475 0.00005076541
## 481 100001136 9322 0.00010153082
## 482 100001137 9235 0.00010153082
## 483 100001139 9425 0.00006768721
## 484 100001140 9348 0.00003384361
## 485 100001142 9503 0.00020306164
## 486 100001144 9385 0.00010153082
## 487 100001145 9493 0.00020306164
## 488 100001147 9433 0.00010153082
## 489 100001148 9454 0.00020306164
## 490 100001153 9350 0.00020306164
## 491 100001154 9278 0.00010153082
## 492 100001155 9391 0.00010153082
## 493 100001160 9313 0.00010153082
## 494 100001162 9354 0.00010153082
## 495 100001164 9302 0.00020306164
## 496 100001167 9287 0.00020306164
## 497 100001168 9287 0.00020306164
## 498 100001169 9264 0.00010153082
## 499 100001176 9276 0.00020306164
## 500 100001180 9369 0.00006768721
## 501 100001187 9356 0.00010153082
## 502 100001188 9338 0.00010153082
## 503 100001192 9446 0.00020306164
## 504 100001197 9414 0.00010153082
## 505 100001202 9495 0.00010153082
## 506 100001207 9293 0.00010153082
## 507 100001209 9231 0.00010153082
## 508 100001215 9323 0.00020306164
## 509 100001219 9331 0.00020306164
## 510 100001223 9261 0.00020306164
## 511 100001225 9315 0.00020306164
## 512 100001230 9308 0.00020306164
## 513 100001232 9385 0.00020306164
## 514 100001234 9258 0.00020306164
## 515 100001237 9248 0.00010153082
## 516 100001239 9331 0.00006768721
## 517 100001240 9382 0.00020306164
## 518 100001241 9420 0.00010153082
## 519 100001242 9504 0.00006768721
## 520 100001243 9457 0.00020306164
## 521 100001248 9261 0.00010153082
## 522 100001250 9273 0.00020306164
## 523 100001252 9505 0.00010153082
## 524 100001253 9352 0.00020306164
## 525 100001255 9229 0.00010153082
## 526 100001259 9417 0.00010153082
## 527 100001262 9361 0.00010153082
## 528 100001267 9255 0.00010153082
## 529 100001271 9395 0.00005076541
## 530 100001273 9304 0.00020306164
## 531 100001274 9467 0.00010153082
## 532 100001275 9303 0.00010153082
## 533 100001277 9403 0.00010153082
## 534 100001279 9408 0.00010153082
## 535 100001285 9457 0.00020306164
## 536 100001288 9482 0.00010153082
## 537 100001293 9244 0.00010153082
## 538 100001295 9442 0.00003384361
## 539 100001297 9233 0.00010153082
## 540 100001298 9409 0.00020306164
## 541 100001299 9420 0.00010153082
## 542 100001300 9415 0.00020306164
## 543 100001301 9349 0.00020306164
## 544 100001303 9255 0.00020306164
## 545 100001304 9240 0.00020306164
## 546 100001307 9327 0.00010153082
## 547 100001310 9282 0.00010153082
## 548 100001311 9296 0.00020306164
## 549 100001316 9452 0.00020306164
## 550 100001318 9413 0.00020306164
## 551 100001319 9453 0.00010153082
## 552 100001322 9388 0.00010153082
## 553 100001323 9382 0.00020306164
## 554 100001325 9480 0.00010153082
## 555 100001339 9431 0.00010153082
## 556 100001340 9430 0.00020306164
## 557 100001341 9481 0.00010153082
## 558 100001342 9357 0.00010153082
## 559 100001347 9471 0.00020306164
## 560 100001349 9419 0.00010153082
## 561 100001350 9350 0.00020306164
## 562 100001353 9236 0.00010153082
## 563 100001354 9358 0.00020306164
## 564 100001356 9398 0.00010153082
## 565 100001360 9503 0.00010153082
## 566 100001363 9313 0.00010153082
## 567 100001367 9328 0.00020306164
## 568 100001373 9451 0.00020306164
## 569 100001375 9440 0.00010153082
## 570 100001376 9501 0.00006768721
## 571 100001378 9427 0.00010153082
## 572 100001381 9337 0.00020306164
## 573 100001383 9482 0.00010153082
## 574 100001391 9380 0.00010153082
## 575 100001393 9386 0.00005076541
## 576 100001395 9394 0.00010153082
## 577 100001401 9249 0.00020306164
## 578 100001402 9416 0.00010153082
## 579 100001403 9263 0.00020306164
## 580 100001404 9287 0.00020306164
## 581 100001405 9260 0.00005076541
## 582 100001407 9295 0.00010153082
## 583 100001411 9338 0.00020306164
## 584 100001412 9298 0.00020306164
## 585 100001414 9476 0.00020306164
## 586 100001417 9256 0.00006768721
## 587 100001418 9481 0.00020306164
## 588 100001419 9468 0.00006768721
## 589 100001420 9332 0.00010153082
## 590 100001421 9265 0.00010153082
## 591 100001422 9312 0.00020306164
## 592 100001423 9380 0.00010153082
## 593 100001425 9459 0.00020306164
## 594 100001427 9452 0.00010153082
## 595 100001428 9280 0.00010153082
## 596 100001434 9275 0.00020306164
## 597 100001435 9255 0.00003384361
## 598 100001436 9466 0.00005076541
## 599 100001439 9463 0.00020306164
## 600 100001440 9493 0.00010153082
## 601 100001441 9498 0.00020306164
## 602 100001443 9301 0.00020306164
## 603 100001444 9313 0.00010153082
## 604 100001445 9291 0.00020306164
## 605 100001448 9340 0.00010153082
## 606 100001449 9258 0.00020306164
## 607 100001456 9459 0.00020306164
## 608 100001460 9377 0.00020306164
## 609 100001463 9308 0.00010153082
## 610 100001468 9299 0.00010153082
## 611 100001470 9274 0.00020306164
## 612 100001474 9469 0.00020306164
## 613 100001480 9414 0.00020306164
## 614 100001483 9248 0.00010153082
## 615 100001487 9411 0.00020306164
## 616 100001488 9389 0.00020306164
## 617 100001491 9480 0.00020306164
## 618 100001494 9495 0.00005076541
## 619 100001495 9425 0.00020306164
## 620 100001497 9405 0.00010153082
## 621 100001501 9324 0.00010153082
## 622 100001503 9394 0.00020306164
## 623 100001506 9328 0.00010153082
## 624 100001512 9230 0.00010153082
## 625 100001517 9230 0.00020306164
## 626 100001518 9318 0.00020306164
## 627 100001522 9244 0.00010153082
## 628 100001523 9369 0.00006768721
## 629 100001524 9309 0.00010153082
## 630 100001525 9380 0.00010153082
## 631 100001526 9388 0.00010153082
## 632 100001528 9253 0.00010153082
## 633 100001529 9471 0.00006768721
## 634 100001530 9448 0.00020306164
## 635 100001534 9236 0.00010153082
## 636 100001538 9404 0.00010153082
## 637 100001540 9464 0.00020306164
## 638 100001541 9326 0.00010153082
## 639 100001547 9261 0.00020306164
## 640 100001549 9309 0.00006768721
## 641 100001551 9459 0.00010153082
## 642 100001554 9382 0.00005076541
## 643 100001564 9398 0.00020306164
## 644 100001565 9286 0.00020306164
## 645 100001566 9361 0.00010153082
## 646 100001569 9330 0.00010153082
## 647 100001572 9400 0.00020306164
## 648 100001573 9262 0.00020306164
## 649 100001574 9448 0.00020306164
## 650 100001575 9275 0.00010153082
## 651 100001576 9293 0.00005076541
## 652 100001586 9250 0.00010153082
## 653 100001594 9474 0.00010153082
## 654 100001597 9247 0.00020306164
## 655 100001598 9324 0.00006768721
## 656 100001599 9394 0.00020306164
## 657 100001600 9482 0.00005076541
## 658 100001602 9439 0.00020306164
## 659 100001603 9490 0.00006768721
## 660 100001604 9446 0.00006768721
## 661 100001615 9350 0.00020306164
## 662 100001620 9502 0.00005076541
## 663 100001624 9271 0.00005076541
## 664 100001626 9381 0.00020306164
## 665 100001627 9448 0.00010153082
## 666 100001628 9424 0.00020306164
## 667 100001629 9329 0.00020306164
## 668 100001631 9485 0.00020306164
## 669 100001635 9411 0.00020306164
## 670 100001638 9253 0.00010153082
## 671 100001642 9499 0.00010153082
## 672 100001644 9380 0.00020306164
## 673 100001649 9252 0.00010153082
## 674 100001650 9249 0.00020306164
## 675 100001651 9268 0.00010153082
## 676 100001652 9233 0.00010153082
## 677 100001654 9300 0.00010153082
## 678 100001655 9354 0.00020306164
## 679 100001656 9424 0.00020306164
## 680 100001657 9324 0.00020306164
## 681 100001663 9286 0.00010153082
## 682 100001665 9257 0.00002256240
## 683 100001668 9496 0.00006768721
## 684 100001669 9281 0.00020306164
## 685 100001672 9385 0.00020306164
## 686 100001674 9479 0.00010153082
## 687 100001677 9482 0.00010153082
## 688 100001678 9318 0.00010153082
## 689 100001679 9327 0.00013681033
## 690 100001680 9474 0.00010153082
## 691 100001681 9284 0.00020306164
## 692 100001682 9356 0.00020306164
## 693 100001683 9260 0.00010153082
## 694 100001688 9231 0.00010153082
## 695 100001689 9438 0.00020306164
## 696 100001690 9439 0.00010153082
## 697 100001691 9488 0.00020306164
## 698 100001692 9457 0.00010153082
## 699 100001696 9235 0.00006768721
## 700 100001700 9293 0.00020306164
## 701 100001701 9336 0.00010153082
## 702 100001705 9308 0.00010153082
## 703 100001707 9483 0.00010153082
## 704 100001708 9378 0.00010153082
## 705 100001709 9237 0.00010153082
## 706 100001713 9251 0.00020306164
## 707 100001714 9335 0.00010153082
## 708 100001716 9332 0.00010153082
## 709 100001717 9426 0.00006768721
## 710 100001720 9231 0.00010153082
## 711 100001722 9502 0.00010153082
## 712 100001726 9369 0.00010153082
## 713 100001728 9394 0.00010153082
## 714 100001733 9315 0.00010153082
## 715 100001734 9460 0.00010153082
## 716 100001735 9242 0.00006768721
## 717 100001740 9350 0.00020306164
## 718 100001744 9487 0.00010153082
## 719 100001746 9309 0.00010153082
## 720 100001748 9450 0.00020306164
## 721 100001749 9401 0.00020306164
## 722 100001755 9238 0.00020306164
## 723 100001758 9260 0.00006768721
## 724 100001760 9230 0.00010153082
## 725 100001763 9382 0.00020306164
## 726 100001764 9384 0.00010153082
## 727 100001767 9350 0.00006768721
## 728 100001768 9297 0.00010153082
## 729 100001770 9399 0.00004061233
## 730 100001771 9245 0.00010153082
## 731 100001772 9427 0.00010153082
## 732 100001773 9351 0.00006768721
## 733 100001774 9255 0.00010153082
## 734 100001776 9456 0.00010153082
## 735 100001781 9386 0.00020306164
## 736 100001783 9488 0.00006768721
## 737 100001786 9413 0.00010153082
## 738 100001790 9229 0.00020306164
## 739 100001791 9331 0.00020306164
## 740 100001793 9366 0.00020306164
## 741 100001795 9333 0.00020306164
## 742 100001796 9281 0.00010153082
## 743 100001797 9247 0.00010153082
## 744 100001798 9340 0.00020306164
## 745 100001800 9493 0.00005076541
## 746 100001801 9320 0.00010153082
## 747 100001804 9303 0.00006768721
## 748 100001805 9485 0.00020306164
## 749 100001807 9427 0.00006768721
## 750 100001815 9304 0.00010153082
## 751 100001817 9324 0.00010153082
## 752 100001818 9262 0.00010153082
## 753 100001819 9365 0.00005076541
## 754 100001820 9469 0.00020306164
## 755 100001827 9349 0.00010153082
## 756 100001830 9238 0.00005076541
## 757 100001832 9240 0.00010153082
## 758 100001834 9433 0.00020306164
## 759 100001839 9247 0.00020306164
## 760 100001842 9257 0.00004061233
## 761 100001845 9476 0.00010153082
## 762 100001849 9478 0.00006768721
## 763 100001850 9360 0.00010153082
## 764 100001852 9399 0.00010153082
## 765 100001854 9405 0.00005076541
## 766 100001856 9374 0.00020306164
## 767 100001862 9275 0.00010153082
## 768 100001869 9331 0.00020306164
## 769 100001871 9334 0.00010153082
## 770 100001874 9289 0.00010153082
## 771 100001877 9448 0.00010153082
## 772 100001880 9382 0.00010153082
## 773 100001881 9351 0.00010153082
## 774 100001883 9352 0.00010153082
## 775 100001885 9336 0.00020306164
## 776 100001888 9333 0.00020306164
## 777 100001890 9387 0.00010153082
## 778 100001892 9487 0.00010153082
## 779 100001893 9306 0.00006768721
## 780 100001895 9379 0.00020306164
## 781 100001897 9456 0.00010153082
## 782 100001904 9382 0.00006768721
## 783 100001905 9429 0.00010153082
## 784 100001909 9485 0.00010153082
## 785 100001912 9467 0.00010153082
## 786 100001914 9395 0.00010153082
## 787 100001915 9255 0.00006768721
## 788 100001916 9398 0.00010153082
## 789 100001918 9391 0.00010153082
## 790 100001919 9276 0.00020306164
## 791 100001921 9235 0.00010153082
## 792 100001923 9333 0.00005076541
## 793 100001924 9332 0.00020306164
## 794 100001930 9309 0.00020306164
## 795 100001931 9320 0.00020306164
## 796 100001934 9252 0.00020306164
## 797 100001936 9286 0.00006768721
## 798 100001939 9403 0.00010153082
## 799 100001948 9262 0.00020306164
## 800 100001951 9348 0.00010153082
## 801 100001953 9386 0.00010153082
## 802 100001955 9255 0.00020306164
## 803 100001956 9428 0.00010153082
## 804 100001957 9288 0.00006768721
## 805 100001961 9248 0.00020306164
## 806 100001963 9374 0.00010153082
## 807 100001967 9243 0.00005076541
## 808 100001969 9235 0.00020306164
## 809 100001972 9361 0.00005076541
## 810 100001973 9304 0.00010153082
## 811 100001974 9325 0.00010153082
## 812 100001979 9253 0.00010153082
## 813 100001981 9490 0.00010153082
## 814 100001986 9270 0.00020306164
## 815 100001992 9383 0.00010153082
## 816 100001993 9257 0.00010153082
## 817 100001995 9470 0.00020306164
## 818 100001996 9460 0.00020306164
## 819 100001999 9259 0.00010153082
## 820 100002000 9250 0.00020306164
## 821 100002003 9241 0.00010153082
## 822 100002004 9261 0.00010153082
## 823 100002005 9440 0.00010153082
## 824 100002007 9445 0.00020306164
## 825 100002008 9505 0.00020306164
## 826 100002011 9413 0.00020306164
## 827 100002012 9293 0.00020306164
## 828 100002019 9487 0.00010153082
## 829 100002024 9355 0.00020306164
## 830 100002025 9477 0.00010153082
## 831 100002026 9439 0.00010153082
## 832 100002030 9312 0.00010153082
## 833 100002034 9436 0.00005076541
## 834 100002041 9371 0.00020306164
## 835 100002043 9385 0.00010153082
## 836 100002045 9332 0.00010153082
## 837 100002046 9480 0.00004061233
## 838 100002047 9251 0.00020306164
## 839 100002049 9398 0.00003384361
## 840 100002050 9252 0.00010153082
## 841 100002051 9295 0.00010153082
## 842 100002052 9272 0.00010153082
## 843 100002059 9231 0.00010153082
## 844 100002061 9314 0.00005076541
## 845 100002062 9380 0.00020306164
## 846 100002066 9419 0.00002256240
## 847 100002067 9431 0.00010153082
## 848 100002068 9445 0.00010153082
## 849 100002069 9435 0.00006768721
## 850 100002072 9497 0.00001682761
## 851 100002075 9485 0.00010153082
## 852 100002076 9311 0.00010153082
## 853 100002077 9435 0.00010153082
## 854 100002079 9440 0.00020306164
## 855 100002080 9305 0.00005076541
## 856 100002081 9365 0.00010153082
## 857 100002082 9480 0.00020306164
## 858 100002083 9430 0.00006768721
## 859 100002085 9360 0.00010153082
## 860 100002089 9241 0.00010153082
## 861 100002090 9494 0.00006768721
## 862 100002095 9257 0.00006768721
## 863 100002098 9285 0.00020306164
## 864 100002100 9338 0.00010153082
## 865 100002105 9237 0.00020306164
## 866 100002106 9325 0.00010153082
## 867 100002107 9300 0.00006768721
## 868 100002112 9294 0.00006768721
## 869 100002113 9310 0.00020306164
## 870 100002117 9369 0.00005076541
## 871 100002118 9428 0.00010153082
## 872 100002121 9444 0.00020306164
## 873 100002122 9354 0.00020306164
## 874 100002123 9365 0.00010153082
## 875 100002125 9340 0.00020306164
## 876 100002131 9446 0.00010153082
## 877 100002132 9371 0.00010153082
## 878 100002136 9277 0.00020306164
## 879 100002137 9355 0.00020306164
## 880 100002140 9366 0.00010153082
## 881 100002141 9330 0.00010153082
## 882 100002142 9333 0.00010153082
## 883 100002143 9347 0.00020306164
## 884 100002146 9439 0.00020306164
## 885 100002152 9409 0.00020306164
## 886 100002154 9502 0.00010153082
## 887 100002155 9374 0.00002900881
## 888 100002156 9382 0.00020306164
## 889 100002159 9277 0.00005076541
## 890 100002161 9419 0.00010153082
## 891 100002162 9252 0.00010153082
## 892 100002164 9500 0.00020306164
## 893 100002166 9283 0.00020306164
## 894 100002175 9478 0.00006768721
## 895 100002176 9459 0.00010153082
## 896 100002178 9287 0.00020306164
## 897 100002186 9320 0.00006768721
## 898 100002187 9428 0.00010153082
## 899 100002188 9364 0.00010153082
## 900 100002194 9287 0.00020306164
## 901 100002195 9384 0.00020306164
## 902 100002196 9278 0.00010153082
## 903 100002199 9250 0.00010153082
## 904 100002200 9393 0.00005076541
## 905 100002202 9231 0.00010153082
## 906 100002203 9343 0.00010153082
## 907 100002204 9238 0.00020306164
## 908 100002205 9305 0.00010153082
## 909 100002206 9308 0.00020306164
## 910 100002207 9373 0.00010153082
## 911 100002208 9419 0.00010153082
## 912 100002210 9263 0.00005076541
## 913 100002213 9265 0.00010153082
## 914 100002221 9336 0.00006768721
## 915 100002222 9304 0.00020306164
## 916 100002226 9396 0.00020306164
## 917 100002227 9391 0.00020306164
## 918 100002228 9423 0.00010153082
## 919 100002229 9457 0.00010153082
## 920 100002231 9294 0.00010153082
## 921 100002233 9472 0.00010153082
## 922 100002241 9421 0.00010153082
## 923 100002243 9491 0.00010153082
## 924 100002244 9406 0.00020306164
## 925 100002245 9448 0.00010153082
## 926 100002249 9294 0.00010153082
## 927 100002250 9251 0.00010153082
## 928 100002251 9330 0.00010153082
## 929 100002252 9280 0.00020306164
## 930 100002253 9448 0.00010153082
## 931 100002254 9448 0.00010153082
## 932 100002256 9385 0.00010153082
## 933 100002258 9410 0.00006768721
## 934 100002261 9432 0.00020306164
## 935 100002264 9272 0.00010153082
## 936 100002265 9436 0.00010153082
## 937 100002269 9358 0.00020306164
## 938 100002270 9326 0.00010153082
## 939 100002272 9327 0.00010153082
## 940 100002273 9247 0.00010153082
## 941 100002275 9256 0.00010153082
## 942 100002276 9439 0.00010153082
## 943 100002278 9321 0.00020306164
## 944 100002280 9381 0.00010153082
## 945 100002282 9266 0.00020306164
## 946 100002285 9451 0.00006768721
## 947 100002286 9282 0.00020306164
## 948 100002289 9424 0.00020306164
## 949 100002293 9345 0.00006768721
## 950 100002295 9318 0.00010153082
## 951 100002299 9480 0.00010153082
## 952 100002300 9276 0.00020306164
## 953 100002302 9488 0.00004061233
## 954 100002305 9259 0.00006768721
## 955 100002306 9351 0.00020306164
## 956 100002307 9363 0.00020306164
## 957 100002310 9233 0.00010153082
## 958 100002313 9373 0.00020306164
## 959 100002319 9431 0.00020306164
## 960 100002320 9231 0.00010153082
## 961 100002325 9361 0.00010153082
## 962 100002328 9247 0.00010153082
## 963 100002334 9289 0.00005076541
## 964 100002336 9384 0.00020306164
## 965 100002338 9487 0.00006768721
## 966 100002339 9430 0.00020306164
## 967 100002341 9270 0.00020306164
## 968 100002345 9345 0.00010153082
## 969 100002347 9276 0.00020306164
## 970 100002348 9255 0.00010153082
## 971 100002351 9395 0.00005076541
## 972 100002354 9318 0.00010153082
## 973 100002356 9380 0.00020306164
## 974 100002357 9244 0.00010153082
## 975 100002358 9505 0.00020306164
## 976 100002360 9273 0.00010153082
## 977 100002361 9408 0.00004061233
## 978 100002363 9361 0.00010153082
## 979 100002364 9494 0.00020306164
## 980 100002366 9470 0.00010153082
## 981 100002367 9245 0.00020306164
## 982 100002368 9293 0.00010153082
## 983 100002369 9254 0.00010153082
## 984 100002370 9396 0.00010153082
## 985 100002371 9259 0.00006768721
## 986 100002372 9424 0.00010153082
## 987 100002374 9436 0.00005076541
## 988 100002379 9237 0.00020306164
## 989 100002380 9400 0.00020306164
## 990 100002381 9317 0.00020306164
## 991 100002383 9476 0.00010153082
## 992 100002385 9400 0.00010153082
## 993 100002386 9419 0.00010153082
## 994 100002387 9296 0.00010153082
## 995 100002390 9408 0.00020306164
## 996 100002393 9294 0.00005076541
## 997 100002396 9420 0.00010153082
## 998 100002398 9253 0.00020306164
## 999 100002400 9478 0.00010153082
## 1000 100002407 9370 0.00006768721
## 1001 100002408 9491 0.00010153082
## 1002 100002410 9335 0.00010153082
## 1003 100002412 9320 0.00010153082
## 1004 100002418 9382 0.00010153082
## 1005 100002420 9484 0.00006768721
## 1006 100002422 9329 0.00006768721
## 1007 100002424 9449 0.00020306164
## 1008 100002425 9408 0.00010153082
## 1009 100002430 9460 0.00010153082
## 1010 100002433 9227 0.00020306164
## 1011 100002438 9364 0.00020306164
## 1012 100002439 9442 0.00020306164
## 1013 100002440 9401 0.00010153082
## 1014 100002441 9368 0.00010153082
## 1015 100002442 9327 0.00010153082
## 1016 100002444 9421 0.00010153082
## 1017 100002452 9406 0.00020306164
## 1018 100002453 9281 0.00020306164
## 1019 100002455 9343 0.00010153082
## 1020 100002457 9411 0.00020306164
## 1021 100002460 9456 0.00005076541
## 1022 100002462 9470 0.00020306164
## 1023 100002467 9373 0.00020306164
## 1024 100002468 9248 0.00010153082
## 1025 100002474 9429 0.00010153082
## 1026 100002476 9343 0.00010153082
## 1027 100002478 9271 0.00005076541
## 1028 100002479 9249 0.00010153082
## 1029 100002484 9284 0.00010153082
## 1030 100002486 9491 0.00006768721
## 1031 100002490 9401 0.00010153082
## 1032 100002493 9293 0.00010153082
## 1033 100002494 9259 0.00020306164
## 1034 100002495 9291 0.00010153082
## 1035 100002496 9231 0.00010153082
## 1036 100002499 9465 0.00010153082
## 1037 100002500 9436 0.00010153082
## 1038 100002501 9449 0.00020306164
## 1039 100002504 9267 0.00010153082
## 1040 100002505 9485 0.00020306164
## 1041 100002507 9477 0.00006768721
## 1042 100002511 9389 0.00020306164
## 1043 100002513 9501 0.00010153082
## 1044 100002516 9227 0.00010153082
## 1045 100002518 9348 0.00020306164
## 1046 100002523 9311 0.00006768721
## 1047 100002524 9295 0.00006768721
## 1048 100002525 9405 0.00006768721
## 1049 100002526 9248 0.00020306164
## 1050 100002530 9257 0.00020306164
## 1051 100002540 9398 0.00010153082
## 1052 100002541 9237 0.00020306164
## 1053 100002542 9413 0.00020306164
## 1054 100002543 9254 0.00010153082
## 1055 100002546 9428 0.00020306164
## 1056 100002548 9420 0.00020306164
## 1057 100002554 9236 0.00010153082
## 1058 100002555 9441 0.00006768721
## 1059 100002556 9456 0.00006768721
## 1060 100002557 9315 0.00020306164
## 1061 100002559 9270 0.00020306164
## 1062 100002560 9406 0.00010153082
## 1063 100002561 9347 0.00020306164
## 1064 100002564 9256 0.00010153082
## 1065 100002570 9437 0.00005076541
## 1066 100002572 9313 0.00020306164
## 1067 100002573 9329 0.00010153082
## 1068 100002574 9436 0.00020306164
## 1069 100002576 9489 0.00006768721
## 1070 100002577 9296 0.00005076541
## 1071 100002579 9334 0.00010153082
## 1072 100002583 9241 0.00010153082
## 1073 100002584 9268 0.00010153082
## 1074 100002585 9452 0.00010153082
## 1075 100002588 9346 0.00020306164
## 1076 100002590 9411 0.00010153082
## 1077 100002594 9256 0.00020306164
## 1078 100002595 9494 0.00010153082
## 1079 100002599 9346 0.00020306164
## 1080 100002602 9369 0.00006768721
## 1081 100002604 9418 0.00020306164
## 1082 100002605 9338 0.00020306164
## 1083 100002606 9275 0.00010153082
## 1084 100002613 9291 0.00010153082
## 1085 100002614 9268 0.00010153082
## 1086 100002617 9422 0.00006768721
## 1087 100002618 9322 0.00010153082
## 1088 100002620 9427 0.00010153082
## 1089 100002623 9282 0.00010153082
## 1090 100002624 9414 0.00010153082
## 1091 100002626 9286 0.00010153082
## 1092 100002630 9345 0.00010153082
## 1093 100002631 9404 0.00020306164
## 1094 100002632 9345 0.00010153082
## 1095 100002633 9339 0.00010153082
## 1096 100002634 9300 0.00010153082
## 1097 100002636 9449 0.00020306164
## 1098 100002638 9489 0.00020306164
## 1099 100002645 9343 0.00010153082
## 1100 100002647 9377 0.00020306164
## 1101 100002650 9431 0.00006768721
## 1102 100002651 9328 0.00020306164
## 1103 100002655 9265 0.00020306164
## 1104 100002656 9371 0.00020306164
## 1105 100002660 9395 0.00020306164
## 1106 100002661 9435 0.00010153082
## 1107 100002666 9312 0.00020306164
## 1108 100002668 9311 0.00020306164
## 1109 100002672 9461 0.00010153082
## 1110 100002673 9286 0.00010153082
## 1111 100002674 9310 0.00020306164
## 1112 100002676 9399 0.00020306164
## 1113 100002680 9307 0.00010153082
## 1114 100002681 9247 0.00010153082
## 1115 100002686 9293 0.00010153082
## 1116 100002687 9365 0.00020306164
## 1117 100002692 9474 0.00010153082
## 1118 100002696 9374 0.00020306164
## 1119 100002702 9347 0.00020306164
## 1120 100002704 9328 0.00010153082
## 1121 100002705 9301 0.00006768721
## 1122 100002710 9279 0.00020306164
## 1123 100002712 9354 0.00010153082
## 1124 100002715 9256 0.00005076541
## 1125 100002716 9316 0.00020306164
## 1126 100002717 9348 0.00005076541
## 1127 100002721 9485 0.00010153082
## 1128 100002722 9489 0.00006768721
## 1129 100002723 9273 0.00010153082
## 1130 100002727 9317 0.00020306164
## 1131 100002728 9311 0.00005076541
## 1132 100002729 9262 0.00002256240
## 1133 100002732 9302 0.00005076541
## 1134 100002735 9339 0.00010153082
## 1135 100002743 9323 0.00020306164
## 1136 100002745 9311 0.00006768721
## 1137 100002749 9466 0.00010153082
## 1138 100002752 9497 0.00010153082
## 1139 100002756 9362 0.00020306164
## 1140 100002760 9395 0.00010153082
## 1141 100002762 9260 0.00020306164
## 1142 100002764 9414 0.00020306164
## 1143 100002771 9348 0.00010153082
## 1144 100002772 9325 0.00005076541
## 1145 100002774 9246 0.00010153082
## 1146 100002776 9327 0.00010153082
## 1147 100002777 9407 0.00020306164
## 1148 100002779 9273 0.00020306164
## 1149 100002780 9237 0.00010153082
## 1150 100002785 9311 0.00020306164
## 1151 100002787 9329 0.00020306164
## 1152 100002790 9295 0.00020306164
## 1153 100002794 9342 0.00020306164
## 1154 100002797 9419 0.00006768721
## 1155 100002799 9293 0.00010153082
## 1156 100002800 9286 0.00010153082
## 1157 100002801 9454 0.00010153082
## 1158 100002802 9370 0.00020306164
## 1159 100002804 9379 0.00020306164
## 1160 100002805 9233 0.00010153082
## 1161 100002808 9417 0.00010153082
## 1162 100002811 9424 0.00010153082
## 1163 100002815 9267 0.00020306164
## 1164 100002816 9360 0.00020306164
## 1165 100002817 9300 0.00020306164
## 1166 100002819 9399 0.00020306164
## 1167 100002823 9417 0.00010153082
## 1168 100002824 9453 0.00004061233
## 1169 100002826 9478 0.00010153082
## 1170 100002827 9293 0.00010153082
## 1171 100002831 9272 0.00010153082
## 1172 100002832 9319 0.00010153082
## 1173 100002833 9370 0.00010153082
## 1174 100002834 9342 0.00020306164
## 1175 100002836 9243 0.00010153082
## 1176 100002838 9305 0.00010153082
## 1177 100002840 9292 0.00006768721
## 1178 100002845 9346 0.00020306164
## 1179 100002848 9450 0.00010153082
## 1180 100002850 9417 0.00010153082
## 1181 100002852 9405 0.00010153082
## 1182 100002853 9447 0.00010153082
## 1183 100002857 9286 0.00020306164
## 1184 100002859 9365 0.00010153082
## 1185 100002863 9411 0.00020306164
## 1186 100002865 9256 0.00010153082
## 1187 100002866 9476 0.00010153082
## 1188 100002868 9285 0.00020306164
## 1189 100002869 9345 0.00020306164
## 1190 100002873 9249 0.00010153082
## 1191 100002874 9301 0.00020306164
## 1192 100002878 9407 0.00010153082
## 1193 100002889 9482 0.00020306164
## 1194 100002893 9456 0.00010153082
## 1195 100002897 9419 0.00010153082
## 1196 100002901 9357 0.00020306164
## 1197 100002902 9421 0.00010153082
## 1198 100002906 9296 0.00010153082
## 1199 100002908 9306 0.00010153082
## 1200 100002912 9484 0.00010153082
## 1201 100002913 9280 0.00010153082
## 1202 100002914 9313 0.00020306164
## 1203 100002917 9497 0.00010153082
## 1204 100002920 9397 0.00020306164
## 1205 100002921 9318 0.00010153082
## 1206 100002923 9488 0.00020306164
## 1207 100002924 9502 0.00020306164
## 1208 100002927 9332 0.00020306164
## 1209 100002930 9406 0.00010153082
## 1210 100002934 9335 0.00010153082
## 1211 100002935 9332 0.00010153082
## 1212 100002936 9265 0.00010153082
## 1213 100002937 9251 0.00010153082
## 1214 100002941 9343 0.00006768721
## 1215 100002944 9423 0.00020306164
## 1216 100002946 9289 0.00020306164
## 1217 100002950 9500 0.00020306164
## 1218 100002953 9312 0.00020306164
## 1219 100002955 9243 0.00010153082
## 1220 100002961 9402 0.00005076541
## 1221 100002962 9380 0.00006768721
## 1222 100002963 9440 0.00005076541
## 1223 100002964 9265 0.00005076541
## 1224 100002965 9279 0.00005076541
## 1225 100002970 9317 0.00006768721
## 1226 100002972 9480 0.00006768721
## 1227 100002974 9483 0.00010153082
## 1228 100002976 9379 0.00010153082
## 1229 100002980 9396 0.00006768721
## 1230 100002984 9451 0.00006768721
## 1231 100002986 9468 0.00020306164
## 1232 100002987 9306 0.00020306164
## 1233 100002991 9323 0.00010153082
## 1234 100002992 9457 0.00010153082
## 1235 100002998 9272 0.00010153082
## 1236 100003000 9230 0.00010153082
## 1237 100003001 9274 0.00010153082
## 1238 100003002 9248 0.00010153082
## 1239 100003003 9344 0.00010153082
## 1240 100003004 9453 0.00020306164
## 1241 100003005 9426 0.00010153082
## 1242 100003010 9269 0.00010153082
## 1243 100003013 9247 0.00020306164
## 1244 100003014 9256 0.00010153082
## 1245 100003015 9262 0.00006768721
## 1246 100003017 9418 0.00020306164
## 1247 100003018 9280 0.00010153082
## 1248 100003019 9243 0.00020306164
## 1249 100003020 9479 0.00020306164
## 1250 100003022 9361 0.00010153082
## 1251 100003025 9268 0.00010153082
## 1252 100003031 9395 0.00020306164
## 1253 100003036 9465 0.00010153082
## 1254 100003038 9413 0.00010153082
## 1255 100003041 9414 0.00020306164
## 1256 100003042 9496 0.00020306164
## 1257 100003044 9346 0.00010153082
## 1258 100003045 9461 0.00010153082
## 1259 100003046 9316 0.00010153082
## 1260 100003047 9353 0.00020306164
## 1261 100003052 9411 0.00010153082
## 1262 100003054 9355 0.00010153082
## 1263 100003056 9330 0.00006768721
## 1264 100003058 9230 0.00020306164
## 1265 100003064 9480 0.00020306164
## 1266 100003069 9427 0.00020306164
## 1267 100003071 9335 0.00020306164
## 1268 100003072 9373 0.00010153082
## 1269 100003073 9349 0.00010153082
## 1270 100003074 9328 0.00006768721
## 1271 100003075 9369 0.00010153082
## 1272 100003076 9254 0.00010153082
## 1273 100003077 9329 0.00010153082
## 1274 100003078 9333 0.00020306164
## 1275 100003079 9265 0.00010153082
## 1276 100003084 9503 0.00020306164
## 1277 100003087 9263 0.00010153082
## 1278 100003088 9340 0.00010153082
## 1279 100003090 9311 0.00010153082
## 1280 100003092 9371 0.00005076541
## 1281 100003093 9419 0.00010153082
## 1282 100003094 9441 0.00010153082
## 1283 100003098 9391 0.00020306164
## 1284 100003099 9404 0.00020306164
## 1285 100003101 9429 0.00020306164
## 1286 100003103 9365 0.00010153082
## 1287 100003108 9417 0.00020306164
## 1288 100003109 9461 0.00020306164
## 1289 100003112 9329 0.00020306164
## 1290 100003113 9463 0.00010153082
## 1291 100003114 9431 0.00020306164
## 1292 100003115 9498 0.00010153082
## 1293 100003116 9443 0.00003384361
## 1294 100003118 9409 0.00010153082
## 1295 100003119 9289 0.00020306164
## 1296 100003124 9315 0.00010153082
## 1297 100003128 9434 0.00020306164
## 1298 100003130 9304 0.00010153082
## 1299 100003136 9401 0.00010153082
## 1300 100003138 9329 0.00013681033
## 1301 100003140 9439 0.00010153082
## 1302 100003141 9439 0.00010153082
## 1303 100003142 9363 0.00020306164
## 1304 100003143 9359 0.00020306164
## 1305 100003145 9465 0.00020306164
## 1306 100003146 9245 0.00010153082
## 1307 100003150 9227 0.00010153082
## 1308 100003151 9242 0.00010153082
## 1309 100003152 9360 0.00010153082
## 1310 100003154 9341 0.00010153082
## 1311 100003159 9472 0.00020306164
## 1312 100003161 9268 0.00005076541
## 1313 100003162 9390 0.00010153082
## 1314 100003163 9254 0.00010153082
## 1315 100003165 9482 0.00020306164
## 1316 100003166 9429 0.00020306164
## 1317 100003167 9380 0.00010153082
## 1318 100003175 9299 0.00020306164
## 1319 100003177 9234 0.00020306164
## 1320 100003180 9355 0.00010153082
## 1321 100003181 9334 0.00010153082
## 1322 100003183 9381 0.00020306164
## 1323 100003184 9232 0.00020306164
## 1324 100003188 9454 0.00010153082
## 1325 100003189 9422 0.00006768721
## 1326 100003192 9328 0.00010153082
## 1327 100003194 9470 0.00020306164
## 1328 100003196 9370 0.00006768721
## 1329 100003197 9474 0.00010153082
## 1330 100003201 9316 0.00010153082
## 1331 100003206 9354 0.00010153082
## 1332 100003208 9324 0.00010153082
## 1333 100003212 9356 0.00020306164
## 1334 100003216 9458 0.00006768721
## 1335 100003217 9374 0.00006768721
## 1336 100003221 9402 0.00010153082
## 1337 100003222 9494 0.00020306164
## 1338 100003223 9260 0.00010153082
## 1339 100003224 9314 0.00020306164
## 1340 100003225 9444 0.00020306164
## 1341 100003227 9352 0.00020306164
## 1342 100003228 9239 0.00020306164
## 1343 100003230 9435 0.00020306164
## 1344 100003231 9394 0.00005076541
## 1345 100003238 9386 0.00020306164
## 1346 100003246 9349 0.00006768721
## 1347 100003250 9277 0.00020306164
## 1348 100003251 9256 0.00010153082
## 1349 100003253 9314 0.00020306164
## 1350 100003255 9244 0.00006768721
## 1351 100003261 9298 0.00020306164
## 1352 100003263 9499 0.00010153082
## 1353 100003267 9380 0.00010153082
## 1354 100003269 9368 0.00010153082
## 1355 100003270 9428 0.00010153082
## 1356 100003273 9475 0.00020306164
## 1357 100003283 9480 0.00010153082
## 1358 100003288 9286 0.00010153082
## 1359 100003290 9286 0.00010153082
## 1360 100003291 9298 0.00020306164
## 1361 100003297 9371 0.00020306164
## 1362 100003298 9227 0.00020306164
## 1363 100003301 9447 0.00010153082
## 1364 100003302 9313 0.00010153082
## 1365 100003305 9472 0.00010153082
## 1366 100003306 9327 0.00010153082
## 1367 100003307 9282 0.00010153082
## 1368 100003309 9499 0.00010153082
## 1369 100003311 9471 0.00010153082
## 1370 100003312 9492 0.00005076541
## 1371 100003313 9263 0.00020306164
## 1372 100003319 9476 0.00020306164
## 1373 100003323 9478 0.00020306164
## 1374 100003326 9335 0.00010153082
## 1375 100003329 9444 0.00010153082
## 1376 100003332 9228 0.00010153082
## 1377 100003333 9432 0.00010153082
## 1378 100003335 9394 0.00010153082
## 1379 100003337 9266 0.00006768721
## 1380 100003339 9287 0.00020306164
## 1381 100003344 9417 0.00010153082
## 1382 100003345 9346 0.00020306164
## 1383 100003346 9486 0.00006768721
## 1384 100003351 9484 0.00010153082
## 1385 100003352 9285 0.00020306164
## 1386 100003359 9443 0.00006768721
## 1387 100003362 9370 0.00020306164
## 1388 100003365 9294 0.00010153082
## 1389 100003370 9364 0.00020306164
## 1390 100003371 9439 0.00020306164
## 1391 100003376 9491 0.00010153082
## 1392 100003382 9289 0.00010153082
## 1393 100003385 9497 0.00010153082
## 1394 100003386 9277 0.00005076541
## 1395 100003387 9432 0.00010153082
## 1396 100003389 9289 0.00006768721
## 1397 100003390 9413 0.00010153082
## 1398 100003391 9468 0.00010153082
## 1399 100003394 9292 0.00010153082
## 1400 100003395 9288 0.00010153082
## 1401 100003397 9501 0.00010153082
## 1402 100003406 9301 0.00005076541
## 1403 100003408 9430 0.00010153082
## 1404 100003410 9371 0.00020306164
## 1405 100003412 9254 0.00010153082
## 1406 100003417 9494 0.00020306164
## 1407 100003420 9273 0.00020306164
## 1408 100003422 9374 0.00010153082
## 1409 100003423 9365 0.00020306164
## 1410 100003427 9274 0.00020306164
## 1411 100003431 9304 0.00020306164
## 1412 100003432 9371 0.00020306164
## 1413 100003433 9374 0.00010153082
## 1414 100003435 9250 0.00020306164
## 1415 100003437 9445 0.00020306164
## 1416 100003441 9256 0.00020306164
## 1417 100003446 9251 0.00010153082
## 1418 100003447 9380 0.00020306164
## 1419 100003450 9247 0.00010153082
## 1420 100003451 9291 0.00010153082
## 1421 100003452 9261 0.00020306164
## 1422 100003454 9302 0.00010153082
## 1423 100003455 9322 0.00006768721
## 1424 100003456 9443 0.00010153082
## 1425 100003462 9411 0.00020306164
## 1426 100003463 9383 0.00010153082
## 1427 100003464 9295 0.00020306164
## 1428 100003465 9259 0.00010153082
## 1429 100003466 9330 0.00010153082
## 1430 100003467 9367 0.00010153082
## 1431 100003468 9264 0.00020306164
## 1432 100003472 9254 0.00010153082
## 1433 100003473 9260 0.00010153082
## 1434 100003475 9360 0.00006768721
## 1435 100003476 9249 0.00010153082
## 1436 100003481 9337 0.00020306164
## 1437 100003484 9284 0.00006768721
## 1438 100003485 9488 0.00010153082
## 1439 100003487 9403 0.00020306164
## 1440 100003488 9378 0.00010153082
## 1441 100003491 9396 0.00010153082
## 1442 100003496 9341 0.00020306164
## 1443 100003497 9444 0.00010153082
## 1444 100003498 9393 0.00020306164
## 1445 100003501 9266 0.00010153082
## 1446 100003502 9254 0.00010153082
## 1447 100003503 9488 0.00010153082
## 1448 100003505 9309 0.00005076541
## 1449 100003507 9305 0.00020306164
## 1450 100003508 9323 0.00020306164
## 1451 100003509 9383 0.00020306164
## 1452 100003512 9235 0.00020306164
## 1453 100003519 9305 0.00020306164
## 1454 100003524 9476 0.00005076541
## 1455 100003527 9328 0.00020306164
## 1456 100003529 9233 0.00010153082
## 1457 100003530 9370 0.00020306164
## 1458 100003534 9496 0.00010153082
## 1459 100003535 9439 0.00010153082
## 1460 100003538 9484 0.00010153082
## 1461 100003541 9282 0.00020306164
## 1462 100003546 9254 0.00010153082
## 1463 100003547 9490 0.00010153082
## 1464 100003551 9445 0.00010153082
## 1465 100003553 9405 0.00010153082
## 1466 100003557 9429 0.00010153082
## 1467 100003559 9481 0.00020306164
## 1468 100003562 9349 0.00005076541
## 1469 100003565 9403 0.00010153082
## 1470 100003566 9231 0.00010153082
## 1471 100003569 9429 0.00010153082
## 1472 100003570 9254 0.00010153082
## 1473 100003574 9288 0.00005076541
## 1474 100003576 9354 0.00020306164
## 1475 100003577 9298 0.00010153082
## 1476 100003581 9450 0.00010153082
## 1477 100003584 9439 0.00006768721
## 1478 100003586 9376 0.00006768721
## 1479 100003587 9372 0.00020306164
## 1480 100003594 9237 0.00020306164
## 1481 100003595 9428 0.00006768721
## 1482 100003597 9236 0.00010153082
## 1483 100003599 9288 0.00006768721
## 1484 100003600 9336 0.00006768721
## 1485 100003603 9447 0.00010153082
## 1486 100003605 9453 0.00010153082
## 1487 100003610 9296 0.00020306164
## 1488 100003612 9435 0.00020306164
## 1489 100003617 9375 0.00010153082
## 1490 100003619 9371 0.00010153082
## 1491 100003622 9309 0.00010153082
## 1492 100003623 9233 0.00010153082
## 1493 100003626 9286 0.00010153082
## 1494 100003627 9417 0.00010153082
## 1495 100003628 9424 0.00020306164
## 1496 100003631 9250 0.00020306164
## 1497 100003632 9281 0.00010153082
## 1498 100003633 9351 0.00020306164
## 1499 100003635 9282 0.00010153082
## 1500 100003636 9412 0.00020306164
## 1501 100003637 9503 0.00020306164
## 1502 100003641 9452 0.00020306164
## 1503 100003643 9419 0.00010153082
## 1504 100003647 9331 0.00010153082
## 1505 100003652 9505 0.00020306164
## 1506 100003653 9462 0.00010153082
## 1507 100003659 9425 0.00020306164
## 1508 100003661 9306 0.00020306164
## 1509 100003662 9421 0.00010153082
## 1510 100003667 9302 0.00020306164
## 1511 100003669 9478 0.00010153082
## 1512 100003672 9369 0.00004061233
## 1513 100003675 9399 0.00020306164
## 1514 100003693 9249 0.00005076541
## 1515 100003694 9239 0.00010153082
## 1516 100003696 9351 0.00020306164
## 1517 100003699 9244 0.00020306164
## 1518 100003703 9306 0.00020306164
## 1519 100003710 9423 0.00010153082
## 1520 100003711 9267 0.00006768721
## 1521 100003715 9307 0.00010153082
## 1522 100003719 9437 0.00010153082
## 1523 100003720 9356 0.00010153082
## 1524 100003721 9449 0.00010153082
## 1525 100003724 9349 0.00006768721
## 1526 100003725 9336 0.00010153082
## 1527 100003726 9276 0.00006768721
## 1528 100003727 9301 0.00020306164
## 1529 100003729 9289 0.00010153082
## 1530 100003730 9463 0.00010153082
## 1531 100003733 9290 0.00010153082
## 1532 100003736 9459 0.00010153082
## 1533 100003737 9299 0.00010153082
## 1534 100003738 9286 0.00010153082
## 1535 100003740 9478 0.00010153082
## 1536 100003741 9348 0.00020306164
## 1537 100003742 9459 0.00010153082
## 1538 100003746 9405 0.00006768721
## 1539 100003747 9435 0.00010153082
## 1540 100003748 9310 0.00010153082
## 1541 100003749 9375 0.00010153082
## 1542 100003751 9496 0.00010153082
## 1543 100003756 9464 0.00020306164
## 1544 100003758 9470 0.00010153082
## 1545 100003759 9411 0.00010153082
## 1546 100003763 9405 0.00006768721
## 1547 100003764 9398 0.00020306164
## 1548 100003765 9309 0.00020306164
## 1549 100003766 9388 0.00006768721
## 1550 100003767 9241 0.00010153082
## 1551 100003768 9478 0.00010153082
## 1552 100003771 9434 0.00020306164
## 1553 100003773 9365 0.00010153082
## 1554 100003774 9325 0.00010153082
## 1555 100003780 9399 0.00020306164
## 1556 100003781 9392 0.00010153082
## 1557 100003782 9275 0.00010153082
## 1558 100003783 9462 0.00020306164
## 1559 100003784 9337 0.00010153082
## 1560 100003786 9306 0.00006768721
## 1561 100003788 9406 0.00010153082
## 1562 100003791 9365 0.00020306164
## 1563 100003794 9493 0.00010153082
## 1564 100003795 9296 0.00020306164
## 1565 100003800 9301 0.00006768721
## 1566 100003802 9417 0.00010153082
## 1567 100003808 9456 0.00020306164
## 1568 100003810 9278 0.00010153082
## 1569 100003811 9461 0.00020306164
## 1570 100003815 9284 0.00010153082
## 1571 100003816 9498 0.00010153082
## 1572 100003817 9317 0.00020306164
## 1573 100003818 9352 0.00006768721
## 1574 100003820 9415 0.00020306164
## 1575 100003826 9475 0.00010153082
## 1576 100003838 9340 0.00010153082
## 1577 100003839 9503 0.00020306164
## 1578 100003840 9505 0.00010153082
## 1579 100003842 9369 0.00020306164
## 1580 100003845 9311 0.00005076541
## 1581 100003849 9435 0.00010153082
## 1582 100003858 9398 0.00010153082
## 1583 100003860 9263 0.00004061233
## 1584 100003861 9492 0.00006768721
## 1585 100003863 9327 0.00010153082
## 1586 100003864 9320 0.00010153082
## 1587 100003870 9433 0.00020306164
## 1588 100003871 9248 0.00020306164
## 1589 100003873 9236 0.00005076541
## 1590 100003874 9308 0.00020306164
## 1591 100003882 9341 0.00010153082
## 1592 100003888 9501 0.00010153082
## 1593 100003891 9315 0.00010153082
## 1594 100003892 9284 0.00005076541
## 1595 100003894 9277 0.00020306164
## 1596 100003897 9496 0.00020306164
## 1597 100003898 9462 0.00010153082
## 1598 100003901 9503 0.00020306164
## 1599 100003903 9446 0.00010153082
## 1600 100003904 9316 0.00020306164
## 1601 100003910 9269 0.00020306164
## 1602 100003913 9412 0.00010153082
## 1603 100003917 9333 0.00020306164
## 1604 100003923 9228 0.00010153082
## 1605 100003925 9339 0.00010153082
## 1606 100003927 9254 0.00020306164
## 1607 100003928 9305 0.00010153082
## 1608 100003930 9460 0.00010153082
## 1609 100003932 9377 0.00020306164
## 1610 100003936 9304 0.00010153082
## 1611 100003937 9498 0.00010153082
## 1612 100003942 9391 0.00010153082
## 1613 100003943 9359 0.00010153082
## 1614 100003944 9331 0.00010153082
## 1615 100003946 9462 0.00010153082
## 1616 100003948 9315 0.00020306164
## 1617 100003950 9318 0.00010153082
## 1618 100003951 9300 0.00005076541
## 1619 100003952 9397 0.00020306164
## 1620 100003956 9484 0.00020306164
## 1621 100003957 9406 0.00020306164
## 1622 100003959 9421 0.00020306164
## 1623 100003961 9259 0.00010153082
## 1624 100003962 9432 0.00020306164
## 1625 100003967 9496 0.00010153082
## 1626 100003969 9231 0.00020306164
## 1627 100003970 9300 0.00010153082
## 1628 100003972 9345 0.00020306164
## 1629 100003973 9403 0.00004061233
## 1630 100003976 9419 0.00006768721
## 1631 100003977 9503 0.00010153082
## 1632 100003979 9381 0.00020306164
## 1633 100003980 9420 0.00010153082
## 1634 100003981 9407 0.00010153082
## 1635 100003983 9306 0.00010153082
## 1636 100003986 9477 0.00010153082
## 1637 100003987 9352 0.00020306164
## 1638 100003988 9337 0.00010153082
## 1639 100003991 9327 0.00010153082
## 1640 100003993 9458 0.00020306164
## 1641 100003995 9457 0.00010153082
## 1642 100004001 9267 0.00010153082
## 1643 100004004 9426 0.00010153082
## 1644 100004006 9502 0.00010153082
## 1645 100004011 9280 0.00010153082
## 1646 100004016 9390 0.00010153082
## 1647 100004019 9471 0.00010153082
## 1648 100004021 9479 0.00010153082
## 1649 100004023 9455 0.00010153082
## 1650 100004027 9367 0.00010153082
## 1651 100004029 9265 0.00010153082
## 1652 100004030 9405 0.00005076541
## 1653 100004038 9372 0.00010153082
## 1654 100004040 9317 0.00020306164
## 1655 100004045 9289 0.00010153082
## 1656 100004047 9273 0.00010153082
## 1657 100004048 9317 0.00010153082
## 1658 100004049 9280 0.00020306164
## 1659 100004050 9349 0.00010153082
## 1660 100004051 9494 0.00010153082
## 1661 100004054 9239 0.00010153082
## 1662 100004060 9500 0.00020306164
## 1663 100004067 9430 0.00006768721
## 1664 100004069 9322 0.00020306164
## 1665 100004070 9328 0.00020306164
## 1666 100004072 9417 0.00005076541
## 1667 100004077 9463 0.00010153082
## 1668 100004078 9307 0.00020306164
## 1669 100004082 9436 0.00010153082
## 1670 100004083 9369 0.00010153082
## 1671 100004089 9468 0.00020306164
## 1672 100004092 9466 0.00010153082
## 1673 100004094 9412 0.00010153082
## 1674 100004098 9493 0.00010153082
## 1675 100004099 9410 0.00010153082
## 1676 100004102 9406 0.00010153082
## 1677 100004103 9266 0.00010153082
## 1678 100004106 9452 0.00020306164
## 1679 100004107 9333 0.00020306164
## 1680 100004108 9403 0.00005076541
## 1681 100004111 9263 0.00020306164
## 1682 100004116 9371 0.00020306164
## 1683 100004117 9465 0.00010153082
## 1684 100004119 9306 0.00010153082
## 1685 100004121 9304 0.00006768721
## 1686 100004127 9501 0.00020306164
## 1687 100004129 9329 0.00010153082
## 1688 100004135 9480 0.00020306164
## 1689 100004136 9421 0.00020306164
## 1690 100004144 9441 0.00010153082
## 1691 100004145 9237 0.00020306164
## 1692 100004147 9496 0.00020306164
## 1693 100004150 9237 0.00020306164
## 1694 100004152 9245 0.00006768721
## 1695 100004158 9484 0.00006768721
## 1696 100004159 9272 0.00010153082
## 1697 100004160 9424 0.00010153082
## 1698 100004161 9334 0.00010153082
## 1699 100004163 9384 0.00010153082
## 1700 100004165 9360 0.00010153082
## 1701 100004166 9438 0.00010153082
## 1702 100004167 9349 0.00020306164
## 1703 100004173 9382 0.00010153082
## 1704 100004175 9294 0.00020306164
## 1705 100004177 9470 0.00010153082
## 1706 100004182 9477 0.00020306164
## 1707 100004183 9337 0.00010153082
## 1708 100004185 9267 0.00010153082
## 1709 100004187 9268 0.00006768721
## 1710 100004191 9453 0.00010153082
## 1711 100004193 9415 0.00006768721
## 1712 100004194 9375 0.00010153082
## 1713 100004196 9285 0.00020306164
## 1714 100004202 9437 0.00020306164
## 1715 100004204 9294 0.00010153082
## 1716 100004206 9228 0.00010153082
## 1717 100004210 9377 0.00020306164
## 1718 100004214 9459 0.00010153082
## 1719 100004216 9285 0.00020306164
## 1720 100004219 9263 0.00020306164
## 1721 100004220 9299 0.00005076541
## 1722 100004222 9368 0.00006768721
## 1723 100004223 9310 0.00010153082
## 1724 100004224 9276 0.00020306164
## 1725 100004225 9399 0.00010153082
## 1726 100004229 9485 0.00010153082
## 1727 100004230 9237 0.00020306164
## 1728 100004232 9237 0.00010153082
## 1729 100004236 9274 0.00020306164
## 1730 100004244 9460 0.00010153082
## 1731 100004245 9361 0.00010153082
## 1732 100004246 9362 0.00010153082
## 1733 100004247 9231 0.00020306164
## 1734 100004248 9369 0.00010153082
## 1735 100004249 9372 0.00010153082
## 1736 100004252 9493 0.00006768721
## 1737 100004254 9373 0.00010153082
## 1738 100004260 9405 0.00010153082
## 1739 100004264 9418 0.00020306164
## 1740 100004265 9500 0.00010153082
## 1741 100004273 9473 0.00020306164
## 1742 100004274 9247 0.00010153082
## 1743 100004275 9367 0.00010153082
## 1744 100004277 9493 0.00006768721
## 1745 100004282 9409 0.00006768721
## 1746 100004285 9296 0.00010153082
## 1747 100004289 9449 0.00006768721
## 1748 100004291 9365 0.00010153082
## 1749 100004296 9504 0.00010153082
## 1750 100004297 9299 0.00010153082
## 1751 100004298 9260 0.00020306164
## 1752 100004300 9364 0.00010153082
## 1753 100004302 9437 0.00010153082
## 1754 100004306 9417 0.00010153082
## 1755 100004311 9282 0.00006768721
## 1756 100004312 9371 0.00020306164
## 1757 100004313 9292 0.00010153082
## 1758 100004317 9441 0.00020306164
## 1759 100004318 9280 0.00010153082
## 1760 100004320 9465 0.00010153082
## 1761 100004330 9366 0.00020306164
## 1762 100004336 9433 0.00010153082
## 1763 100004337 9368 0.00020306164
## 1764 100004343 9237 0.00010153082
## 1765 100004344 9379 0.00020306164
## 1766 100004346 9453 0.00006768721
## 1767 100004348 9491 0.00010153082
## 1768 100004352 9438 0.00010153082
## 1769 100004356 9395 0.00010153082
## 1770 100004361 9271 0.00010153082
## 1771 100004364 9498 0.00006768721
## 1772 100004366 9445 0.00010153082
## 1773 100004367 9227 0.00006768721
## 1774 100004372 9258 0.00006768721
## 1775 100004374 9251 0.00006768721
## 1776 100004376 9335 0.00020306164
## 1777 100004379 9396 0.00020306164
## 1778 100004381 9452 0.00020306164
## 1779 100004384 9287 0.00006768721
## 1780 100004386 9402 0.00010153082
## 1781 100004388 9242 0.00010153082
## 1782 100004389 9281 0.00020306164
## 1783 100004390 9345 0.00020306164
## 1784 100004391 9394 0.00010153082
## 1785 100004394 9459 0.00010153082
## 1786 100004398 9249 0.00010153082
## 1787 100004399 9429 0.00020306164
## 1788 100004401 9231 0.00010153082
## 1789 100004405 9396 0.00010153082
## 1790 100004406 9308 0.00010153082
## 1791 100004411 9357 0.00010153082
## 1792 100004414 9229 0.00005076541
## 1793 100004417 9276 0.00005076541
## 1794 100004419 9384 0.00010153082
## 1795 100004420 9234 0.00020306164
## 1796 100004424 9357 0.00020306164
## 1797 100004425 9381 0.00010153082
## 1798 100004426 9282 0.00010153082
## 1799 100004427 9368 0.00010153082
## 1800 100004428 9362 0.00010153082
## 1801 100004429 9448 0.00020306164
## 1802 100004432 9445 0.00010153082
## 1803 100004433 9450 0.00010153082
## 1804 100004436 9452 0.00010153082
## 1805 100004437 9363 0.00020306164
## 1806 100004440 9293 0.00010153082
## 1807 100004441 9389 0.00020306164
## 1808 100004442 9258 0.00020306164
## 1809 100004443 9397 0.00010153082
## 1810 100004444 9299 0.00010153082
## 1811 100004446 9501 0.00010153082
## 1812 100004448 9364 0.00020306164
## 1813 100004450 9378 0.00010153082
## 1814 100004454 9486 0.00020306164
## 1815 100004457 9425 0.00010153082
## 1816 100004461 9273 0.00010153082
## 1817 100004462 9237 0.00010153082
## 1818 100004463 9304 0.00010153082
## 1819 100004465 9503 0.00010153082
## 1820 100004466 9479 0.00020306164
## 1821 100004467 9356 0.00020306164
## 1822 100004468 9238 0.00010153082
## 1823 100004469 9403 0.00010153082
## 1824 100004473 9471 0.00010153082
## 1825 100004474 9488 0.00006768721
## 1826 100004475 9416 0.00010153082
## 1827 100004477 9466 0.00010153082
## 1828 100004479 9423 0.00010153082
## 1829 100004481 9460 0.00006768721
## 1830 100004486 9406 0.00010153082
## 1831 100004487 9439 0.00010153082
## 1832 100004488 9283 0.00020306164
## 1833 100004495 9462 0.00010153082
## 1834 100004496 9309 0.00006768721
## 1835 100004498 9355 0.00010153082
## 1836 100004500 9256 0.00010153082
## 1837 100004501 9234 0.00020306164
## 1838 100004502 9227 0.00020306164
## 1839 100004504 9495 0.00006768721
## 1840 100004509 9461 0.00010153082
## 1841 100004510 9414 0.00010153082
## 1842 100004511 9452 0.00010153082
## 1843 100004512 9483 0.00020306164
## 1844 100004513 9265 0.00010153082
## 1845 100004516 9456 0.00020306164
## 1846 100004517 9471 0.00020306164
## 1847 100004518 9412 0.00020306164
## 1848 100004519 9290 0.00020306164
## 1849 100004520 9340 0.00020306164
## 1850 100004521 9483 0.00020306164
## 1851 100004522 9387 0.00020306164
## 1852 100004529 9467 0.00020306164
## 1853 100004531 9314 0.00005076541
## 1854 100004537 9345 0.00010153082
## 1855 100004538 9374 0.00010153082
## 1856 100004539 9334 0.00010153082
## 1857 100004542 9233 0.00010153082
## 1858 100004547 9483 0.00020306164
## 1859 100004549 9243 0.00010153082
## 1860 100004550 9475 0.00020306164
## 1861 100004552 9494 0.00020306164
## 1862 100004554 9378 0.00020306164
## 1863 100004556 9476 0.00020306164
## 1864 100004558 9410 0.00010153082
## 1865 100004559 9351 0.00006768721
## 1866 100004561 9448 0.00010153082
## 1867 100004562 9420 0.00010153082
## 1868 100004563 9392 0.00010153082
## 1869 100004564 9431 0.00020306164
## 1870 100004566 9444 0.00010153082
## 1871 100004568 9231 0.00010153082
## 1872 100004569 9414 0.00006768721
## 1873 100004576 9373 0.00010153082
## 1874 100004579 9488 0.00010153082
## 1875 100004580 9427 0.00020306164
## 1876 100004581 9320 0.00020306164
## 1877 100004582 9430 0.00010153082
## 1878 100004583 9235 0.00010153082
## 1879 100004585 9234 0.00010153082
## 1880 100004586 9380 0.00010153082
## 1881 100004589 9497 0.00006768721
## 1882 100004590 9227 0.00020306164
## 1883 100004595 9352 0.00020306164
## 1884 100004599 9341 0.00010153082
## 1885 100004600 9357 0.00020306164
## 1886 100004601 9250 0.00006768721
## 1887 100004605 9301 0.00006768721
## 1888 100004608 9456 0.00010153082
## 1889 100004612 9441 0.00010153082
## 1890 100004614 9291 0.00005076541
## 1891 100004618 9290 0.00010153082
## 1892 100004619 9426 0.00010153082
## 1893 100004624 9481 0.00010153082
## 1894 100004625 9297 0.00010153082
## 1895 100004628 9409 0.00010153082
## 1896 100004629 9490 0.00004061233
## 1897 100004634 9435 0.00010153082
## 1898 100004635 9309 0.00020306164
## 1899 100004638 9296 0.00020306164
## 1900 100004640 9480 0.00010153082
## 1901 100004642 9397 0.00020306164
## 1902 100004644 9454 0.00010153082
## 1903 100004651 9501 0.00004061233
## 1904 100004652 9235 0.00010153082
## 1905 100004653 9391 0.00010153082
## 1906 100004655 9260 0.00010153082
## 1907 100004661 9456 0.00020306164
## 1908 100004667 9322 0.00020306164
## 1909 100004668 9283 0.00005076541
## 1910 100004669 9323 0.00010153082
## 1911 100004671 9446 0.00006768721
## 1912 100004672 9448 0.00020306164
## 1913 100004679 9310 0.00010153082
## 1914 100004684 9239 0.00020306164
## 1915 100004685 9261 0.00020306164
## 1916 100004686 9229 0.00010153082
## 1917 100004687 9464 0.00010153082
## 1918 100004688 9294 0.00010153082
## 1919 100004689 9338 0.00010153082
## 1920 100004691 9454 0.00010153082
## 1921 100004692 9427 0.00010153082
## 1922 100004694 9278 0.00020306164
## 1923 100004698 9231 0.00010153082
## 1924 100004700 9431 0.00010153082
## 1925 100004701 9386 0.00010153082
## 1926 100004702 9270 0.00020306164
## 1927 100004703 9489 0.00005076541
## 1928 100004710 9331 0.00010153082
## 1929 100004713 9237 0.00010153082
## 1930 100004714 9248 0.00010153082
## 1931 100004715 9282 0.00020306164
## 1932 100004729 9233 0.00010153082
## 1933 100004731 9483 0.00010153082
## 1934 100004736 9320 0.00010153082
## 1935 100004738 9308 0.00020306164
## 1936 100004739 9283 0.00010153082
## 1937 100004742 9235 0.00006768721
## 1938 100004749 9352 0.00020306164
## 1939 100004751 9429 0.00020306164
## 1940 100004753 9423 0.00020306164
## 1941 100004754 9248 0.00010153082
## 1942 100004763 9453 0.00010153082
## 1943 100004769 9387 0.00010153082
## 1944 100004771 9487 0.00005076541
## 1945 100004773 9303 0.00006768721
## 1946 100004776 9468 0.00010153082
## 1947 100004780 9440 0.00010153082
## 1948 100004781 9469 0.00010153082
## 1949 100004785 9422 0.00010153082
## 1950 100004786 9491 0.00010153082
## 1951 100004787 9228 0.00010153082
## 1952 100004788 9262 0.00020306164
## 1953 100004789 NA NA
## 1954 100004793 9316 0.00020306164
## 1955 100004794 9442 0.00020306164
## 1956 100004795 9455 0.00010153082
## 1957 100004797 9447 0.00020306164
## 1958 100004801 9429 0.00020306164
## 1959 100004803 9281 0.00006768721
## 1960 100004809 9340 0.00010153082
## 1961 100004810 9454 0.00010153082
## 1962 100004811 9339 0.00020306164
## 1963 100004817 9291 0.00020306164
## 1964 100004820 9352 0.00020306164
## 1965 100004821 9495 0.00004061233
## 1966 100004824 9269 0.00020306164
## 1967 100004828 9332 0.00020306164
## 1968 100004832 9434 0.00010153082
## 1969 100004834 9496 0.00020306164
## 1970 100004837 9346 0.00010153082
## 1971 100004843 9442 0.00010153082
## 1972 100004844 9334 0.00020306164
## 1973 100004846 9288 0.00010153082
## 1974 100004848 9488 0.00010153082
## 1975 100004850 9306 0.00010153082
## 1976 100004852 9317 0.00020306164
## 1977 100004854 9279 0.00020306164
## 1978 100004856 9434 0.00020306164
## 1979 100004857 9283 0.00010153082
## 1980 100004867 9479 0.00010153082
## 1981 100004871 9410 0.00020306164
## 1982 100004872 9266 0.00006768721
## 1983 100004873 9498 0.00020306164
## 1984 100004875 9428 0.00020306164
## 1985 100004879 9464 0.00010153082
## 1986 100004886 9449 0.00010153082
## 1987 100004889 9384 0.00006768721
## 1988 100004896 9295 0.00010153082
## 1989 100004897 9378 0.00010153082
## 1990 100004901 9502 0.00010153082
## 1991 100004904 9327 0.00020306164
## 1992 100004905 9441 0.00010153082
## 1993 100004909 9318 0.00005076541
## 1994 100004910 9308 0.00010153082
## 1995 100004911 9475 0.00006768721
## 1996 100004912 9474 0.00010153082
## 1997 100004915 9276 0.00010153082
## 1998 100004917 9350 0.00020306164
## 1999 100004918 9395 0.00020306164
## 2000 100004919 9387 0.00020306164
## 2001 100004920 9418 0.00010153082
## 2002 100004923 9468 0.00006768721
## 2003 100004924 9370 0.00010153082
## 2004 100004925 9412 0.00020306164
## 2005 100004926 9459 0.00006768721
## 2006 100004929 9306 0.00010153082
## 2007 100004932 9298 0.00010153082
## 2008 100004933 9321 0.00010153082
## 2009 100004937 9411 0.00020306164
## 2010 100004939 9318 0.00020306164
## 2011 100004944 9382 0.00020306164
## 2012 100004946 9381 0.00010153082
## 2013 100004947 9504 0.00006768721
## 2014 100004950 9400 0.00020306164
## 2015 100004951 9270 0.00010153082
## 2016 100004955 9382 0.00010153082
## 2017 100004956 9354 0.00010153082
## 2018 100004959 9339 0.00010153082
## 2019 100004960 9429 0.00020306164
## 2020 100004962 9499 0.00010153082
## 2021 100004965 9340 0.00020306164
## 2022 100004976 9414 0.00010153082
## 2023 100004980 9229 0.00010153082
## 2024 100004982 9370 0.00020306164
## 2025 100004983 9493 0.00010153082
## 2026 100004987 9394 0.00010153082
## 2027 100004992 9256 0.00010153082
## 2028 100004993 9317 0.00020306164
## 2029 100004996 9298 0.00006768721
## 2030 100004998 9399 0.00005076541
## 2031 100005000 9273 0.00010153082
## 2032 100005002 9437 0.00010153082
## 2033 100005004 9326 0.00020306164
## 2034 100005006 9249 0.00010153082
## 2035 100005007 9261 0.00005076541
## 2036 100005014 9457 0.00020306164
## 2037 100005017 9482 0.00010153082
## 2038 100005028 9340 0.00010153082
## 2039 100005029 9417 0.00020306164
## 2040 100005031 9330 0.00020306164
## 2041 100005035 9238 0.00010153082
## 2042 100005038 9281 0.00010153082
## 2043 100005039 9453 0.00010153082
## 2044 100005040 9229 0.00010153082
## 2045 100005041 9476 0.00020306164
## 2046 100005043 9361 0.00020306164
## 2047 100005045 9287 0.00020306164
## 2048 100005047 9389 0.00010153082
## 2049 100005049 9426 0.00020306164
## 2050 100005050 9377 0.00006768721
## 2051 100005051 9255 0.00020306164
## 2052 100005057 9281 0.00020306164
## 2053 100005063 9332 0.00006768721
## 2054 100005064 9478 0.00002538271
## 2055 100005072 9336 0.00010153082
## 2056 100005073 9233 0.00006768721
## 2057 100005079 9430 0.00020306164
## 2058 100005082 9341 0.00020306164
## 2059 100005085 9276 0.00001692180
## 2060 100005086 9401 0.00010153082
## 2061 100005089 9418 0.00010153082
## 2062 100005090 9396 0.00010153082
## 2063 100005096 9382 0.00010153082
## 2064 100005097 9228 0.00020306164
## 2065 100005098 9330 0.00010153082
## 2066 100005104 9364 0.00020306164
## 2067 100005107 9395 0.00010153082
## 2068 100005109 9423 0.00010153082
## 2069 100005110 9458 0.00020306164
## 2070 100005112 9428 0.00010153082
## 2071 100005113 9249 0.00006768721
## 2072 100005115 9293 0.00010153082
## 2073 100005118 9313 0.00010153082
## 2074 100005119 9255 0.00010153082
## 2075 100005123 9323 0.00010153082
## 2076 100005125 9325 0.00020306164
## 2077 100005134 9313 0.00010153082
## 2078 100005137 9426 0.00020306164
## 2079 100005140 9501 0.00010153082
## 2080 100005142 9245 0.00020306164
## 2081 100005144 9316 0.00005076541
## 2082 100005147 9419 0.00010153082
## 2083 100005152 9334 0.00020306164
## 2084 100005153 9417 0.00010153082
## 2085 100005156 9273 0.00010153082
## 2086 100005157 9239 0.00006768721
## 2087 100005158 9462 0.00010153082
## 2088 100005160 9245 0.00010153082
## 2089 100005161 9437 0.00010153082
## 2090 100005166 9367 0.00010153082
## 2091 100005167 9256 0.00010153082
## 2092 100005168 9238 0.00006768721
## 2093 100005169 9474 0.00010153082
## 2094 100005170 9454 0.00020306164
## 2095 100005171 9448 0.00020306164
## 2096 100005172 9339 0.00010153082
## 2097 100005175 9242 0.00005076541
## 2098 100005177 9240 0.00020306164
## 2099 100005179 9349 0.00010153082
## 2100 100005181 9482 0.00010153082
## 2101 100005182 9404 0.00020306164
## 2102 100005183 9329 0.00010153082
## 2103 100005187 9422 0.00010153082
## 2104 100005189 9446 0.00006768721
## 2105 100005190 9488 0.00006768721
## 2106 100005193 9452 0.00020306164
## 2107 100005203 9422 0.00010153082
## 2108 100005204 9414 0.00020306164
## 2109 100005205 9460 0.00006768721
## 2110 100005206 9416 0.00006768721
## 2111 100005209 9253 0.00010153082
## 2112 100005210 9301 0.00020306164
## 2113 100005212 9426 0.00020306164
## 2114 100005213 9435 0.00010153082
## 2115 100005217 9324 0.00010153082
## 2116 100005219 9447 0.00006768721
## 2117 100005223 9492 0.00010153082
## 2118 100005226 9426 0.00010153082
## 2119 100005227 9246 0.00010153082
## 2120 100005228 9411 0.00010153082
## 2121 100005230 9441 0.00010153082
## 2122 100005231 9279 0.00020306164
## 2123 100005233 9292 0.00006768721
## 2124 100005235 9320 0.00010153082
## 2125 100005237 9243 0.00006768721
## 2126 100005238 9291 0.00010153082
## 2127 100005240 9283 0.00020306164
## 2128 100005244 9494 0.00020306164
## 2129 100005245 9390 0.00020306164
## 2130 100005246 9481 0.00010153082
## 2131 100005247 9263 0.00010153082
## 2132 100005250 9322 0.00006768721
## 2133 100005253 9443 0.00020306164
## 2134 100005258 9441 0.00010153082
## 2135 100005265 9429 0.00010153082
## 2136 100005267 9339 0.00020306164
## 2137 100005271 9229 0.00010153082
## 2138 100005274 9399 0.00010153082
## 2139 100005275 9310 0.00010153082
## 2140 100005279 9295 0.00010153082
## 2141 100005282 9268 0.00010153082
## 2142 100005283 9384 0.00010153082
## 2143 100005284 9432 0.00010153082
## 2144 100005289 9304 0.00020306164
## 2145 100005290 9453 0.00020306164
## 2146 100005294 9295 0.00020306164
## 2147 100005295 9248 0.00010153082
## 2148 100005297 9484 0.00006768721
## 2149 100005307 9247 0.00010153082
## 2150 100005308 9500 0.00020306164
## 2151 100005311 9292 0.00005076541
## 2152 100005313 9282 0.00006768721
## 2153 100005314 9318 0.00020306164
## 2154 100005316 9239 0.00010153082
## 2155 100005320 9325 0.00020306164
## 2156 100005324 9242 0.00005076541
## 2157 100005325 9260 0.00010153082
## 2158 100005334 9454 0.00010153082
## 2159 100005337 9401 0.00010153082
## 2160 100005338 9259 0.00010153082
## 2161 100005343 9388 0.00005076541
## 2162 100005344 9409 0.00020306164
## 2163 100005348 9492 0.00020306164
## 2164 100005352 9364 0.00010153082
## 2165 100005353 9500 0.00010153082
## 2166 100005357 9435 0.00020306164
## 2167 100005358 9375 0.00006768721
## 2168 100005361 9236 0.00020306164
## 2169 100005363 9253 0.00010153082
## 2170 100005376 9333 0.00005076541
## 2171 100005377 9467 0.00020306164
## 2172 100005380 9356 0.00010153082
## 2173 100005384 9336 0.00010153082
## 2174 100005385 9323 0.00006768721
## 2175 100005387 9335 0.00010153082
## 2176 100005389 9228 0.00010153082
## 2177 100005394 9484 0.00010153082
## 2178 100005395 9401 0.00010153082
## 2179 100005396 9451 0.00010153082
## 2180 100005398 9372 0.00020306164
## 2181 100005400 9486 0.00010153082
## 2182 100005401 9328 0.00010153082
## 2183 100005403 9485 0.00006768721
## 2184 100005405 9364 0.00010153082
## 2185 100005406 9496 0.00010153082
## 2186 100005407 9243 0.00010153082
## 2187 100005408 9337 0.00010153082
## 2188 100005410 9242 0.00004061233
## 2189 100005413 9498 0.00010153082
## 2190 100005416 9259 0.00010153082
## 2191 100005418 9352 0.00020306164
## 2192 100005419 9396 0.00010153082
## 2193 100005420 9411 0.00010153082
## 2194 100005423 9355 0.00006768721
## 2195 100005425 9272 0.00020306164
## 2196 100005426 9351 0.00020306164
## 2197 100005427 9254 0.00005076541
## 2198 100005428 9320 0.00020306164
## 2199 100005436 9381 0.00020306164
## 2200 100005443 9414 0.00004061233
## 2201 100005446 9320 0.00010153082
## 2202 100005448 9433 0.00010153082
## 2203 100005450 9480 0.00010153082
## 2204 100005451 9331 0.00020306164
## 2205 100005452 9437 0.00020306164
## 2206 100005455 9267 0.00010153082
## 2207 100005456 9385 0.00010153082
## 2208 100005457 9255 0.00010153082
## 2209 100005459 9470 0.00020306164
## 2210 100005460 9440 0.00010153082
## 2211 100005464 9262 0.00020306164
## 2212 100005470 9409 0.00020306164
## 2213 100005472 9300 0.00020306164
## 2214 100005474 9419 0.00001846015
## 2215 100005475 9295 0.00020306164
## 2216 100005478 9405 0.00020306164
## 2217 100005480 9327 0.00010153082
## 2218 100005481 9243 0.00010153082
## 2219 100005482 9283 0.00020306164
## 2220 100005486 9282 0.00020306164
## 2221 100005489 9294 0.00020306164
## 2222 100005492 9452 0.00020306164
## 2223 100005494 9299 0.00020306164
## 2224 100005496 9378 0.00020306164
## 2225 100005500 9346 0.00020306164
## 2226 100005501 9383 0.00010153082
## 2227 100005502 9271 0.00010153082
## 2228 100005503 9457 0.00020306164
## 2229 100005507 9353 0.00010153082
## 2230 100005511 9273 0.00005076541
## 2231 100005514 9462 0.00004061233
## 2232 100005516 9261 0.00010153082
## 2233 100005519 9425 0.00010153082
## 2234 100005520 9384 0.00010153082
## 2235 100005521 9481 0.00020306164
## 2236 100005527 9277 0.00020306164
## 2237 100005528 9346 0.00020306164
## 2238 100005535 9309 0.00020306164
## 2239 100005536 9400 0.00010153082
## 2240 100005537 9502 0.00010153082
## 2241 100005539 9499 0.00010153082
## 2242 100005540 9359 0.00020306164
## 2243 100005544 9461 0.00010153082
## 2244 100005547 9329 0.00020306164
## 2245 100005548 9443 0.00001269135
## 2246 100005552 9403 0.00005076541
## 2247 100005553 9290 0.00010153082
## 2248 100005555 9330 0.00020306164
## 2249 100005557 9327 0.00010153082
## 2250 100005558 9370 0.00010153082
## 2251 100005560 9426 0.00005076541
## 2252 100005562 9245 0.00010153082
## 2253 100005566 9477 0.00010153082
## 2254 100005567 9319 0.00020306164
## 2255 100005569 9285 0.00010153082
## 2256 100005570 9487 0.00020306164
## 2257 100005571 9384 0.00010153082
## 2258 100005572 9392 0.00010153082
## 2259 100005590 9349 0.00010153082
## 2260 100005591 9408 0.00020306164
## 2261 100005592 9237 0.00020306164
## 2262 100005593 9278 0.00010153082
## 2263 100005594 9416 0.00010153082
## 2264 100005597 9357 0.00010153082
## 2265 100005599 9287 0.00020306164
## 2266 100000001 NA NA
## 2267 100000002 NA NA
## 2268 100000004 NA NA
## 2269 100000006 NA NA
## 2270 100000007 NA NA
## 2271 100000011 NA NA
## 2272 100000013 NA NA
## 2273 100000014 NA NA
## 2274 100000018 NA NA
## 2275 100000019 NA NA
## 2276 100000021 NA NA
## 2277 100000024 NA NA
## 2278 100000026 NA NA
## 2279 100000027 NA NA
## 2280 100000028 NA NA
## 2281 100000029 NA NA
## 2282 100000032 NA NA
## 2283 100000035 NA NA
## 2284 100000038 NA NA
## 2285 100000039 NA NA
## 2286 100000040 NA NA
## 2287 100000042 NA NA
## 2288 100000044 NA NA
## 2289 100000045 NA NA
## 2290 100000049 NA NA
## 2291 100000051 NA NA
## 2292 100000056 NA NA
## 2293 100000058 NA NA
## 2294 100000059 NA NA
## 2295 100000060 NA NA
## 2296 100000061 NA NA
## 2297 100000064 NA NA
## 2298 100000065 NA NA
## 2299 100000066 NA NA
## 2300 100000068 NA NA
## 2301 100000069 NA NA
## 2302 100000072 NA NA
## 2303 100000074 NA NA
## 2304 100000078 NA NA
## 2305 100000079 NA NA
## 2306 100000081 NA NA
## 2307 100000082 NA NA
## 2308 100000083 NA NA
## 2309 100000087 NA NA
## 2310 100000090 NA NA
## 2311 100000092 NA NA
## 2312 100000093 NA NA
## 2313 100000094 NA NA
## 2314 100000097 NA NA
## 2315 100000098 NA NA
## 2316 100000099 NA NA
## 2317 100000100 NA NA
## 2318 100000101 NA NA
## 2319 100000102 NA NA
## 2320 100000105 NA NA
## 2321 100000106 NA NA
## 2322 100000112 NA NA
## 2323 100000114 NA NA
## 2324 100000116 NA NA
## 2325 100000117 NA NA
## 2326 100000118 NA NA
## 2327 100000119 NA NA
## 2328 100000120 NA NA
## 2329 100000125 NA NA
## 2330 100000128 NA NA
## 2331 100000129 NA NA
## 2332 100000130 NA NA
## 2333 100000131 NA NA
## 2334 100000132 NA NA
## 2335 100000133 NA NA
## 2336 100000134 NA NA
## 2337 100000135 NA NA
## 2338 100000136 NA NA
## 2339 100000137 NA NA
## 2340 100000138 NA NA
## 2341 100000140 NA NA
## 2342 100000142 NA NA
## 2343 100000144 NA NA
## 2344 100000146 NA NA
## 2345 100000149 NA NA
## 2346 100000150 NA NA
## 2347 100000151 NA NA
## 2348 100000154 NA NA
## 2349 100000155 NA NA
## 2350 100000160 NA NA
## 2351 100000161 NA NA
## 2352 100000162 NA NA
## 2353 100000163 NA NA
## 2354 100000164 NA NA
## 2355 100000165 NA NA
## 2356 100000166 NA NA
## 2357 100000169 NA NA
## 2358 100000172 NA NA
## 2359 100000173 NA NA
## 2360 100000177 NA NA
## 2361 100000178 NA NA
## 2362 100000179 NA NA
## 2363 100000187 NA NA
## 2364 100000188 NA NA
## 2365 100000190 NA NA
## 2366 100000191 NA NA
## 2367 100000192 NA NA
## 2368 100000194 NA NA
## 2369 100000195 NA NA
## 2370 100000196 NA NA
## 2371 100000198 NA NA
## 2372 100000199 NA NA
## 2373 100000200 NA NA
## 2374 100000201 NA NA
## 2375 100000202 NA NA
## 2376 100000203 NA NA
## 2377 100000204 NA NA
## 2378 100000206 NA NA
## 2379 100000209 NA NA
## 2380 100000210 NA NA
## 2381 100000214 NA NA
## 2382 100000215 NA NA
## 2383 100000216 NA NA
## 2384 100000217 NA NA
## 2385 100000218 NA NA
## 2386 100000220 NA NA
## 2387 100000222 NA NA
## 2388 100000223 NA NA
## 2389 100000226 NA NA
## 2390 100000228 NA NA
## 2391 100000230 NA NA
## 2392 100000232 NA NA
## 2393 100000233 NA NA
## 2394 100000234 NA NA
## 2395 100000236 NA NA
## 2396 100000237 NA NA
## 2397 100000238 NA NA
## 2398 100000239 NA NA
## 2399 100000241 NA NA
## 2400 100000242 NA NA
## 2401 100000243 NA NA
## 2402 100000244 NA NA
## 2403 100000245 NA NA
## 2404 100000246 NA NA
## 2405 100000247 NA NA
## 2406 100000249 NA NA
## 2407 100000252 NA NA
## 2408 100000254 NA NA
## 2409 100000255 NA NA
## 2410 100000257 NA NA
## 2411 100000258 NA NA
## 2412 100000259 NA NA
## 2413 100000260 NA NA
## 2414 100000262 NA NA
## 2415 100000273 NA NA
## 2416 100000274 NA NA
## 2417 100000277 NA NA
## 2418 100000278 NA NA
## 2419 100000280 NA NA
## 2420 100000282 NA NA
## 2421 100000286 NA NA
## 2422 100000287 NA NA
## 2423 100000291 NA NA
## 2424 100000292 NA NA
## 2425 100000293 NA NA
## 2426 100000294 NA NA
## 2427 100000295 NA NA
## 2428 100000296 NA NA
## 2429 100000297 NA NA
## 2430 100000299 NA NA
## 2431 100000301 NA NA
## 2432 100000307 NA NA
## 2433 100000308 NA NA
## 2434 100000309 NA NA
## 2435 100000310 NA NA
## 2436 100000311 NA NA
## 2437 100000312 NA NA
## 2438 100000315 NA NA
## 2439 100000316 NA NA
## 2440 100000317 NA NA
## 2441 100000318 NA NA
## 2442 100000319 NA NA
## 2443 100000320 NA NA
## 2444 100000323 NA NA
## 2445 100000324 NA NA
## 2446 100000325 NA NA
## 2447 100000327 NA NA
## 2448 100000328 NA NA
## 2449 100000330 NA NA
## 2450 100000332 NA NA
## 2451 100000336 NA NA
## 2452 100000337 NA NA
## 2453 100000338 NA NA
## 2454 100000339 NA NA
## 2455 100000340 NA NA
## 2456 100000342 NA NA
## 2457 100000343 NA NA
## 2458 100000345 NA NA
## 2459 100000346 NA NA
## 2460 100000347 NA NA
## 2461 100000349 NA NA
## 2462 100000351 NA NA
## 2463 100000353 NA NA
## 2464 100000354 NA NA
## 2465 100000355 NA NA
## 2466 100000356 NA NA
## 2467 100000361 NA NA
## 2468 100000362 NA NA
## 2469 100000363 NA NA
## 2470 100000364 NA NA
## 2471 100000366 NA NA
## 2472 100000367 NA NA
## 2473 100000368 NA NA
## 2474 100000369 NA NA
## 2475 100000370 NA NA
## 2476 100000372 NA NA
## 2477 100000373 NA NA
## 2478 100000377 NA NA
## 2479 100000378 NA NA
## 2480 100000380 NA NA
## 2481 100000381 NA NA
## 2482 100000382 NA NA
## 2483 100000383 NA NA
## 2484 100000384 NA NA
## 2485 100000385 NA NA
## 2486 100000388 NA NA
## 2487 100000391 NA NA
## 2488 100000394 NA NA
## 2489 100000397 NA NA
## 2490 100000399 NA NA
## 2491 100000402 NA NA
## 2492 100000404 NA NA
## 2493 100000406 NA NA
## 2494 100000407 NA NA
## 2495 100000409 NA NA
## 2496 100000410 NA NA
## 2497 100000413 NA NA
## 2498 100000414 NA NA
## 2499 100000416 NA NA
## 2500 100000419 NA NA
## 2501 100000424 NA NA
## 2502 100000426 NA NA
## 2503 100000428 NA NA
## 2504 100000429 NA NA
## 2505 100000432 NA NA
## 2506 100000433 NA NA
## 2507 100000434 NA NA
## 2508 100000436 NA NA
## 2509 100000437 NA NA
## 2510 100000438 NA NA
## 2511 100000440 NA NA
## 2512 100000442 NA NA
## 2513 100000443 NA NA
## 2514 100000444 NA NA
## 2515 100000445 NA NA
## 2516 100000446 NA NA
## 2517 100000447 NA NA
## 2518 100000448 NA NA
## 2519 100000455 NA NA
## 2520 100000458 NA NA
## 2521 100000459 NA NA
## 2522 100000460 NA NA
## 2523 100000461 NA NA
## 2524 100000466 NA NA
## 2525 100000469 NA NA
## 2526 100000472 NA NA
## 2527 100000473 NA NA
## 2528 100000476 NA NA
## 2529 100000483 NA NA
## 2530 100000484 NA NA
## 2531 100000486 NA NA
## 2532 100000487 NA NA
## 2533 100000488 NA NA
## 2534 100000489 NA NA
## 2535 100000492 NA NA
## 2536 100000493 NA NA
## 2537 100000496 NA NA
## 2538 100000497 NA NA
## 2539 100000498 NA NA
## 2540 100000499 NA NA
## 2541 100000504 NA NA
## 2542 100000505 NA NA
## 2543 100000506 NA NA
## 2544 100000507 NA NA
## 2545 100000508 NA NA
## 2546 100000509 NA NA
## 2547 100000510 NA NA
## 2548 100000513 NA NA
## 2549 100000519 NA NA
## 2550 100000520 NA NA
## 2551 100000522 NA NA
## 2552 100000525 NA NA
## 2553 100000526 NA NA
## 2554 100000527 NA NA
## 2555 100000530 NA NA
## 2556 100000533 NA NA
## 2557 100000534 NA NA
## 2558 100000536 NA NA
## 2559 100000537 NA NA
## 2560 100000540 NA NA
## 2561 100000542 NA NA
## 2562 100000543 NA NA
## 2563 100000546 NA NA
## 2564 100000547 NA NA
## 2565 100000549 NA NA
## 2566 100000551 NA NA
## 2567 100000552 NA NA
## 2568 100000553 NA NA
## 2569 100000555 NA NA
## 2570 100000557 NA NA
## 2571 100000563 NA NA
## 2572 100000566 NA NA
## 2573 100000568 NA NA
## 2574 100000569 NA NA
## 2575 100000571 NA NA
## 2576 100000572 NA NA
## 2577 100000573 NA NA
## 2578 100000578 NA NA
## 2579 100000579 NA NA
## 2580 100000582 NA NA
## 2581 100000585 NA NA
## 2582 100000587 NA NA
## 2583 100000588 NA NA
## 2584 100000592 NA NA
## 2585 100000597 NA NA
## 2586 100000598 NA NA
## 2587 100000601 NA NA
## 2588 100000603 NA NA
## 2589 100000604 NA NA
## 2590 100000605 NA NA
## 2591 100000606 NA NA
## 2592 100000610 NA NA
## 2593 100000611 NA NA
## 2594 100000612 NA NA
## 2595 100000614 NA NA
## 2596 100000616 NA NA
## 2597 100000618 NA NA
## 2598 100000619 NA NA
## 2599 100000620 NA NA
## 2600 100000624 NA NA
## 2601 100000625 NA NA
## 2602 100000627 NA NA
## 2603 100000628 NA NA
## 2604 100000629 NA NA
## 2605 100000630 NA NA
## 2606 100000631 NA NA
## 2607 100000633 NA NA
## 2608 100000636 NA NA
## 2609 100000640 NA NA
## 2610 100000643 NA NA
## 2611 100000644 NA NA
## 2612 100000647 NA NA
## 2613 100000649 NA NA
## 2614 100000651 NA NA
## 2615 100000653 NA NA
## 2616 100000654 NA NA
## 2617 100000656 NA NA
## 2618 100000657 NA NA
## 2619 100000659 NA NA
## 2620 100000660 NA NA
## 2621 100000661 NA NA
## 2622 100000665 NA NA
## 2623 100000667 NA NA
## 2624 100000668 NA NA
## 2625 100000669 NA NA
## 2626 100000670 NA NA
## 2627 100000672 NA NA
## 2628 100000673 NA NA
## 2629 100000675 NA NA
## 2630 100000676 NA NA
## 2631 100000679 NA NA
## 2632 100000682 NA NA
## 2633 100000683 NA NA
## 2634 100000684 NA NA
## 2635 100000685 NA NA
## 2636 100000686 NA NA
## 2637 100000687 NA NA
## 2638 100000689 NA NA
## 2639 100000690 NA NA
## 2640 100000691 NA NA
## 2641 100000694 NA NA
## 2642 100000695 NA NA
## 2643 100000696 NA NA
## 2644 100000697 NA NA
## 2645 100000699 NA NA
## 2646 100000700 NA NA
## 2647 100000702 NA NA
## 2648 100000703 NA NA
## 2649 100000704 NA NA
## 2650 100000705 NA NA
## 2651 100000706 NA NA
## 2652 100000707 NA NA
## 2653 100000709 NA NA
## 2654 100000710 NA NA
## 2655 100000711 NA NA
## 2656 100000712 NA NA
## 2657 100000713 NA NA
## 2658 100000714 NA NA
## 2659 100000715 NA NA
## 2660 100000716 NA NA
## 2661 100000717 NA NA
## 2662 100000718 NA NA
## 2663 100000719 NA NA
## 2664 100000721 NA NA
## 2665 100000722 NA NA
## 2666 100000723 NA NA
## 2667 100000724 NA NA
## 2668 100000725 NA NA
## 2669 100000726 NA NA
## 2670 100000729 NA NA
## 2671 100000731 NA NA
## 2672 100000732 NA NA
## 2673 100000733 NA NA
## 2674 100000734 NA NA
## 2675 100000737 NA NA
## 2676 100000738 NA NA
## 2677 100000740 NA NA
## 2678 100000741 NA NA
## 2679 100000742 NA NA
## 2680 100000743 NA NA
## 2681 100000746 NA NA
## 2682 100000748 NA NA
## 2683 100000749 NA NA
## 2684 100000757 NA NA
## 2685 100000758 NA NA
## 2686 100000760 NA NA
## 2687 100000761 NA NA
## 2688 100000763 NA NA
## 2689 100000765 NA NA
## 2690 100000766 NA NA
## 2691 100000771 NA NA
## 2692 100000775 NA NA
## 2693 100000777 NA NA
## 2694 100000780 NA NA
## 2695 100000782 NA NA
## 2696 100000783 NA NA
## 2697 100000786 NA NA
## 2698 100000787 NA NA
## 2699 100000788 NA NA
## 2700 100000789 NA NA
## 2701 100000790 NA NA
## 2702 100000792 NA NA
## 2703 100000793 NA NA
## 2704 100000794 NA NA
## 2705 100000795 NA NA
## 2706 100000799 NA NA
## 2707 100000800 NA NA
## 2708 100000801 NA NA
## 2709 100000802 NA NA
## 2710 100000803 NA NA
## 2711 100000805 NA NA
## 2712 100000806 NA NA
## 2713 100000807 NA NA
## 2714 100000809 NA NA
## 2715 100000811 NA NA
## 2716 100000812 NA NA
## 2717 100000813 NA NA
## 2718 100000814 NA NA
## 2719 100000816 NA NA
## 2720 100000817 NA NA
## 2721 100000818 NA NA
## 2722 100000819 NA NA
## 2723 100000820 NA NA
## 2724 100000822 NA NA
## 2725 100000823 NA NA
## 2726 100000824 NA NA
## 2727 100000825 NA NA
## 2728 100000826 NA NA
## 2729 100000828 NA NA
## 2730 100000829 NA NA
## 2731 100000831 NA NA
## 2732 100000832 NA NA
## 2733 100000833 NA NA
## 2734 100000834 NA NA
## 2735 100000835 NA NA
## 2736 100000836 NA NA
## 2737 100000837 NA NA
## 2738 100000843 NA NA
## 2739 100000845 NA NA
## 2740 100000851 NA NA
## 2741 100000852 NA NA
## 2742 100000858 NA NA
## 2743 100000861 NA NA
## 2744 100000864 NA NA
## 2745 100000865 NA NA
## 2746 100000868 NA NA
## 2747 100000869 NA NA
## 2748 100000870 NA NA
## 2749 100000871 NA NA
## 2750 100000872 NA NA
## 2751 100000873 NA NA
## 2752 100000874 NA NA
## 2753 100000875 NA NA
## 2754 100000876 NA NA
## 2755 100000878 NA NA
## 2756 100000880 NA NA
## 2757 100000882 NA NA
## 2758 100000884 NA NA
## 2759 100000885 NA NA
## 2760 100000886 NA NA
## 2761 100000889 NA NA
## 2762 100000890 NA NA
## 2763 100000891 NA NA
## 2764 100000893 NA NA
## 2765 100000894 NA NA
## 2766 100000895 NA NA
## 2767 100000896 NA NA
## 2768 100000897 NA NA
## 2769 100000899 NA NA
## 2770 100000900 NA NA
## 2771 100000901 NA NA
## 2772 100000902 NA NA
## 2773 100000903 NA NA
## 2774 100000904 NA NA
## 2775 100000905 NA NA
## 2776 100000906 NA NA
## 2777 100000908 NA NA
## 2778 100000910 NA NA
## 2779 100000912 NA NA
## 2780 100000913 NA NA
## 2781 100000914 NA NA
## 2782 100000915 NA NA
## 2783 100000917 NA NA
## 2784 100000918 NA NA
## 2785 100000920 NA NA
## 2786 100000921 NA NA
## 2787 100000924 NA NA
## 2788 100000925 NA NA
## 2789 100000926 NA NA
## 2790 100000928 NA NA
## 2791 100000932 NA NA
## 2792 100000933 NA NA
## 2793 100000934 NA NA
## 2794 100000935 NA NA
## 2795 100000936 NA NA
## 2796 100000937 NA NA
## 2797 100000938 NA NA
## 2798 100000940 NA NA
## 2799 100000941 NA NA
## 2800 100000942 NA NA
## 2801 100000944 NA NA
## 2802 100000946 NA NA
## 2803 100000947 NA NA
## 2804 100000949 NA NA
## 2805 100000950 NA NA
## 2806 100000951 NA NA
## 2807 100000952 NA NA
## 2808 100000954 NA NA
## 2809 100000955 NA NA
## 2810 100000961 NA NA
## 2811 100000962 NA NA
## 2812 100000965 NA NA
## 2813 100000966 NA NA
## 2814 100000967 NA NA
## 2815 100000968 NA NA
## 2816 100000969 NA NA
## 2817 100000970 NA NA
## 2818 100000972 NA NA
## 2819 100000973 NA NA
## 2820 100000975 NA NA
## 2821 100000976 NA NA
## 2822 100000979 NA NA
## 2823 100000980 NA NA
## 2824 100000981 NA NA
## 2825 100000982 NA NA
## 2826 100000983 NA NA
## 2827 100000985 NA NA
## 2828 100000986 NA NA
## 2829 100000989 NA NA
## 2830 100000990 NA NA
## 2831 100000991 NA NA
## 2832 100000994 NA NA
## 2833 100000995 NA NA
## 2834 100000996 NA NA
## 2835 100000997 NA NA
## 2836 100000999 NA NA
## 2837 100001000 NA NA
## 2838 100001002 NA NA
## 2839 100001004 NA NA
## 2840 100001005 NA NA
## 2841 100001007 NA NA
## 2842 100001009 NA NA
## 2843 100001010 NA NA
## 2844 100001012 NA NA
## 2845 100001013 NA NA
## 2846 100001014 NA NA
## 2847 100001015 NA NA
## 2848 100001016 NA NA
## 2849 100001017 NA NA
## 2850 100001018 NA NA
## 2851 100001019 NA NA
## 2852 100001020 NA NA
## 2853 100001024 NA NA
## 2854 100001026 NA NA
## 2855 100001028 NA NA
## 2856 100001029 NA NA
## 2857 100001030 NA NA
## 2858 100001035 NA NA
## 2859 100001036 NA NA
## 2860 100001037 NA NA
## 2861 100001039 NA NA
## 2862 100001042 NA NA
## 2863 100001043 NA NA
## 2864 100001046 NA NA
## 2865 100001050 NA NA
## 2866 100001051 NA NA
## 2867 100001053 NA NA
## 2868 100001055 NA NA
## 2869 100001056 NA NA
## 2870 100001058 NA NA
## 2871 100001059 NA NA
## 2872 100001060 NA NA
## 2873 100001061 NA NA
## 2874 100001062 NA NA
## 2875 100001064 NA NA
## 2876 100001065 NA NA
## 2877 100001066 NA NA
## 2878 100001067 NA NA
## 2879 100001068 NA NA
## 2880 100001069 NA NA
## 2881 100001071 NA NA
## 2882 100001072 NA NA
## 2883 100001073 NA NA
## 2884 100001074 NA NA
## 2885 100001075 NA NA
## 2886 100001076 NA NA
## 2887 100001077 NA NA
## 2888 100001078 NA NA
## 2889 100001079 NA NA
## 2890 100001082 NA NA
## 2891 100001083 NA NA
## 2892 100001084 NA NA
## 2893 100001085 NA NA
## 2894 100001086 NA NA
## 2895 100001088 NA NA
## 2896 100001090 NA NA
## 2897 100001091 NA NA
## 2898 100001092 NA NA
## 2899 100001093 NA NA
## 2900 100001095 NA NA
## 2901 100001096 NA NA
## 2902 100001098 NA NA
## 2903 100001099 NA NA
## 2904 100001101 NA NA
## 2905 100001104 NA NA
## 2906 100001105 NA NA
## 2907 100001108 NA NA
## 2908 100001109 NA NA
## 2909 100001111 NA NA
## 2910 100001113 NA NA
## 2911 100001115 NA NA
## 2912 100001116 NA NA
## 2913 100001117 NA NA
## 2914 100001118 NA NA
## 2915 100001120 NA NA
## 2916 100001124 NA NA
## 2917 100001127 NA NA
## 2918 100001131 NA NA
## 2919 100001133 NA NA
## 2920 100001135 NA NA
## 2921 100001138 NA NA
## 2922 100001141 NA NA
## 2923 100001143 NA NA
## 2924 100001146 NA NA
## 2925 100001149 NA NA
## 2926 100001150 NA NA
## 2927 100001151 NA NA
## 2928 100001152 NA NA
## 2929 100001156 NA NA
## 2930 100001157 NA NA
## 2931 100001158 NA NA
## 2932 100001159 NA NA
## 2933 100001161 NA NA
## 2934 100001163 NA NA
## 2935 100001165 NA NA
## 2936 100001166 NA NA
## 2937 100001170 NA NA
## 2938 100001171 NA NA
## 2939 100001172 NA NA
## 2940 100001173 NA NA
## 2941 100001174 NA NA
## 2942 100001175 NA NA
## 2943 100001177 NA NA
## 2944 100001178 NA NA
## 2945 100001179 NA NA
## 2946 100001181 NA NA
## 2947 100001182 NA NA
## 2948 100001183 NA NA
## 2949 100001184 NA NA
## 2950 100001185 NA NA
## 2951 100001186 NA NA
## 2952 100001189 NA NA
## 2953 100001190 NA NA
## 2954 100001191 NA NA
## 2955 100001193 NA NA
## 2956 100001194 NA NA
## 2957 100001195 NA NA
## 2958 100001196 NA NA
## 2959 100001198 NA NA
## 2960 100001199 NA NA
## 2961 100001200 NA NA
## 2962 100001201 NA NA
## 2963 100001203 NA NA
## 2964 100001204 NA NA
## 2965 100001205 NA NA
## 2966 100001206 NA NA
## 2967 100001208 NA NA
## 2968 100001210 NA NA
## 2969 100001211 NA NA
## 2970 100001212 NA NA
## 2971 100001213 NA NA
## 2972 100001214 NA NA
## 2973 100001216 NA NA
## 2974 100001217 NA NA
## 2975 100001218 NA NA
## 2976 100001220 NA NA
## 2977 100001221 NA NA
## 2978 100001222 NA NA
## 2979 100001224 NA NA
## 2980 100001226 NA NA
## 2981 100001227 NA NA
## 2982 100001228 NA NA
## 2983 100001229 NA NA
## 2984 100001231 NA NA
## 2985 100001233 NA NA
## 2986 100001235 NA NA
## 2987 100001236 NA NA
## 2988 100001238 NA NA
## 2989 100001244 NA NA
## 2990 100001245 NA NA
## 2991 100001246 NA NA
## 2992 100001247 NA NA
## 2993 100001249 NA NA
## 2994 100001251 NA NA
## 2995 100001254 NA NA
## 2996 100001256 NA NA
## 2997 100001257 NA NA
## 2998 100001258 NA NA
## 2999 100001260 NA NA
## 3000 100001261 NA NA
## 3001 100001263 NA NA
## 3002 100001264 NA NA
## 3003 100001265 NA NA
## 3004 100001266 NA NA
## 3005 100001268 NA NA
## 3006 100001269 NA NA
## 3007 100001270 NA NA
## 3008 100001272 NA NA
## 3009 100001276 NA NA
## 3010 100001278 NA NA
## 3011 100001280 NA NA
## 3012 100001281 NA NA
## 3013 100001282 NA NA
## 3014 100001283 NA NA
## 3015 100001284 NA NA
## 3016 100001286 NA NA
## 3017 100001287 NA NA
## 3018 100001289 NA NA
## 3019 100001290 NA NA
## 3020 100001291 NA NA
## 3021 100001292 NA NA
## 3022 100001294 NA NA
## 3023 100001296 NA NA
## 3024 100001302 NA NA
## 3025 100001305 NA NA
## 3026 100001306 NA NA
## 3027 100001308 NA NA
## 3028 100001309 NA NA
## 3029 100001312 NA NA
## 3030 100001313 NA NA
## 3031 100001314 NA NA
## 3032 100001315 NA NA
## 3033 100001317 NA NA
## 3034 100001320 NA NA
## 3035 100001321 NA NA
## 3036 100001324 NA NA
## 3037 100001326 NA NA
## 3038 100001327 NA NA
## 3039 100001328 NA NA
## 3040 100001329 NA NA
## 3041 100001330 NA NA
## 3042 100001331 NA NA
## 3043 100001332 NA NA
## 3044 100001333 NA NA
## 3045 100001334 NA NA
## 3046 100001335 NA NA
## 3047 100001336 NA NA
## 3048 100001337 NA NA
## 3049 100001338 NA NA
## 3050 100001343 NA NA
## 3051 100001344 NA NA
## 3052 100001345 NA NA
## 3053 100001346 NA NA
## 3054 100001348 NA NA
## 3055 100001351 NA NA
## 3056 100001352 NA NA
## 3057 100001355 NA NA
## 3058 100001357 NA NA
## 3059 100001358 NA NA
## 3060 100001359 NA NA
## 3061 100001361 NA NA
## 3062 100001362 NA NA
## 3063 100001364 NA NA
## 3064 100001365 NA NA
## 3065 100001366 NA NA
## 3066 100001368 NA NA
## 3067 100001369 NA NA
## 3068 100001370 NA NA
## 3069 100001371 NA NA
## 3070 100001372 NA NA
## 3071 100001374 NA NA
## 3072 100001377 NA NA
## 3073 100001379 NA NA
## 3074 100001380 NA NA
## 3075 100001382 NA NA
## 3076 100001384 NA NA
## 3077 100001385 NA NA
## 3078 100001386 NA NA
## 3079 100001387 NA NA
## 3080 100001388 NA NA
## 3081 100001389 NA NA
## 3082 100001390 NA NA
## 3083 100001392 NA NA
## 3084 100001394 NA NA
## 3085 100001396 NA NA
## 3086 100001397 NA NA
## 3087 100001398 NA NA
## 3088 100001399 NA NA
## 3089 100001400 NA NA
## 3090 100001406 NA NA
## 3091 100001408 NA NA
## 3092 100001409 NA NA
## 3093 100001410 NA NA
## 3094 100001413 NA NA
## 3095 100001415 NA NA
## 3096 100001416 NA NA
## 3097 100001424 NA NA
## 3098 100001426 NA NA
## 3099 100001429 NA NA
## 3100 100001430 NA NA
## 3101 100001431 NA NA
## 3102 100001432 NA NA
## 3103 100001433 NA NA
## 3104 100001437 NA NA
## 3105 100001438 NA NA
## 3106 100001442 NA NA
## 3107 100001446 NA NA
## 3108 100001447 NA NA
## 3109 100001450 NA NA
## 3110 100001451 NA NA
## 3111 100001452 NA NA
## 3112 100001453 NA NA
## 3113 100001454 NA NA
## 3114 100001455 NA NA
## 3115 100001457 NA NA
## 3116 100001458 NA NA
## 3117 100001459 NA NA
## 3118 100001461 NA NA
## 3119 100001462 NA NA
## 3120 100001464 NA NA
## 3121 100001465 NA NA
## 3122 100001466 NA NA
## 3123 100001467 NA NA
## 3124 100001469 NA NA
## 3125 100001471 NA NA
## 3126 100001472 NA NA
## 3127 100001473 NA NA
## 3128 100001475 NA NA
## 3129 100001476 NA NA
## 3130 100001477 NA NA
## 3131 100001478 NA NA
## 3132 100001479 NA NA
## 3133 100001481 NA NA
## 3134 100001482 NA NA
## 3135 100001484 NA NA
## 3136 100001485 NA NA
## 3137 100001486 NA NA
## 3138 100001489 NA NA
## 3139 100001490 NA NA
## 3140 100001492 NA NA
## 3141 100001493 NA NA
## 3142 100001496 NA NA
## 3143 100001498 NA NA
## 3144 100001499 NA NA
## 3145 100001500 NA NA
## 3146 100001502 NA NA
## 3147 100001504 NA NA
## 3148 100001505 NA NA
## 3149 100001507 NA NA
## 3150 100001508 NA NA
## 3151 100001509 NA NA
## 3152 100001510 NA NA
## 3153 100001511 NA NA
## 3154 100001513 NA NA
## 3155 100001514 NA NA
## 3156 100001515 NA NA
## 3157 100001516 NA NA
## 3158 100001519 NA NA
## 3159 100001520 NA NA
## 3160 100001521 NA NA
## 3161 100001527 NA NA
## 3162 100001531 NA NA
## 3163 100001532 NA NA
## 3164 100001533 NA NA
## 3165 100001535 NA NA
## 3166 100001536 NA NA
## 3167 100001537 NA NA
## 3168 100001539 NA NA
## 3169 100001542 NA NA
## 3170 100001543 NA NA
## 3171 100001544 NA NA
## 3172 100001545 NA NA
## 3173 100001546 NA NA
## 3174 100001548 NA NA
## 3175 100001550 NA NA
## 3176 100001552 NA NA
## 3177 100001553 NA NA
## 3178 100001555 NA NA
## 3179 100001556 NA NA
## 3180 100001557 NA NA
## 3181 100001558 NA NA
## 3182 100001559 NA NA
## 3183 100001560 NA NA
## 3184 100001561 NA NA
## 3185 100001562 NA NA
## 3186 100001563 NA NA
## 3187 100001567 NA NA
## 3188 100001568 NA NA
## 3189 100001570 NA NA
## 3190 100001571 NA NA
## 3191 100001577 NA NA
## 3192 100001578 NA NA
## 3193 100001579 NA NA
## 3194 100001580 NA NA
## 3195 100001581 NA NA
## 3196 100001582 NA NA
## 3197 100001583 NA NA
## 3198 100001584 NA NA
## 3199 100001585 NA NA
## 3200 100001587 NA NA
## 3201 100001588 NA NA
## 3202 100001589 NA NA
## 3203 100001590 NA NA
## 3204 100001591 NA NA
## 3205 100001592 NA NA
## 3206 100001593 NA NA
## 3207 100001595 NA NA
## 3208 100001596 NA NA
## 3209 100001601 NA NA
## 3210 100001605 NA NA
## 3211 100001606 NA NA
## 3212 100001607 NA NA
## 3213 100001608 NA NA
## 3214 100001609 NA NA
## 3215 100001610 NA NA
## 3216 100001611 NA NA
## 3217 100001612 NA NA
## 3218 100001613 NA NA
## 3219 100001614 NA NA
## 3220 100001616 NA NA
## 3221 100001617 NA NA
## 3222 100001618 NA NA
## 3223 100001619 NA NA
## 3224 100001621 NA NA
## 3225 100001622 NA NA
## 3226 100001623 NA NA
## 3227 100001625 NA NA
## 3228 100001630 NA NA
## 3229 100001632 NA NA
## 3230 100001633 NA NA
## 3231 100001634 NA NA
## 3232 100001636 NA NA
## 3233 100001637 NA NA
## 3234 100001639 NA NA
## 3235 100001640 NA NA
## 3236 100001641 NA NA
## 3237 100001643 NA NA
## 3238 100001645 NA NA
## 3239 100001646 NA NA
## 3240 100001647 NA NA
## 3241 100001648 NA NA
## 3242 100001653 NA NA
## 3243 100001658 NA NA
## 3244 100001659 NA NA
## 3245 100001660 NA NA
## 3246 100001661 NA NA
## 3247 100001662 NA NA
## 3248 100001664 NA NA
## 3249 100001666 NA NA
## 3250 100001667 NA NA
## 3251 100001670 NA NA
## 3252 100001671 NA NA
## 3253 100001673 NA NA
## 3254 100001675 NA NA
## 3255 100001676 NA NA
## 3256 100001684 NA NA
## 3257 100001685 NA NA
## 3258 100001686 NA NA
## 3259 100001687 NA NA
## 3260 100001693 NA NA
## 3261 100001694 NA NA
## 3262 100001695 NA NA
## 3263 100001697 NA NA
## 3264 100001698 NA NA
## 3265 100001699 NA NA
## 3266 100001702 NA NA
## 3267 100001703 NA NA
## 3268 100001704 NA NA
## 3269 100001706 NA NA
## 3270 100001710 NA NA
## 3271 100001711 NA NA
## 3272 100001712 NA NA
## 3273 100001715 NA NA
## 3274 100001718 NA NA
## 3275 100001719 NA NA
## 3276 100001721 NA NA
## 3277 100001723 NA NA
## 3278 100001724 NA NA
## 3279 100001725 NA NA
## 3280 100001727 NA NA
## 3281 100001729 NA NA
## 3282 100001730 NA NA
## 3283 100001731 NA NA
## 3284 100001732 NA NA
## 3285 100001736 NA NA
## 3286 100001737 NA NA
## 3287 100001738 NA NA
## 3288 100001739 NA NA
## 3289 100001741 NA NA
## 3290 100001742 NA NA
## 3291 100001743 NA NA
## 3292 100001745 NA NA
## 3293 100001747 NA NA
## 3294 100001750 NA NA
## 3295 100001751 NA NA
## 3296 100001752 NA NA
## 3297 100001753 NA NA
## 3298 100001754 NA NA
## 3299 100001756 NA NA
## 3300 100001757 NA NA
## 3301 100001759 NA NA
## 3302 100001761 NA NA
## 3303 100001762 NA NA
## 3304 100001765 NA NA
## 3305 100001766 NA NA
## 3306 100001769 NA NA
## 3307 100001775 NA NA
## 3308 100001777 NA NA
## 3309 100001778 NA NA
## 3310 100001779 NA NA
## 3311 100001780 NA NA
## 3312 100001782 NA NA
## 3313 100001784 NA NA
## 3314 100001785 NA NA
## 3315 100001787 NA NA
## 3316 100001788 NA NA
## 3317 100001789 NA NA
## 3318 100001792 NA NA
## 3319 100001794 NA NA
## 3320 100001799 NA NA
## 3321 100001802 NA NA
## 3322 100001803 NA NA
## 3323 100001806 NA NA
## 3324 100001808 NA NA
## 3325 100001809 NA NA
## 3326 100001810 NA NA
## 3327 100001811 NA NA
## 3328 100001812 NA NA
## 3329 100001813 NA NA
## 3330 100001814 NA NA
## 3331 100001816 NA NA
## 3332 100001821 NA NA
## 3333 100001822 NA NA
## 3334 100001823 NA NA
## 3335 100001824 NA NA
## 3336 100001825 NA NA
## 3337 100001826 NA NA
## 3338 100001828 NA NA
## 3339 100001829 NA NA
## 3340 100001831 NA NA
## 3341 100001833 NA NA
## 3342 100001835 NA NA
## 3343 100001836 NA NA
## 3344 100001837 NA NA
## 3345 100001838 NA NA
## 3346 100001840 NA NA
## 3347 100001841 NA NA
## 3348 100001843 NA NA
## 3349 100001844 NA NA
## 3350 100001846 NA NA
## 3351 100001847 NA NA
## 3352 100001848 NA NA
## 3353 100001851 NA NA
## 3354 100001853 NA NA
## 3355 100001855 NA NA
## 3356 100001857 NA NA
## 3357 100001858 NA NA
## 3358 100001859 NA NA
## 3359 100001860 NA NA
## 3360 100001861 NA NA
## 3361 100001863 NA NA
## 3362 100001864 NA NA
## 3363 100001865 NA NA
## 3364 100001866 NA NA
## 3365 100001867 NA NA
## 3366 100001868 NA NA
## 3367 100001870 NA NA
## 3368 100001872 NA NA
## 3369 100001873 NA NA
## 3370 100001875 NA NA
## 3371 100001876 NA NA
## 3372 100001878 NA NA
## 3373 100001879 NA NA
## 3374 100001882 NA NA
## 3375 100001884 NA NA
## 3376 100001886 NA NA
## 3377 100001887 NA NA
## 3378 100001889 NA NA
## 3379 100001891 NA NA
## 3380 100001894 NA NA
## 3381 100001896 NA NA
## 3382 100001898 NA NA
## 3383 100001899 NA NA
## 3384 100001900 NA NA
## 3385 100001901 NA NA
## 3386 100001902 NA NA
## 3387 100001903 NA NA
## 3388 100001906 NA NA
## 3389 100001907 NA NA
## 3390 100001908 NA NA
## 3391 100001910 NA NA
## 3392 100001911 NA NA
## 3393 100001913 NA NA
## 3394 100001917 NA NA
## 3395 100001920 NA NA
## 3396 100001922 NA NA
## 3397 100001925 NA NA
## 3398 100001926 NA NA
## 3399 100001927 NA NA
## 3400 100001928 NA NA
## 3401 100001929 NA NA
## 3402 100001932 NA NA
## 3403 100001933 NA NA
## 3404 100001935 NA NA
## 3405 100001937 NA NA
## 3406 100001938 NA NA
## 3407 100001940 NA NA
## 3408 100001941 NA NA
## 3409 100001942 NA NA
## 3410 100001943 NA NA
## 3411 100001944 NA NA
## 3412 100001945 NA NA
## 3413 100001946 NA NA
## 3414 100001947 NA NA
## 3415 100001949 NA NA
## 3416 100001950 NA NA
## 3417 100001952 NA NA
## 3418 100001954 NA NA
## 3419 100001958 NA NA
## 3420 100001959 NA NA
## 3421 100001960 NA NA
## 3422 100001962 NA NA
## 3423 100001964 NA NA
## 3424 100001965 NA NA
## 3425 100001966 NA NA
## 3426 100001968 NA NA
## 3427 100001970 NA NA
## 3428 100001971 NA NA
## 3429 100001975 NA NA
## 3430 100001976 NA NA
## 3431 100001977 NA NA
## 3432 100001978 NA NA
## 3433 100001980 NA NA
## 3434 100001982 NA NA
## 3435 100001983 NA NA
## 3436 100001984 NA NA
## 3437 100001985 NA NA
## 3438 100001987 NA NA
## 3439 100001988 NA NA
## 3440 100001989 NA NA
## 3441 100001990 NA NA
## 3442 100001991 NA NA
## 3443 100001994 NA NA
## 3444 100001997 NA NA
## 3445 100001998 NA NA
## 3446 100002001 NA NA
## 3447 100002002 NA NA
## 3448 100002006 NA NA
## 3449 100002009 NA NA
## 3450 100002010 NA NA
## 3451 100002013 NA NA
## 3452 100002014 NA NA
## 3453 100002015 NA NA
## 3454 100002016 NA NA
## 3455 100002017 NA NA
## 3456 100002018 NA NA
## 3457 100002020 NA NA
## 3458 100002021 NA NA
## 3459 100002022 NA NA
## 3460 100002023 NA NA
## 3461 100002027 NA NA
## 3462 100002028 NA NA
## 3463 100002029 NA NA
## 3464 100002031 NA NA
## 3465 100002032 NA NA
## 3466 100002033 NA NA
## 3467 100002035 NA NA
## 3468 100002036 NA NA
## 3469 100002037 NA NA
## 3470 100002038 NA NA
## 3471 100002039 NA NA
## 3472 100002040 NA NA
## 3473 100002042 NA NA
## 3474 100002044 NA NA
## 3475 100002048 NA NA
## 3476 100002053 NA NA
## 3477 100002054 NA NA
## 3478 100002055 NA NA
## 3479 100002056 NA NA
## 3480 100002057 NA NA
## 3481 100002058 NA NA
## 3482 100002060 NA NA
## 3483 100002063 NA NA
## 3484 100002064 NA NA
## 3485 100002065 NA NA
## 3486 100002070 NA NA
## 3487 100002071 NA NA
## 3488 100002073 NA NA
## 3489 100002074 NA NA
## 3490 100002078 NA NA
## 3491 100002084 NA NA
## 3492 100002086 NA NA
## 3493 100002087 NA NA
## 3494 100002088 NA NA
## 3495 100002091 NA NA
## 3496 100002092 NA NA
## 3497 100002093 NA NA
## 3498 100002094 NA NA
## 3499 100002096 NA NA
## 3500 100002097 NA NA
## 3501 100002099 NA NA
## 3502 100002101 NA NA
## 3503 100002102 NA NA
## 3504 100002103 NA NA
## 3505 100002104 NA NA
## 3506 100002108 NA NA
## 3507 100002109 NA NA
## 3508 100002110 NA NA
## 3509 100002111 NA NA
## 3510 100002114 NA NA
## 3511 100002115 NA NA
## 3512 100002116 NA NA
## 3513 100002119 NA NA
## 3514 100002120 NA NA
## 3515 100002124 NA NA
## 3516 100002126 NA NA
## 3517 100002127 NA NA
## 3518 100002128 NA NA
## 3519 100002129 NA NA
## 3520 100002130 NA NA
## 3521 100002133 NA NA
## 3522 100002134 NA NA
## 3523 100002135 NA NA
## 3524 100002138 NA NA
## 3525 100002139 NA NA
## 3526 100002144 NA NA
## 3527 100002145 NA NA
## 3528 100002147 NA NA
## 3529 100002148 NA NA
## 3530 100002149 NA NA
## 3531 100002150 NA NA
## 3532 100002151 NA NA
## 3533 100002153 NA NA
## 3534 100002157 NA NA
## 3535 100002158 NA NA
## 3536 100002160 NA NA
## 3537 100002163 NA NA
## 3538 100002165 NA NA
## 3539 100002167 NA NA
## 3540 100002168 NA NA
## 3541 100002169 NA NA
## 3542 100002170 NA NA
## 3543 100002171 NA NA
## 3544 100002172 NA NA
## 3545 100002173 NA NA
## 3546 100002174 NA NA
## 3547 100002177 NA NA
## 3548 100002179 NA NA
## 3549 100002180 NA NA
## 3550 100002181 NA NA
## 3551 100002182 NA NA
## 3552 100002183 NA NA
## 3553 100002184 NA NA
## 3554 100002185 NA NA
## 3555 100002189 NA NA
## 3556 100002190 NA NA
## 3557 100002191 NA NA
## 3558 100002192 NA NA
## 3559 100002193 NA NA
## 3560 100002197 NA NA
## 3561 100002198 NA NA
## 3562 100002201 NA NA
## 3563 100002209 NA NA
## 3564 100002211 NA NA
## 3565 100002212 NA NA
## 3566 100002214 NA NA
## 3567 100002215 NA NA
## 3568 100002216 NA NA
## 3569 100002217 NA NA
## 3570 100002218 NA NA
## 3571 100002219 NA NA
## 3572 100002220 NA NA
## 3573 100002223 NA NA
## 3574 100002224 NA NA
## 3575 100002225 NA NA
## 3576 100002230 NA NA
## 3577 100002232 NA NA
## 3578 100002234 NA NA
## 3579 100002235 NA NA
## 3580 100002236 NA NA
## 3581 100002237 NA NA
## 3582 100002238 NA NA
## 3583 100002239 NA NA
## 3584 100002240 NA NA
## 3585 100002242 NA NA
## 3586 100002246 NA NA
## 3587 100002247 NA NA
## 3588 100002248 NA NA
## 3589 100002255 NA NA
## 3590 100002257 NA NA
## 3591 100002259 NA NA
## 3592 100002260 NA NA
## 3593 100002262 NA NA
## 3594 100002263 NA NA
## 3595 100002266 NA NA
## 3596 100002267 NA NA
## 3597 100002268 NA NA
## 3598 100002271 NA NA
## 3599 100002274 NA NA
## 3600 100002277 NA NA
## 3601 100002279 NA NA
## 3602 100002281 NA NA
## 3603 100002283 NA NA
## 3604 100002284 NA NA
## 3605 100002287 NA NA
## 3606 100002288 NA NA
## 3607 100002290 NA NA
## 3608 100002291 NA NA
## 3609 100002292 NA NA
## 3610 100002294 NA NA
## 3611 100002296 NA NA
## 3612 100002297 NA NA
## 3613 100002298 NA NA
## 3614 100002301 NA NA
## 3615 100002303 NA NA
## 3616 100002304 NA NA
## 3617 100002308 NA NA
## 3618 100002309 NA NA
## 3619 100002311 NA NA
## 3620 100002312 NA NA
## 3621 100002314 NA NA
## 3622 100002315 NA NA
## 3623 100002316 NA NA
## 3624 100002317 NA NA
## 3625 100002318 NA NA
## 3626 100002321 NA NA
## 3627 100002322 NA NA
## 3628 100002323 NA NA
## 3629 100002324 NA NA
## 3630 100002326 NA NA
## 3631 100002327 NA NA
## 3632 100002329 NA NA
## 3633 100002330 NA NA
## 3634 100002331 NA NA
## 3635 100002332 NA NA
## 3636 100002333 NA NA
## 3637 100002335 NA NA
## 3638 100002337 NA NA
## 3639 100002340 NA NA
## 3640 100002342 NA NA
## 3641 100002343 NA NA
## 3642 100002344 NA NA
## 3643 100002346 NA NA
## 3644 100002349 NA NA
## 3645 100002350 NA NA
## 3646 100002352 NA NA
## 3647 100002353 NA NA
## 3648 100002355 NA NA
## 3649 100002359 NA NA
## 3650 100002362 NA NA
## 3651 100002365 NA NA
## 3652 100002373 NA NA
## 3653 100002375 NA NA
## 3654 100002376 NA NA
## 3655 100002377 NA NA
## 3656 100002378 NA NA
## 3657 100002382 NA NA
## 3658 100002384 NA NA
## 3659 100002388 NA NA
## 3660 100002389 NA NA
## 3661 100002391 NA NA
## 3662 100002392 NA NA
## 3663 100002394 NA NA
## 3664 100002395 NA NA
## 3665 100002397 NA NA
## 3666 100002399 NA NA
## 3667 100002401 NA NA
## 3668 100002402 NA NA
## 3669 100002403 NA NA
## 3670 100002404 NA NA
## 3671 100002405 NA NA
## 3672 100002406 NA NA
## 3673 100002409 NA NA
## 3674 100002411 NA NA
## 3675 100002413 NA NA
## 3676 100002414 NA NA
## 3677 100002415 NA NA
## 3678 100002416 NA NA
## 3679 100002417 NA NA
## 3680 100002419 NA NA
## 3681 100002421 NA NA
## 3682 100002423 NA NA
## 3683 100002426 NA NA
## 3684 100002427 NA NA
## 3685 100002428 NA NA
## 3686 100002429 NA NA
## 3687 100002431 NA NA
## 3688 100002432 NA NA
## 3689 100002434 NA NA
## 3690 100002435 NA NA
## 3691 100002436 NA NA
## 3692 100002437 NA NA
## 3693 100002443 NA NA
## 3694 100002445 NA NA
## 3695 100002446 NA NA
## 3696 100002447 NA NA
## 3697 100002448 NA NA
## 3698 100002449 NA NA
## 3699 100002450 NA NA
## 3700 100002451 NA NA
## 3701 100002454 NA NA
## 3702 100002456 NA NA
## 3703 100002458 NA NA
## 3704 100002459 NA NA
## 3705 100002461 NA NA
## 3706 100002463 NA NA
## 3707 100002464 NA NA
## 3708 100002465 NA NA
## 3709 100002466 NA NA
## 3710 100002469 NA NA
## 3711 100002470 NA NA
## 3712 100002471 NA NA
## 3713 100002472 NA NA
## 3714 100002473 NA NA
## 3715 100002475 NA NA
## 3716 100002477 NA NA
## 3717 100002480 NA NA
## 3718 100002481 NA NA
## 3719 100002482 NA NA
## 3720 100002483 NA NA
## 3721 100002485 NA NA
## 3722 100002487 NA NA
## 3723 100002488 NA NA
## 3724 100002489 NA NA
## 3725 100002491 NA NA
## 3726 100002492 NA NA
## 3727 100002497 NA NA
## 3728 100002498 NA NA
## 3729 100002502 NA NA
## 3730 100002503 NA NA
## 3731 100002506 NA NA
## 3732 100002508 NA NA
## 3733 100002509 NA NA
## 3734 100002510 NA NA
## 3735 100002512 NA NA
## 3736 100002514 NA NA
## 3737 100002515 NA NA
## 3738 100002517 NA NA
## 3739 100002519 NA NA
## 3740 100002520 NA NA
## 3741 100002521 NA NA
## 3742 100002522 NA NA
## 3743 100002527 NA NA
## 3744 100002528 NA NA
## 3745 100002529 NA NA
## 3746 100002531 NA NA
## 3747 100002532 NA NA
## 3748 100002533 NA NA
## 3749 100002534 NA NA
## 3750 100002535 NA NA
## 3751 100002536 NA NA
## 3752 100002537 NA NA
## 3753 100002538 NA NA
## 3754 100002539 NA NA
## 3755 100002544 NA NA
## 3756 100002545 NA NA
## 3757 100002547 NA NA
## 3758 100002549 NA NA
## 3759 100002550 NA NA
## 3760 100002551 NA NA
## 3761 100002552 NA NA
## 3762 100002553 NA NA
## 3763 100002558 NA NA
## 3764 100002562 NA NA
## 3765 100002563 NA NA
## 3766 100002565 NA NA
## 3767 100002566 NA NA
## 3768 100002567 NA NA
## 3769 100002568 NA NA
## 3770 100002569 NA NA
## 3771 100002571 NA NA
## 3772 100002575 NA NA
## 3773 100002578 NA NA
## 3774 100002580 NA NA
## 3775 100002581 NA NA
## 3776 100002582 NA NA
## 3777 100002586 NA NA
## 3778 100002587 NA NA
## 3779 100002589 NA NA
## 3780 100002591 NA NA
## 3781 100002592 NA NA
## 3782 100002593 NA NA
## 3783 100002596 NA NA
## 3784 100002597 NA NA
## 3785 100002598 NA NA
## 3786 100002600 NA NA
## 3787 100002601 NA NA
## 3788 100002603 NA NA
## 3789 100002607 NA NA
## 3790 100002608 NA NA
## 3791 100002609 NA NA
## 3792 100002610 NA NA
## 3793 100002611 NA NA
## 3794 100002612 NA NA
## 3795 100002615 NA NA
## 3796 100002616 NA NA
## 3797 100002619 NA NA
## 3798 100002621 NA NA
## 3799 100002622 NA NA
## 3800 100002625 NA NA
## 3801 100002627 NA NA
## 3802 100002628 NA NA
## 3803 100002629 NA NA
## 3804 100002635 NA NA
## 3805 100002637 NA NA
## 3806 100002639 NA NA
## 3807 100002640 NA NA
## 3808 100002641 NA NA
## 3809 100002642 NA NA
## 3810 100002643 NA NA
## 3811 100002644 NA NA
## 3812 100002646 NA NA
## 3813 100002648 NA NA
## 3814 100002649 NA NA
## 3815 100002652 NA NA
## 3816 100002653 NA NA
## 3817 100002654 NA NA
## 3818 100002657 NA NA
## 3819 100002658 NA NA
## 3820 100002659 NA NA
## 3821 100002662 NA NA
## 3822 100002663 NA NA
## 3823 100002664 NA NA
## 3824 100002665 NA NA
## 3825 100002667 NA NA
## 3826 100002669 NA NA
## 3827 100002670 NA NA
## 3828 100002671 NA NA
## 3829 100002675 NA NA
## 3830 100002677 NA NA
## 3831 100002678 NA NA
## 3832 100002679 NA NA
## 3833 100002682 NA NA
## 3834 100002683 NA NA
## 3835 100002684 NA NA
## 3836 100002685 NA NA
## 3837 100002688 NA NA
## 3838 100002689 NA NA
## 3839 100002690 NA NA
## 3840 100002691 NA NA
## 3841 100002693 NA NA
## 3842 100002694 NA NA
## 3843 100002695 NA NA
## 3844 100002697 NA NA
## 3845 100002698 NA NA
## 3846 100002699 NA NA
## 3847 100002700 NA NA
## 3848 100002701 NA NA
## 3849 100002703 NA NA
## 3850 100002706 NA NA
## 3851 100002707 NA NA
## 3852 100002708 NA NA
## 3853 100002709 NA NA
## 3854 100002711 NA NA
## 3855 100002713 NA NA
## 3856 100002714 NA NA
## 3857 100002718 NA NA
## 3858 100002719 NA NA
## 3859 100002720 NA NA
## 3860 100002724 NA NA
## 3861 100002725 NA NA
## 3862 100002726 NA NA
## 3863 100002730 NA NA
## 3864 100002731 NA NA
## 3865 100002733 NA NA
## 3866 100002734 NA NA
## 3867 100002736 NA NA
## 3868 100002737 NA NA
## 3869 100002738 NA NA
## 3870 100002739 NA NA
## 3871 100002740 NA NA
## 3872 100002741 NA NA
## 3873 100002742 NA NA
## 3874 100002744 NA NA
## 3875 100002746 NA NA
## 3876 100002747 NA NA
## 3877 100002748 NA NA
## 3878 100002750 NA NA
## 3879 100002751 NA NA
## 3880 100002753 NA NA
## 3881 100002754 NA NA
## 3882 100002755 NA NA
## 3883 100002757 NA NA
## 3884 100002758 NA NA
## 3885 100002759 NA NA
## 3886 100002761 NA NA
## 3887 100002763 NA NA
## 3888 100002765 NA NA
## 3889 100002766 NA NA
## 3890 100002767 NA NA
## 3891 100002768 NA NA
## 3892 100002769 NA NA
## 3893 100002770 NA NA
## 3894 100002773 NA NA
## 3895 100002775 NA NA
## 3896 100002778 NA NA
## 3897 100002781 NA NA
## 3898 100002782 NA NA
## 3899 100002783 NA NA
## 3900 100002784 NA NA
## 3901 100002786 NA NA
## 3902 100002788 NA NA
## 3903 100002789 NA NA
## 3904 100002791 NA NA
## 3905 100002792 NA NA
## 3906 100002793 NA NA
## 3907 100002795 NA NA
## 3908 100002796 NA NA
## 3909 100002798 NA NA
## 3910 100002803 NA NA
## 3911 100002806 NA NA
## 3912 100002807 NA NA
## 3913 100002809 NA NA
## 3914 100002810 NA NA
## 3915 100002812 NA NA
## 3916 100002813 NA NA
## 3917 100002814 NA NA
## 3918 100002818 NA NA
## 3919 100002820 NA NA
## 3920 100002821 NA NA
## 3921 100002822 NA NA
## 3922 100002825 NA NA
## 3923 100002828 NA NA
## 3924 100002829 NA NA
## 3925 100002830 NA NA
## 3926 100002835 NA NA
## 3927 100002837 NA NA
## 3928 100002839 NA NA
## 3929 100002841 NA NA
## 3930 100002842 NA NA
## 3931 100002843 NA NA
## 3932 100002844 NA NA
## 3933 100002846 NA NA
## 3934 100002847 NA NA
## 3935 100002849 NA NA
## 3936 100002851 NA NA
## 3937 100002854 NA NA
## 3938 100002855 NA NA
## 3939 100002856 NA NA
## 3940 100002858 NA NA
## 3941 100002860 NA NA
## 3942 100002861 NA NA
## 3943 100002862 NA NA
## 3944 100002864 NA NA
## 3945 100002867 NA NA
## 3946 100002870 NA NA
## 3947 100002871 NA NA
## 3948 100002872 NA NA
## 3949 100002875 NA NA
## 3950 100002876 NA NA
## 3951 100002877 NA NA
## 3952 100002879 NA NA
## 3953 100002880 NA NA
## 3954 100002881 NA NA
## 3955 100002882 NA NA
## 3956 100002883 NA NA
## 3957 100002884 NA NA
## 3958 100002885 NA NA
## 3959 100002886 NA NA
## 3960 100002887 NA NA
## 3961 100002888 NA NA
## 3962 100002890 NA NA
## 3963 100002891 NA NA
## 3964 100002892 NA NA
## 3965 100002894 NA NA
## 3966 100002895 NA NA
## 3967 100002896 NA NA
## 3968 100002898 NA NA
## 3969 100002899 NA NA
## 3970 100002900 NA NA
## 3971 100002903 NA NA
## 3972 100002904 NA NA
## 3973 100002905 NA NA
## 3974 100002907 NA NA
## 3975 100002909 NA NA
## 3976 100002910 NA NA
## 3977 100002911 NA NA
## 3978 100002915 NA NA
## 3979 100002916 NA NA
## 3980 100002918 NA NA
## 3981 100002919 NA NA
## 3982 100002922 NA NA
## 3983 100002925 NA NA
## 3984 100002926 NA NA
## 3985 100002928 NA NA
## 3986 100002929 NA NA
## 3987 100002931 NA NA
## 3988 100002932 NA NA
## 3989 100002933 NA NA
## 3990 100002938 NA NA
## 3991 100002939 NA NA
## 3992 100002940 NA NA
## 3993 100002942 NA NA
## 3994 100002943 NA NA
## 3995 100002945 NA NA
## 3996 100002947 NA NA
## 3997 100002948 NA NA
## 3998 100002949 NA NA
## 3999 100002951 NA NA
## 4000 100002952 NA NA
## 4001 100002954 NA NA
## 4002 100002956 NA NA
## 4003 100002957 NA NA
## 4004 100002958 NA NA
## 4005 100002959 NA NA
## 4006 100002960 NA NA
## 4007 100002966 NA NA
## 4008 100002967 NA NA
## 4009 100002968 NA NA
## 4010 100002969 NA NA
## 4011 100002971 NA NA
## 4012 100002973 NA NA
## 4013 100002975 NA NA
## 4014 100002977 NA NA
## 4015 100002978 NA NA
## 4016 100002979 NA NA
## 4017 100002981 NA NA
## 4018 100002982 NA NA
## 4019 100002983 NA NA
## 4020 100002985 NA NA
## 4021 100002988 NA NA
## 4022 100002989 NA NA
## 4023 100002990 NA NA
## 4024 100002993 NA NA
## 4025 100002994 NA NA
## 4026 100002995 NA NA
## 4027 100002996 NA NA
## 4028 100002997 NA NA
## 4029 100002999 NA NA
## 4030 100003006 NA NA
## 4031 100003007 NA NA
## 4032 100003008 NA NA
## 4033 100003009 NA NA
## 4034 100003011 NA NA
## 4035 100003012 NA NA
## 4036 100003016 NA NA
## 4037 100003021 NA NA
## 4038 100003023 NA NA
## 4039 100003024 NA NA
## 4040 100003026 NA NA
## 4041 100003027 NA NA
## 4042 100003028 NA NA
## 4043 100003029 NA NA
## 4044 100003030 NA NA
## 4045 100003032 NA NA
## 4046 100003033 NA NA
## 4047 100003034 NA NA
## 4048 100003035 NA NA
## 4049 100003037 NA NA
## 4050 100003039 NA NA
## 4051 100003040 NA NA
## 4052 100003043 NA NA
## 4053 100003048 NA NA
## 4054 100003049 NA NA
## 4055 100003050 NA NA
## 4056 100003051 NA NA
## 4057 100003053 NA NA
## 4058 100003055 NA NA
## 4059 100003057 NA NA
## 4060 100003059 NA NA
## 4061 100003060 NA NA
## 4062 100003061 NA NA
## 4063 100003062 NA NA
## 4064 100003063 NA NA
## 4065 100003065 NA NA
## 4066 100003066 NA NA
## 4067 100003067 NA NA
## 4068 100003068 NA NA
## 4069 100003070 NA NA
## 4070 100003080 NA NA
## 4071 100003081 NA NA
## 4072 100003082 NA NA
## 4073 100003083 NA NA
## 4074 100003085 NA NA
## 4075 100003086 NA NA
## 4076 100003089 NA NA
## 4077 100003091 NA NA
## 4078 100003095 NA NA
## 4079 100003096 NA NA
## 4080 100003097 NA NA
## 4081 100003100 NA NA
## 4082 100003102 NA NA
## 4083 100003104 NA NA
## 4084 100003105 NA NA
## 4085 100003106 NA NA
## 4086 100003107 NA NA
## 4087 100003110 NA NA
## 4088 100003111 NA NA
## 4089 100003117 NA NA
## 4090 100003120 NA NA
## 4091 100003121 NA NA
## 4092 100003122 NA NA
## 4093 100003123 NA NA
## 4094 100003125 NA NA
## 4095 100003126 NA NA
## 4096 100003127 NA NA
## 4097 100003129 NA NA
## 4098 100003131 NA NA
## 4099 100003132 NA NA
## 4100 100003133 NA NA
## 4101 100003134 NA NA
## 4102 100003135 NA NA
## 4103 100003137 NA NA
## 4104 100003139 NA NA
## 4105 100003144 NA NA
## 4106 100003147 NA NA
## 4107 100003148 NA NA
## 4108 100003149 NA NA
## 4109 100003153 NA NA
## 4110 100003155 NA NA
## 4111 100003156 NA NA
## 4112 100003157 NA NA
## 4113 100003158 NA NA
## 4114 100003160 NA NA
## 4115 100003164 NA NA
## 4116 100003168 NA NA
## 4117 100003169 NA NA
## 4118 100003170 NA NA
## 4119 100003171 NA NA
## 4120 100003172 NA NA
## 4121 100003173 NA NA
## 4122 100003174 NA NA
## 4123 100003176 NA NA
## 4124 100003178 NA NA
## 4125 100003179 NA NA
## 4126 100003182 NA NA
## 4127 100003185 NA NA
## 4128 100003186 NA NA
## 4129 100003187 NA NA
## 4130 100003190 NA NA
## 4131 100003191 NA NA
## 4132 100003193 NA NA
## 4133 100003195 NA NA
## 4134 100003198 NA NA
## 4135 100003199 NA NA
## 4136 100003200 NA NA
## 4137 100003202 NA NA
## 4138 100003203 NA NA
## 4139 100003204 NA NA
## 4140 100003205 NA NA
## 4141 100003207 NA NA
## 4142 100003209 NA NA
## 4143 100003210 NA NA
## 4144 100003211 NA NA
## 4145 100003213 NA NA
## 4146 100003214 NA NA
## 4147 100003215 NA NA
## 4148 100003218 NA NA
## 4149 100003219 NA NA
## 4150 100003220 NA NA
## 4151 100003226 NA NA
## 4152 100003229 NA NA
## 4153 100003232 NA NA
## 4154 100003233 NA NA
## 4155 100003234 NA NA
## 4156 100003235 NA NA
## 4157 100003236 NA NA
## 4158 100003237 NA NA
## 4159 100003239 NA NA
## 4160 100003240 NA NA
## 4161 100003241 NA NA
## 4162 100003242 NA NA
## 4163 100003243 NA NA
## 4164 100003244 NA NA
## 4165 100003245 NA NA
## 4166 100003247 NA NA
## 4167 100003248 NA NA
## 4168 100003249 NA NA
## 4169 100003252 NA NA
## 4170 100003254 NA NA
## 4171 100003256 NA NA
## 4172 100003257 NA NA
## 4173 100003258 NA NA
## 4174 100003259 NA NA
## 4175 100003260 NA NA
## 4176 100003262 NA NA
## 4177 100003264 NA NA
## 4178 100003265 NA NA
## 4179 100003266 NA NA
## 4180 100003268 NA NA
## 4181 100003271 NA NA
## 4182 100003272 NA NA
## 4183 100003274 NA NA
## 4184 100003275 NA NA
## 4185 100003276 NA NA
## 4186 100003277 NA NA
## 4187 100003278 NA NA
## 4188 100003279 NA NA
## 4189 100003280 NA NA
## 4190 100003281 NA NA
## 4191 100003282 NA NA
## 4192 100003284 NA NA
## 4193 100003285 NA NA
## 4194 100003286 NA NA
## 4195 100003287 NA NA
## 4196 100003289 NA NA
## 4197 100003292 NA NA
## 4198 100003293 NA NA
## 4199 100003294 NA NA
## 4200 100003295 NA NA
## 4201 100003296 NA NA
## 4202 100003299 NA NA
## 4203 100003300 NA NA
## 4204 100003303 NA NA
## 4205 100003304 NA NA
## 4206 100003308 NA NA
## 4207 100003310 NA NA
## 4208 100003314 NA NA
## 4209 100003315 NA NA
## 4210 100003316 NA NA
## 4211 100003317 NA NA
## 4212 100003318 NA NA
## 4213 100003320 NA NA
## 4214 100003321 NA NA
## 4215 100003322 NA NA
## 4216 100003324 NA NA
## 4217 100003325 NA NA
## 4218 100003327 NA NA
## 4219 100003328 NA NA
## 4220 100003330 NA NA
## 4221 100003331 NA NA
## 4222 100003334 NA NA
## 4223 100003336 NA NA
## 4224 100003338 NA NA
## 4225 100003340 NA NA
## 4226 100003341 NA NA
## 4227 100003342 NA NA
## 4228 100003343 NA NA
## 4229 100003347 NA NA
## 4230 100003348 NA NA
## 4231 100003349 NA NA
## 4232 100003350 NA NA
## 4233 100003353 NA NA
## 4234 100003354 NA NA
## 4235 100003355 NA NA
## 4236 100003356 NA NA
## 4237 100003357 NA NA
## 4238 100003358 NA NA
## 4239 100003360 NA NA
## 4240 100003361 NA NA
## 4241 100003363 NA NA
## 4242 100003364 NA NA
## 4243 100003366 NA NA
## 4244 100003367 NA NA
## 4245 100003368 NA NA
## 4246 100003369 NA NA
## 4247 100003372 NA NA
## 4248 100003373 NA NA
## 4249 100003374 NA NA
## 4250 100003375 NA NA
## 4251 100003377 NA NA
## 4252 100003378 NA NA
## 4253 100003379 NA NA
## 4254 100003380 NA NA
## 4255 100003381 NA NA
## 4256 100003383 NA NA
## 4257 100003384 NA NA
## 4258 100003388 NA NA
## 4259 100003392 NA NA
## 4260 100003393 NA NA
## 4261 100003396 NA NA
## 4262 100003398 NA NA
## 4263 100003399 NA NA
## 4264 100003400 NA NA
## 4265 100003401 NA NA
## 4266 100003402 NA NA
## 4267 100003403 NA NA
## 4268 100003404 NA NA
## 4269 100003405 NA NA
## 4270 100003407 NA NA
## 4271 100003409 NA NA
## 4272 100003411 NA NA
## 4273 100003413 NA NA
## 4274 100003414 NA NA
## 4275 100003415 NA NA
## 4276 100003416 NA NA
## 4277 100003418 NA NA
## 4278 100003419 NA NA
## 4279 100003421 NA NA
## 4280 100003424 NA NA
## 4281 100003425 NA NA
## 4282 100003426 NA NA
## 4283 100003428 NA NA
## 4284 100003429 NA NA
## 4285 100003430 NA NA
## 4286 100003434 NA NA
## 4287 100003436 NA NA
## 4288 100003438 NA NA
## 4289 100003439 NA NA
## 4290 100003440 NA NA
## 4291 100003442 NA NA
## 4292 100003443 NA NA
## 4293 100003444 NA NA
## 4294 100003445 NA NA
## 4295 100003448 NA NA
## 4296 100003449 NA NA
## 4297 100003453 NA NA
## 4298 100003457 NA NA
## 4299 100003458 NA NA
## 4300 100003459 NA NA
## 4301 100003460 NA NA
## 4302 100003461 NA NA
## 4303 100003469 NA NA
## 4304 100003470 NA NA
## 4305 100003471 NA NA
## 4306 100003474 NA NA
## 4307 100003477 NA NA
## 4308 100003478 NA NA
## 4309 100003479 NA NA
## 4310 100003480 NA NA
## 4311 100003482 NA NA
## 4312 100003483 NA NA
## 4313 100003486 NA NA
## 4314 100003489 NA NA
## 4315 100003490 NA NA
## 4316 100003492 NA NA
## 4317 100003493 NA NA
## 4318 100003494 NA NA
## 4319 100003495 NA NA
## 4320 100003499 NA NA
## 4321 100003500 NA NA
## 4322 100003504 NA NA
## 4323 100003506 NA NA
## 4324 100003510 NA NA
## 4325 100003511 NA NA
## 4326 100003513 NA NA
## 4327 100003514 NA NA
## 4328 100003515 NA NA
## 4329 100003516 NA NA
## 4330 100003517 NA NA
## 4331 100003518 NA NA
## 4332 100003520 NA NA
## 4333 100003521 NA NA
## 4334 100003522 NA NA
## 4335 100003523 NA NA
## 4336 100003525 NA NA
## 4337 100003526 NA NA
## 4338 100003528 NA NA
## 4339 100003531 NA NA
## 4340 100003532 NA NA
## 4341 100003533 NA NA
## 4342 100003536 NA NA
## 4343 100003537 NA NA
## 4344 100003539 NA NA
## 4345 100003540 NA NA
## 4346 100003542 NA NA
## 4347 100003543 NA NA
## 4348 100003544 NA NA
## 4349 100003545 NA NA
## 4350 100003548 NA NA
## 4351 100003549 NA NA
## 4352 100003550 NA NA
## 4353 100003552 NA NA
## 4354 100003554 NA NA
## 4355 100003555 NA NA
## 4356 100003556 NA NA
## 4357 100003558 NA NA
## 4358 100003560 NA NA
## 4359 100003561 NA NA
## 4360 100003563 NA NA
## 4361 100003564 NA NA
## 4362 100003567 NA NA
## 4363 100003568 NA NA
## 4364 100003571 NA NA
## 4365 100003572 NA NA
## 4366 100003573 NA NA
## 4367 100003575 NA NA
## 4368 100003578 NA NA
## 4369 100003579 NA NA
## 4370 100003580 NA NA
## 4371 100003582 NA NA
## 4372 100003583 NA NA
## 4373 100003585 NA NA
## 4374 100003588 NA NA
## 4375 100003589 NA NA
## 4376 100003590 NA NA
## 4377 100003591 NA NA
## 4378 100003592 NA NA
## 4379 100003593 NA NA
## 4380 100003596 NA NA
## 4381 100003598 NA NA
## 4382 100003601 NA NA
## 4383 100003602 NA NA
## 4384 100003604 NA NA
## 4385 100003606 NA NA
## 4386 100003607 NA NA
## 4387 100003608 NA NA
## 4388 100003609 NA NA
## 4389 100003611 NA NA
## 4390 100003613 NA NA
## 4391 100003614 NA NA
## 4392 100003615 NA NA
## 4393 100003616 NA NA
## 4394 100003618 NA NA
## 4395 100003620 NA NA
## 4396 100003621 NA NA
## 4397 100003624 NA NA
## 4398 100003625 NA NA
## 4399 100003629 NA NA
## 4400 100003630 NA NA
## 4401 100003634 NA NA
## 4402 100003638 NA NA
## 4403 100003639 NA NA
## 4404 100003640 NA NA
## 4405 100003642 NA NA
## 4406 100003644 NA NA
## 4407 100003645 NA NA
## 4408 100003646 NA NA
## 4409 100003648 NA NA
## 4410 100003649 NA NA
## 4411 100003650 NA NA
## 4412 100003651 NA NA
## 4413 100003654 NA NA
## 4414 100003655 NA NA
## 4415 100003656 NA NA
## 4416 100003657 NA NA
## 4417 100003658 NA NA
## 4418 100003660 NA NA
## 4419 100003663 NA NA
## 4420 100003664 NA NA
## 4421 100003665 NA NA
## 4422 100003666 NA NA
## 4423 100003668 NA NA
## 4424 100003670 NA NA
## 4425 100003671 NA NA
## 4426 100003673 NA NA
## 4427 100003674 NA NA
## 4428 100003676 NA NA
## 4429 100003677 NA NA
## 4430 100003678 NA NA
## 4431 100003679 NA NA
## 4432 100003680 NA NA
## 4433 100003681 NA NA
## 4434 100003682 NA NA
## 4435 100003683 NA NA
## 4436 100003684 NA NA
## 4437 100003685 NA NA
## 4438 100003686 NA NA
## 4439 100003687 NA NA
## 4440 100003688 NA NA
## 4441 100003689 NA NA
## 4442 100003690 NA NA
## 4443 100003691 NA NA
## 4444 100003692 NA NA
## 4445 100003695 NA NA
## 4446 100003697 NA NA
## 4447 100003698 NA NA
## 4448 100003700 NA NA
## 4449 100003701 NA NA
## 4450 100003702 NA NA
## 4451 100003704 NA NA
## 4452 100003705 NA NA
## 4453 100003706 NA NA
## 4454 100003707 NA NA
## 4455 100003708 NA NA
## 4456 100003709 NA NA
## 4457 100003712 NA NA
## 4458 100003713 NA NA
## 4459 100003714 NA NA
## 4460 100003716 NA NA
## 4461 100003717 NA NA
## 4462 100003718 NA NA
## 4463 100003722 NA NA
## 4464 100003723 NA NA
## 4465 100003728 NA NA
## 4466 100003731 NA NA
## 4467 100003732 NA NA
## 4468 100003734 NA NA
## 4469 100003735 NA NA
## 4470 100003739 NA NA
## 4471 100003743 NA NA
## 4472 100003744 NA NA
## 4473 100003745 NA NA
## 4474 100003750 NA NA
## 4475 100003752 NA NA
## 4476 100003753 NA NA
## 4477 100003754 NA NA
## 4478 100003755 NA NA
## 4479 100003757 NA NA
## 4480 100003760 NA NA
## 4481 100003761 NA NA
## 4482 100003762 NA NA
## 4483 100003769 NA NA
## 4484 100003770 NA NA
## 4485 100003772 NA NA
## 4486 100003775 NA NA
## 4487 100003776 NA NA
## 4488 100003777 NA NA
## 4489 100003778 NA NA
## 4490 100003779 NA NA
## 4491 100003785 NA NA
## 4492 100003787 NA NA
## 4493 100003789 NA NA
## 4494 100003790 NA NA
## 4495 100003792 NA NA
## 4496 100003793 NA NA
## 4497 100003796 NA NA
## 4498 100003797 NA NA
## 4499 100003798 NA NA
## 4500 100003799 NA NA
## 4501 100003801 NA NA
## 4502 100003803 NA NA
## 4503 100003804 NA NA
## 4504 100003805 NA NA
## 4505 100003806 NA NA
## 4506 100003807 NA NA
## 4507 100003809 NA NA
## 4508 100003812 NA NA
## 4509 100003813 NA NA
## 4510 100003814 NA NA
## 4511 100003819 NA NA
## 4512 100003821 NA NA
## 4513 100003822 NA NA
## 4514 100003823 NA NA
## 4515 100003824 NA NA
## 4516 100003825 NA NA
## 4517 100003827 NA NA
## 4518 100003828 NA NA
## 4519 100003829 NA NA
## 4520 100003830 NA NA
## 4521 100003831 NA NA
## 4522 100003832 NA NA
## 4523 100003833 NA NA
## 4524 100003834 NA NA
## 4525 100003835 NA NA
## 4526 100003836 NA NA
## 4527 100003837 NA NA
## 4528 100003841 NA NA
## 4529 100003843 NA NA
## 4530 100003844 NA NA
## 4531 100003846 NA NA
## 4532 100003847 NA NA
## 4533 100003848 NA NA
## 4534 100003850 NA NA
## 4535 100003851 NA NA
## 4536 100003852 NA NA
## 4537 100003853 NA NA
## 4538 100003854 NA NA
## 4539 100003855 NA NA
## 4540 100003856 NA NA
## 4541 100003857 NA NA
## 4542 100003859 NA NA
## 4543 100003862 NA NA
## 4544 100003865 NA NA
## 4545 100003866 NA NA
## 4546 100003867 NA NA
## 4547 100003868 NA NA
## 4548 100003869 NA NA
## 4549 100003872 NA NA
## 4550 100003875 NA NA
## 4551 100003876 NA NA
## 4552 100003877 NA NA
## 4553 100003878 NA NA
## 4554 100003879 NA NA
## 4555 100003880 NA NA
## 4556 100003881 NA NA
## 4557 100003883 NA NA
## 4558 100003884 NA NA
## 4559 100003885 NA NA
## 4560 100003886 NA NA
## 4561 100003887 NA NA
## 4562 100003889 NA NA
## 4563 100003890 NA NA
## 4564 100003893 NA NA
## 4565 100003895 NA NA
## 4566 100003896 NA NA
## 4567 100003899 NA NA
## 4568 100003900 NA NA
## 4569 100003902 NA NA
## 4570 100003905 NA NA
## 4571 100003906 NA NA
## 4572 100003907 NA NA
## 4573 100003908 NA NA
## 4574 100003909 NA NA
## 4575 100003911 NA NA
## 4576 100003912 NA NA
## 4577 100003914 NA NA
## 4578 100003915 NA NA
## 4579 100003916 NA NA
## 4580 100003918 NA NA
## 4581 100003919 NA NA
## 4582 100003920 NA NA
## 4583 100003921 NA NA
## 4584 100003922 NA NA
## 4585 100003924 NA NA
## 4586 100003926 NA NA
## 4587 100003929 NA NA
## 4588 100003931 NA NA
## 4589 100003933 NA NA
## 4590 100003934 NA NA
## 4591 100003935 NA NA
## 4592 100003938 NA NA
## 4593 100003939 NA NA
## 4594 100003940 NA NA
## 4595 100003941 NA NA
## 4596 100003945 NA NA
## 4597 100003947 NA NA
## 4598 100003949 NA NA
## 4599 100003953 NA NA
## 4600 100003954 NA NA
## 4601 100003955 NA NA
## 4602 100003958 NA NA
## 4603 100003960 NA NA
## 4604 100003963 NA NA
## 4605 100003964 NA NA
## 4606 100003965 NA NA
## 4607 100003966 NA NA
## 4608 100003968 NA NA
## 4609 100003971 NA NA
## 4610 100003974 NA NA
## 4611 100003975 NA NA
## 4612 100003978 NA NA
## 4613 100003982 NA NA
## 4614 100003984 NA NA
## 4615 100003985 NA NA
## 4616 100003989 NA NA
## 4617 100003990 NA NA
## 4618 100003992 NA NA
## 4619 100003994 NA NA
## 4620 100003996 NA NA
## 4621 100003997 NA NA
## 4622 100003998 NA NA
## 4623 100003999 NA NA
## 4624 100004000 NA NA
## 4625 100004002 NA NA
## 4626 100004003 NA NA
## 4627 100004005 NA NA
## 4628 100004007 NA NA
## 4629 100004008 NA NA
## 4630 100004009 NA NA
## 4631 100004010 NA NA
## 4632 100004012 NA NA
## 4633 100004013 NA NA
## 4634 100004014 NA NA
## 4635 100004015 NA NA
## 4636 100004017 NA NA
## 4637 100004018 NA NA
## 4638 100004020 NA NA
## 4639 100004022 NA NA
## 4640 100004024 NA NA
## 4641 100004025 NA NA
## 4642 100004026 NA NA
## 4643 100004028 NA NA
## 4644 100004031 NA NA
## 4645 100004032 NA NA
## 4646 100004033 NA NA
## 4647 100004034 NA NA
## 4648 100004035 NA NA
## 4649 100004036 NA NA
## 4650 100004037 NA NA
## 4651 100004039 NA NA
## 4652 100004041 NA NA
## 4653 100004042 NA NA
## 4654 100004043 NA NA
## 4655 100004044 NA NA
## 4656 100004046 NA NA
## 4657 100004052 NA NA
## 4658 100004053 NA NA
## 4659 100004055 NA NA
## 4660 100004056 NA NA
## 4661 100004057 NA NA
## 4662 100004058 NA NA
## 4663 100004059 NA NA
## 4664 100004061 NA NA
## 4665 100004062 NA NA
## 4666 100004063 NA NA
## 4667 100004064 NA NA
## 4668 100004065 NA NA
## 4669 100004066 NA NA
## 4670 100004068 NA NA
## 4671 100004071 NA NA
## 4672 100004073 NA NA
## 4673 100004074 NA NA
## 4674 100004075 NA NA
## 4675 100004076 NA NA
## 4676 100004079 NA NA
## 4677 100004080 NA NA
## 4678 100004081 NA NA
## 4679 100004084 NA NA
## 4680 100004085 NA NA
## 4681 100004086 NA NA
## 4682 100004087 NA NA
## 4683 100004088 NA NA
## 4684 100004090 NA NA
## 4685 100004091 NA NA
## 4686 100004093 NA NA
## 4687 100004095 NA NA
## 4688 100004096 NA NA
## 4689 100004097 NA NA
## 4690 100004100 NA NA
## 4691 100004101 NA NA
## 4692 100004104 NA NA
## 4693 100004105 NA NA
## 4694 100004109 NA NA
## 4695 100004110 NA NA
## 4696 100004112 NA NA
## 4697 100004113 NA NA
## 4698 100004114 NA NA
## 4699 100004115 NA NA
## 4700 100004118 NA NA
## 4701 100004120 NA NA
## 4702 100004122 NA NA
## 4703 100004123 NA NA
## 4704 100004124 NA NA
## 4705 100004125 NA NA
## 4706 100004126 NA NA
## 4707 100004128 NA NA
## 4708 100004130 NA NA
## 4709 100004131 NA NA
## 4710 100004132 NA NA
## 4711 100004133 NA NA
## 4712 100004134 NA NA
## 4713 100004137 NA NA
## 4714 100004138 NA NA
## 4715 100004139 NA NA
## 4716 100004140 NA NA
## 4717 100004141 NA NA
## 4718 100004142 NA NA
## 4719 100004143 NA NA
## 4720 100004146 NA NA
## 4721 100004148 NA NA
## 4722 100004149 NA NA
## 4723 100004151 NA NA
## 4724 100004153 NA NA
## 4725 100004154 NA NA
## 4726 100004155 NA NA
## 4727 100004156 NA NA
## 4728 100004157 NA NA
## 4729 100004162 NA NA
## 4730 100004164 NA NA
## 4731 100004168 NA NA
## 4732 100004169 NA NA
## 4733 100004170 NA NA
## 4734 100004171 NA NA
## 4735 100004172 NA NA
## 4736 100004174 NA NA
## 4737 100004176 NA NA
## 4738 100004178 NA NA
## 4739 100004179 NA NA
## 4740 100004180 NA NA
## 4741 100004181 NA NA
## 4742 100004184 NA NA
## 4743 100004186 NA NA
## 4744 100004188 NA NA
## 4745 100004189 NA NA
## 4746 100004190 NA NA
## 4747 100004192 NA NA
## 4748 100004195 NA NA
## 4749 100004197 NA NA
## 4750 100004198 NA NA
## 4751 100004199 NA NA
## 4752 100004200 NA NA
## 4753 100004201 NA NA
## 4754 100004203 NA NA
## 4755 100004205 NA NA
## 4756 100004207 NA NA
## 4757 100004208 NA NA
## 4758 100004209 NA NA
## 4759 100004211 NA NA
## 4760 100004212 NA NA
## 4761 100004213 NA NA
## 4762 100004215 NA NA
## 4763 100004217 NA NA
## 4764 100004218 NA NA
## 4765 100004221 NA NA
## 4766 100004226 NA NA
## 4767 100004227 NA NA
## 4768 100004228 NA NA
## 4769 100004231 NA NA
## 4770 100004233 NA NA
## 4771 100004234 NA NA
## 4772 100004235 NA NA
## 4773 100004237 NA NA
## 4774 100004238 NA NA
## 4775 100004239 NA NA
## 4776 100004240 NA NA
## 4777 100004241 NA NA
## 4778 100004242 NA NA
## 4779 100004243 NA NA
## 4780 100004250 NA NA
## 4781 100004251 NA NA
## 4782 100004253 NA NA
## 4783 100004255 NA NA
## 4784 100004256 NA NA
## 4785 100004257 NA NA
## 4786 100004258 NA NA
## 4787 100004259 NA NA
## 4788 100004261 NA NA
## 4789 100004262 NA NA
## 4790 100004263 NA NA
## 4791 100004266 NA NA
## 4792 100004267 NA NA
## 4793 100004268 NA NA
## 4794 100004269 NA NA
## 4795 100004270 NA NA
## 4796 100004271 NA NA
## 4797 100004272 NA NA
## 4798 100004276 NA NA
## 4799 100004278 NA NA
## 4800 100004279 NA NA
## 4801 100004280 NA NA
## 4802 100004281 NA NA
## 4803 100004283 NA NA
## 4804 100004284 NA NA
## 4805 100004286 NA NA
## 4806 100004287 NA NA
## 4807 100004288 NA NA
## 4808 100004290 NA NA
## 4809 100004292 NA NA
## 4810 100004293 NA NA
## 4811 100004294 NA NA
## 4812 100004295 NA NA
## 4813 100004299 NA NA
## 4814 100004301 NA NA
## 4815 100004303 NA NA
## 4816 100004304 NA NA
## 4817 100004305 NA NA
## 4818 100004307 NA NA
## 4819 100004308 NA NA
## 4820 100004309 NA NA
## 4821 100004310 NA NA
## 4822 100004314 NA NA
## 4823 100004315 NA NA
## 4824 100004316 NA NA
## 4825 100004319 NA NA
## 4826 100004321 NA NA
## 4827 100004322 NA NA
## 4828 100004323 NA NA
## 4829 100004324 NA NA
## 4830 100004325 NA NA
## 4831 100004326 NA NA
## 4832 100004327 NA NA
## 4833 100004328 NA NA
## 4834 100004329 NA NA
## 4835 100004331 NA NA
## 4836 100004332 NA NA
## 4837 100004333 NA NA
## 4838 100004334 NA NA
## 4839 100004335 NA NA
## 4840 100004338 NA NA
## 4841 100004339 NA NA
## 4842 100004340 NA NA
## 4843 100004341 NA NA
## 4844 100004342 NA NA
## 4845 100004345 NA NA
## 4846 100004347 NA NA
## 4847 100004349 NA NA
## 4848 100004350 NA NA
## 4849 100004351 NA NA
## 4850 100004353 NA NA
## 4851 100004354 NA NA
## 4852 100004355 NA NA
## 4853 100004357 NA NA
## 4854 100004358 NA NA
## 4855 100004359 NA NA
## 4856 100004360 NA NA
## 4857 100004362 NA NA
## 4858 100004363 NA NA
## 4859 100004365 NA NA
## 4860 100004368 NA NA
## 4861 100004369 NA NA
## 4862 100004370 NA NA
## 4863 100004371 NA NA
## 4864 100004373 NA NA
## 4865 100004375 NA NA
## 4866 100004377 NA NA
## 4867 100004378 NA NA
## 4868 100004380 NA NA
## 4869 100004382 NA NA
## 4870 100004383 NA NA
## 4871 100004385 NA NA
## 4872 100004387 NA NA
## 4873 100004392 NA NA
## 4874 100004393 NA NA
## 4875 100004395 NA NA
## 4876 100004396 NA NA
## 4877 100004397 NA NA
## 4878 100004400 NA NA
## 4879 100004402 NA NA
## 4880 100004403 NA NA
## 4881 100004404 NA NA
## 4882 100004407 NA NA
## 4883 100004408 NA NA
## 4884 100004409 NA NA
## 4885 100004410 NA NA
## 4886 100004412 NA NA
## 4887 100004413 NA NA
## 4888 100004415 NA NA
## 4889 100004416 NA NA
## 4890 100004418 NA NA
## 4891 100004421 NA NA
## 4892 100004422 NA NA
## 4893 100004423 NA NA
## 4894 100004430 NA NA
## 4895 100004431 NA NA
## 4896 100004434 NA NA
## 4897 100004435 NA NA
## 4898 100004438 NA NA
## 4899 100004439 NA NA
## 4900 100004445 NA NA
## 4901 100004447 NA NA
## 4902 100004449 NA NA
## 4903 100004451 NA NA
## 4904 100004452 NA NA
## 4905 100004453 NA NA
## 4906 100004455 NA NA
## 4907 100004456 NA NA
## 4908 100004458 NA NA
## 4909 100004459 NA NA
## 4910 100004460 NA NA
## 4911 100004464 NA NA
## 4912 100004470 NA NA
## 4913 100004471 NA NA
## 4914 100004472 NA NA
## 4915 100004476 NA NA
## 4916 100004478 NA NA
## 4917 100004480 NA NA
## 4918 100004482 NA NA
## 4919 100004483 NA NA
## 4920 100004484 NA NA
## 4921 100004485 NA NA
## 4922 100004489 NA NA
## 4923 100004490 NA NA
## 4924 100004491 NA NA
## 4925 100004492 NA NA
## 4926 100004493 NA NA
## 4927 100004494 NA NA
## 4928 100004497 NA NA
## 4929 100004499 NA NA
## 4930 100004503 NA NA
## 4931 100004505 NA NA
## 4932 100004506 NA NA
## 4933 100004507 NA NA
## 4934 100004508 NA NA
## 4935 100004514 NA NA
## 4936 100004515 NA NA
## 4937 100004523 NA NA
## 4938 100004524 NA NA
## 4939 100004525 NA NA
## 4940 100004526 NA NA
## 4941 100004527 NA NA
## 4942 100004528 NA NA
## 4943 100004530 NA NA
## 4944 100004532 NA NA
## 4945 100004533 NA NA
## 4946 100004534 NA NA
## 4947 100004535 NA NA
## 4948 100004536 NA NA
## 4949 100004540 NA NA
## 4950 100004541 NA NA
## 4951 100004543 NA NA
## 4952 100004544 NA NA
## 4953 100004545 NA NA
## 4954 100004546 NA NA
## 4955 100004548 NA NA
## 4956 100004551 NA NA
## 4957 100004553 NA NA
## 4958 100004555 NA NA
## 4959 100004557 NA NA
## 4960 100004560 NA NA
## 4961 100004565 NA NA
## 4962 100004567 NA NA
## 4963 100004570 NA NA
## 4964 100004571 NA NA
## 4965 100004572 NA NA
## 4966 100004573 NA NA
## 4967 100004574 NA NA
## 4968 100004575 NA NA
## 4969 100004577 NA NA
## 4970 100004578 NA NA
## 4971 100004584 NA NA
## 4972 100004587 NA NA
## 4973 100004588 NA NA
## 4974 100004591 NA NA
## 4975 100004592 NA NA
## 4976 100004593 NA NA
## 4977 100004594 NA NA
## 4978 100004596 NA NA
## 4979 100004597 NA NA
## 4980 100004598 NA NA
## 4981 100004602 NA NA
## 4982 100004603 NA NA
## 4983 100004604 NA NA
## 4984 100004606 NA NA
## 4985 100004607 NA NA
## 4986 100004609 NA NA
## 4987 100004610 NA NA
## 4988 100004611 NA NA
## 4989 100004613 NA NA
## 4990 100004615 NA NA
## 4991 100004616 NA NA
## 4992 100004617 NA NA
## 4993 100004620 NA NA
## 4994 100004621 NA NA
## 4995 100004622 NA NA
## 4996 100004623 NA NA
## 4997 100004626 NA NA
## 4998 100004627 NA NA
## 4999 100004630 NA NA
## 5000 100004631 NA NA
## 5001 100004632 NA NA
## 5002 100004633 NA NA
## 5003 100004636 NA NA
## 5004 100004637 NA NA
## 5005 100004639 NA NA
## 5006 100004641 NA NA
## 5007 100004643 NA NA
## 5008 100004645 NA NA
## 5009 100004646 NA NA
## 5010 100004647 NA NA
## 5011 100004648 NA NA
## 5012 100004649 NA NA
## 5013 100004650 NA NA
## 5014 100004654 NA NA
## 5015 100004656 NA NA
## 5016 100004657 NA NA
## 5017 100004658 NA NA
## 5018 100004659 NA NA
## 5019 100004660 NA NA
## 5020 100004662 NA NA
## 5021 100004663 NA NA
## 5022 100004664 NA NA
## 5023 100004665 NA NA
## 5024 100004666 NA NA
## 5025 100004670 NA NA
## 5026 100004673 NA NA
## 5027 100004674 NA NA
## 5028 100004675 NA NA
## 5029 100004676 NA NA
## 5030 100004677 NA NA
## 5031 100004678 NA NA
## 5032 100004680 NA NA
## 5033 100004681 NA NA
## 5034 100004682 NA NA
## 5035 100004683 NA NA
## 5036 100004690 NA NA
## 5037 100004693 NA NA
## 5038 100004695 NA NA
## 5039 100004696 NA NA
## 5040 100004697 NA NA
## 5041 100004699 NA NA
## 5042 100004704 NA NA
## 5043 100004705 NA NA
## 5044 100004706 NA NA
## 5045 100004707 NA NA
## 5046 100004708 NA NA
## 5047 100004709 NA NA
## 5048 100004711 NA NA
## 5049 100004712 NA NA
## 5050 100004716 NA NA
## 5051 100004717 NA NA
## 5052 100004718 NA NA
## 5053 100004719 NA NA
## 5054 100004720 NA NA
## 5055 100004721 NA NA
## 5056 100004722 NA NA
## 5057 100004723 NA NA
## 5058 100004724 NA NA
## 5059 100004725 NA NA
## 5060 100004726 NA NA
## 5061 100004727 NA NA
## 5062 100004728 NA NA
## 5063 100004730 NA NA
## 5064 100004732 NA NA
## 5065 100004733 NA NA
## 5066 100004734 NA NA
## 5067 100004735 NA NA
## 5068 100004737 NA NA
## 5069 100004740 NA NA
## 5070 100004741 NA NA
## 5071 100004743 NA NA
## 5072 100004744 NA NA
## 5073 100004745 NA NA
## 5074 100004746 NA NA
## 5075 100004747 NA NA
## 5076 100004748 NA NA
## 5077 100004750 NA NA
## 5078 100004752 NA NA
## 5079 100004755 NA NA
## 5080 100004756 NA NA
## 5081 100004757 NA NA
## 5082 100004758 NA NA
## 5083 100004759 NA NA
## 5084 100004760 NA NA
## 5085 100004761 NA NA
## 5086 100004762 NA NA
## 5087 100004764 NA NA
## 5088 100004765 NA NA
## 5089 100004766 NA NA
## 5090 100004767 NA NA
## 5091 100004768 NA NA
## 5092 100004770 NA NA
## 5093 100004772 NA NA
## 5094 100004774 NA NA
## 5095 100004775 NA NA
## 5096 100004777 NA NA
## 5097 100004778 NA NA
## 5098 100004779 NA NA
## 5099 100004782 NA NA
## 5100 100004783 NA NA
## 5101 100004784 NA NA
## 5102 100004790 NA NA
## 5103 100004791 NA NA
## 5104 100004792 NA NA
## 5105 100004796 NA NA
## 5106 100004798 NA NA
## 5107 100004799 NA NA
## 5108 100004800 NA NA
## 5109 100004802 NA NA
## 5110 100004804 NA NA
## 5111 100004805 NA NA
## 5112 100004806 NA NA
## 5113 100004807 NA NA
## 5114 100004808 NA NA
## 5115 100004812 NA NA
## 5116 100004813 NA NA
## 5117 100004814 NA NA
## 5118 100004815 NA NA
## 5119 100004816 NA NA
## 5120 100004818 NA NA
## 5121 100004819 NA NA
## 5122 100004822 NA NA
## 5123 100004823 NA NA
## 5124 100004825 NA NA
## 5125 100004826 NA NA
## 5126 100004827 NA NA
## 5127 100004829 NA NA
## 5128 100004830 NA NA
## 5129 100004831 NA NA
## 5130 100004833 NA NA
## 5131 100004835 NA NA
## 5132 100004836 NA NA
## 5133 100004838 NA NA
## 5134 100004839 NA NA
## 5135 100004840 NA NA
## 5136 100004841 NA NA
## 5137 100004842 NA NA
## 5138 100004845 NA NA
## 5139 100004847 NA NA
## 5140 100004849 NA NA
## 5141 100004851 NA NA
## 5142 100004853 NA NA
## 5143 100004855 NA NA
## 5144 100004858 NA NA
## 5145 100004859 NA NA
## 5146 100004860 NA NA
## 5147 100004861 NA NA
## 5148 100004862 NA NA
## 5149 100004863 NA NA
## 5150 100004864 NA NA
## 5151 100004865 NA NA
## 5152 100004866 NA NA
## 5153 100004868 NA NA
## 5154 100004869 NA NA
## 5155 100004870 NA NA
## 5156 100004874 NA NA
## 5157 100004876 NA NA
## 5158 100004877 NA NA
## 5159 100004878 NA NA
## 5160 100004880 NA NA
## 5161 100004881 NA NA
## 5162 100004882 NA NA
## 5163 100004883 NA NA
## 5164 100004884 NA NA
## 5165 100004885 NA NA
## 5166 100004887 NA NA
## 5167 100004888 NA NA
## 5168 100004890 NA NA
## 5169 100004891 NA NA
## 5170 100004892 NA NA
## 5171 100004893 NA NA
## 5172 100004894 NA NA
## 5173 100004895 NA NA
## 5174 100004898 NA NA
## 5175 100004899 NA NA
## 5176 100004900 NA NA
## 5177 100004902 NA NA
## 5178 100004903 NA NA
## 5179 100004906 NA NA
## 5180 100004907 NA NA
## 5181 100004908 NA NA
## 5182 100004913 NA NA
## 5183 100004914 NA NA
## 5184 100004916 NA NA
## 5185 100004921 NA NA
## 5186 100004922 NA NA
## 5187 100004927 NA NA
## 5188 100004928 NA NA
## 5189 100004930 NA NA
## 5190 100004931 NA NA
## 5191 100004934 NA NA
## 5192 100004935 NA NA
## 5193 100004936 NA NA
## 5194 100004938 NA NA
## 5195 100004940 NA NA
## 5196 100004941 NA NA
## 5197 100004942 NA NA
## 5198 100004943 NA NA
## 5199 100004945 NA NA
## 5200 100004948 NA NA
## 5201 100004949 NA NA
## 5202 100004952 NA NA
## 5203 100004953 NA NA
## 5204 100004954 NA NA
## 5205 100004957 NA NA
## 5206 100004958 NA NA
## 5207 100004961 NA NA
## 5208 100004963 NA NA
## 5209 100004964 NA NA
## 5210 100004966 NA NA
## 5211 100004967 NA NA
## 5212 100004968 NA NA
## 5213 100004969 NA NA
## 5214 100004970 NA NA
## 5215 100004971 NA NA
## 5216 100004972 NA NA
## 5217 100004973 NA NA
## 5218 100004974 NA NA
## 5219 100004975 NA NA
## 5220 100004977 NA NA
## 5221 100004978 NA NA
## 5222 100004979 NA NA
## 5223 100004981 NA NA
## 5224 100004984 NA NA
## 5225 100004985 NA NA
## 5226 100004986 NA NA
## 5227 100004988 NA NA
## 5228 100004989 NA NA
## 5229 100004990 NA NA
## 5230 100004991 NA NA
## 5231 100004994 NA NA
## 5232 100004995 NA NA
## 5233 100004997 NA NA
## 5234 100004999 NA NA
## 5235 100005001 NA NA
## 5236 100005003 NA NA
## 5237 100005005 NA NA
## 5238 100005008 NA NA
## 5239 100005009 NA NA
## 5240 100005010 NA NA
## 5241 100005011 NA NA
## 5242 100005012 NA NA
## 5243 100005013 NA NA
## 5244 100005015 NA NA
## 5245 100005016 NA NA
## 5246 100005018 NA NA
## 5247 100005019 NA NA
## 5248 100005020 NA NA
## 5249 100005021 NA NA
## 5250 100005022 NA NA
## 5251 100005023 NA NA
## 5252 100005024 NA NA
## 5253 100005025 NA NA
## 5254 100005026 NA NA
## 5255 100005027 NA NA
## 5256 100005030 NA NA
## 5257 100005032 NA NA
## 5258 100005033 NA NA
## 5259 100005034 NA NA
## 5260 100005036 NA NA
## 5261 100005037 NA NA
## 5262 100005042 NA NA
## 5263 100005044 NA NA
## 5264 100005046 NA NA
## 5265 100005048 NA NA
## 5266 100005052 NA NA
## 5267 100005053 NA NA
## 5268 100005054 NA NA
## 5269 100005055 NA NA
## 5270 100005056 NA NA
## 5271 100005058 NA NA
## 5272 100005059 NA NA
## 5273 100005060 NA NA
## 5274 100005061 NA NA
## 5275 100005062 NA NA
## 5276 100005065 NA NA
## 5277 100005066 NA NA
## 5278 100005067 NA NA
## 5279 100005068 NA NA
## 5280 100005069 NA NA
## 5281 100005070 NA NA
## 5282 100005071 NA NA
## 5283 100005074 NA NA
## 5284 100005075 NA NA
## 5285 100005076 NA NA
## 5286 100005077 NA NA
## 5287 100005078 NA NA
## 5288 100005080 NA NA
## 5289 100005081 NA NA
## 5290 100005083 NA NA
## 5291 100005084 NA NA
## 5292 100005087 NA NA
## 5293 100005088 NA NA
## 5294 100005091 NA NA
## 5295 100005092 NA NA
## 5296 100005093 NA NA
## 5297 100005094 NA NA
## 5298 100005095 NA NA
## 5299 100005099 NA NA
## 5300 100005100 NA NA
## 5301 100005101 NA NA
## 5302 100005102 NA NA
## 5303 100005103 NA NA
## 5304 100005105 NA NA
## 5305 100005106 NA NA
## 5306 100005108 NA NA
## 5307 100005111 NA NA
## 5308 100005114 NA NA
## 5309 100005116 NA NA
## 5310 100005117 NA NA
## 5311 100005120 NA NA
## 5312 100005121 NA NA
## 5313 100005122 NA NA
## 5314 100005124 NA NA
## 5315 100005126 NA NA
## 5316 100005127 NA NA
## 5317 100005128 NA NA
## 5318 100005129 NA NA
## 5319 100005130 NA NA
## 5320 100005131 NA NA
## 5321 100005132 NA NA
## 5322 100005133 NA NA
## 5323 100005135 NA NA
## 5324 100005136 NA NA
## 5325 100005138 NA NA
## 5326 100005139 NA NA
## 5327 100005141 NA NA
## 5328 100005143 NA NA
## 5329 100005145 NA NA
## 5330 100005146 NA NA
## 5331 100005148 NA NA
## 5332 100005149 NA NA
## 5333 100005150 NA NA
## 5334 100005151 NA NA
## 5335 100005154 NA NA
## 5336 100005155 NA NA
## 5337 100005159 NA NA
## 5338 100005162 NA NA
## 5339 100005163 NA NA
## 5340 100005164 NA NA
## 5341 100005165 NA NA
## 5342 100005173 NA NA
## 5343 100005174 NA NA
## 5344 100005176 NA NA
## 5345 100005178 NA NA
## 5346 100005180 NA NA
## 5347 100005184 NA NA
## 5348 100005185 NA NA
## 5349 100005186 NA NA
## 5350 100005188 NA NA
## 5351 100005191 NA NA
## 5352 100005192 NA NA
## 5353 100005194 NA NA
## 5354 100005195 NA NA
## 5355 100005196 NA NA
## 5356 100005197 NA NA
## 5357 100005198 NA NA
## 5358 100005199 NA NA
## 5359 100005200 NA NA
## 5360 100005201 NA NA
## 5361 100005202 NA NA
## 5362 100005207 NA NA
## 5363 100005208 NA NA
## 5364 100005211 NA NA
## 5365 100005214 NA NA
## 5366 100005215 NA NA
## 5367 100005216 NA NA
## 5368 100005218 NA NA
## 5369 100005220 NA NA
## 5370 100005221 NA NA
## 5371 100005222 NA NA
## 5372 100005224 NA NA
## 5373 100005225 NA NA
## 5374 100005229 NA NA
## 5375 100005232 NA NA
## 5376 100005234 NA NA
## 5377 100005236 NA NA
## 5378 100005239 NA NA
## 5379 100005241 NA NA
## 5380 100005242 NA NA
## 5381 100005243 NA NA
## 5382 100005248 NA NA
## 5383 100005249 NA NA
## 5384 100005251 NA NA
## 5385 100005252 NA NA
## 5386 100005254 NA NA
## 5387 100005255 NA NA
## 5388 100005256 NA NA
## 5389 100005257 NA NA
## 5390 100005259 NA NA
## 5391 100005260 NA NA
## 5392 100005261 NA NA
## 5393 100005262 NA NA
## 5394 100005263 NA NA
## 5395 100005264 NA NA
## 5396 100005266 NA NA
## 5397 100005268 NA NA
## 5398 100005269 NA NA
## 5399 100005270 NA NA
## 5400 100005272 NA NA
## 5401 100005273 NA NA
## 5402 100005276 NA NA
## 5403 100005277 NA NA
## 5404 100005278 NA NA
## 5405 100005280 NA NA
## 5406 100005281 NA NA
## 5407 100005285 NA NA
## 5408 100005286 NA NA
## 5409 100005287 NA NA
## 5410 100005288 NA NA
## 5411 100005291 NA NA
## 5412 100005292 NA NA
## 5413 100005293 NA NA
## 5414 100005296 NA NA
## 5415 100005298 NA NA
## 5416 100005299 NA NA
## 5417 100005300 NA NA
## 5418 100005301 NA NA
## 5419 100005302 NA NA
## 5420 100005303 NA NA
## 5421 100005304 NA NA
## 5422 100005305 NA NA
## 5423 100005306 NA NA
## 5424 100005309 NA NA
## 5425 100005310 NA NA
## 5426 100005312 NA NA
## 5427 100005315 NA NA
## 5428 100005317 NA NA
## 5429 100005318 NA NA
## 5430 100005319 NA NA
## 5431 100005321 NA NA
## 5432 100005322 NA NA
## 5433 100005323 NA NA
## 5434 100005326 NA NA
## 5435 100005327 NA NA
## 5436 100005328 NA NA
## 5437 100005329 NA NA
## 5438 100005330 NA NA
## 5439 100005331 NA NA
## 5440 100005332 NA NA
## 5441 100005333 NA NA
## 5442 100005335 NA NA
## 5443 100005336 NA NA
## 5444 100005339 NA NA
## 5445 100005340 NA NA
## 5446 100005341 NA NA
## 5447 100005342 NA NA
## 5448 100005345 NA NA
## 5449 100005346 NA NA
## 5450 100005347 NA NA
## 5451 100005349 NA NA
## 5452 100005350 NA NA
## 5453 100005351 NA NA
## 5454 100005354 NA NA
## 5455 100005355 NA NA
## 5456 100005356 NA NA
## 5457 100005359 NA NA
## 5458 100005360 NA NA
## 5459 100005362 NA NA
## 5460 100005364 NA NA
## 5461 100005365 NA NA
## 5462 100005366 NA NA
## 5463 100005367 NA NA
## 5464 100005368 NA NA
## 5465 100005369 NA NA
## 5466 100005370 NA NA
## 5467 100005371 NA NA
## 5468 100005372 NA NA
## 5469 100005373 NA NA
## 5470 100005374 NA NA
## 5471 100005375 NA NA
## 5472 100005378 NA NA
## 5473 100005379 NA NA
## 5474 100005381 NA NA
## 5475 100005382 NA NA
## 5476 100005383 NA NA
## 5477 100005386 NA NA
## 5478 100005388 NA NA
## 5479 100005390 NA NA
## 5480 100005391 NA NA
## 5481 100005392 NA NA
## 5482 100005393 NA NA
## 5483 100005397 NA NA
## 5484 100005399 NA NA
## 5485 100005402 NA NA
## 5486 100005404 NA NA
## 5487 100005409 NA NA
## 5488 100005411 NA NA
## 5489 100005412 NA NA
## 5490 100005414 NA NA
## 5491 100005415 NA NA
## 5492 100005417 NA NA
## 5493 100005421 NA NA
## 5494 100005422 NA NA
## 5495 100005424 NA NA
## 5496 100005429 NA NA
## 5497 100005430 NA NA
## 5498 100005431 NA NA
## 5499 100005432 NA NA
## 5500 100005433 NA NA
## 5501 100005434 NA NA
## 5502 100005435 NA NA
## 5503 100005437 NA NA
## 5504 100005438 NA NA
## 5505 100005439 NA NA
## 5506 100005440 NA NA
## 5507 100005441 NA NA
## 5508 100005442 NA NA
## 5509 100005444 NA NA
## 5510 100005445 NA NA
## 5511 100005447 NA NA
## 5512 100005449 NA NA
## 5513 100005453 NA NA
## 5514 100005454 NA NA
## 5515 100005458 NA NA
## 5516 100005461 NA NA
## 5517 100005462 NA NA
## 5518 100005463 NA NA
## 5519 100005465 NA NA
## 5520 100005466 NA NA
## 5521 100005467 NA NA
## 5522 100005468 NA NA
## 5523 100005469 NA NA
## 5524 100005471 NA NA
## 5525 100005473 NA NA
## 5526 100005476 NA NA
## 5527 100005477 NA NA
## 5528 100005479 NA NA
## 5529 100005483 NA NA
## 5530 100005484 NA NA
## 5531 100005485 NA NA
## 5532 100005487 NA NA
## 5533 100005488 NA NA
## 5534 100005490 NA NA
## 5535 100005491 NA NA
## 5536 100005493 NA NA
## 5537 100005495 NA NA
## 5538 100005497 NA NA
## 5539 100005498 NA NA
## 5540 100005499 NA NA
## 5541 100005504 NA NA
## 5542 100005505 NA NA
## 5543 100005506 NA NA
## 5544 100005508 NA NA
## 5545 100005509 NA NA
## 5546 100005510 NA NA
## 5547 100005512 NA NA
## 5548 100005513 NA NA
## 5549 100005515 NA NA
## 5550 100005517 NA NA
## 5551 100005518 NA NA
## 5552 100005522 NA NA
## 5553 100005523 NA NA
## 5554 100005524 NA NA
## 5555 100005525 NA NA
## 5556 100005526 NA NA
## 5557 100005529 NA NA
## 5558 100005530 NA NA
## 5559 100005531 NA NA
## 5560 100005532 NA NA
## 5561 100005533 NA NA
## 5562 100005534 NA NA
## 5563 100005538 NA NA
## 5564 100005541 NA NA
## 5565 100005542 NA NA
## 5566 100005543 NA NA
## 5567 100005545 NA NA
## 5568 100005546 NA NA
## 5569 100005549 NA NA
## 5570 100005550 NA NA
## 5571 100005551 NA NA
## 5572 100005554 NA NA
## 5573 100005556 NA NA
## 5574 100005559 NA NA
## 5575 100005561 NA NA
## 5576 100005563 NA NA
## 5577 100005564 NA NA
## 5578 100005565 NA NA
## 5579 100005568 NA NA
## 5580 100005573 NA NA
## 5581 100005574 NA NA
## 5582 100005575 NA NA
## 5583 100005576 NA NA
## 5584 100005577 NA NA
## 5585 100005578 NA NA
## 5586 100005579 NA NA
## 5587 100005580 NA NA
## 5588 100005581 NA NA
## 5589 100005582 NA NA
## 5590 100005583 NA NA
## 5591 100005584 NA NA
## 5592 100005585 NA NA
## 5593 100005586 NA NA
## 5594 100005587 NA NA
## 5595 100005588 NA NA
## 5596 100005589 NA NA
## 5597 100005595 NA NA
## 5598 100005596 NA NA
## 5599 100005598 NA NA
## 5600 100005600 NA NA
The dataset also contains variables for all sampled units (i.e. respondents and non-respondents). These give information about the events that occurred during the data collection process. We will use these variables as covariates during the computation of Non-response weights in step two.
data[vars.paradata]
## idno typesamp interva
## 1 100000003 Address Complete and valid interview related to CF
## 2 100000005 Address Complete and valid interview related to CF
## 3 100000008 Address Complete and valid interview related to CF
## 4 100000009 Address Complete and valid interview related to CF
## 5 100000010 Address Complete and valid interview related to CF
## 6 100000012 Address Complete and valid interview related to CF
## 7 100000015 Address Complete and valid interview related to CF
## 8 100000016 Address Complete and valid interview related to CF
## 9 100000017 Address Complete and valid interview related to CF
## 10 100000020 Address Complete and valid interview related to CF
## 11 100000022 Address Complete and valid interview related to CF
## 12 100000023 Address Complete and valid interview related to CF
## 13 100000025 Address Complete and valid interview related to CF
## 14 100000030 Address Complete and valid interview related to CF
## 15 100000031 Address Complete and valid interview related to CF
## 16 100000033 Address Complete and valid interview related to CF
## 17 100000034 Address Complete and valid interview related to CF
## 18 100000036 Address Complete and valid interview related to CF
## 19 100000037 Address Complete and valid interview related to CF
## 20 100000041 Address Complete and valid interview related to CF
## 21 100000043 Address Complete and valid interview related to CF
## 22 100000046 Address Complete and valid interview related to CF
## 23 100000047 Address Complete and valid interview related to CF
## 24 100000048 Address Complete and valid interview related to CF
## 25 100000050 Address Complete and valid interview related to CF
## 26 100000052 Address Complete and valid interview related to CF
## 27 100000053 Address Complete and valid interview related to CF
## 28 100000054 Address Complete and valid interview related to CF
## 29 100000055 Address Complete and valid interview related to CF
## 30 100000057 Address Complete and valid interview related to CF
## 31 100000062 Address Complete and valid interview related to CF
## 32 100000063 Address Complete and valid interview related to CF
## 33 100000067 Address Complete and valid interview related to CF
## 34 100000070 Address Complete and valid interview related to CF
## 35 100000071 Address Complete and valid interview related to CF
## 36 100000073 Address Complete and valid interview related to CF
## 37 100000075 Address Complete and valid interview related to CF
## 38 100000076 Address Complete and valid interview related to CF
## 39 100000077 Address Complete and valid interview related to CF
## 40 100000080 Address Complete and valid interview related to CF
## 41 100000084 Address Complete and valid interview related to CF
## 42 100000085 Address Complete and valid interview related to CF
## 43 100000086 Address Complete and valid interview related to CF
## 44 100000088 Address Complete and valid interview related to CF
## 45 100000089 Address Complete and valid interview related to CF
## 46 100000091 Address Complete and valid interview related to CF
## 47 100000095 Address Complete and valid interview related to CF
## 48 100000096 Address Complete and valid interview related to CF
## 49 100000103 Address Complete and valid interview related to CF
## 50 100000104 Address Complete and valid interview related to CF
## 51 100000107 Address Complete and valid interview related to CF
## 52 100000108 Address Complete and valid interview related to CF
## 53 100000109 Address Complete and valid interview related to CF
## 54 100000110 Address Complete and valid interview related to CF
## 55 100000111 Address Complete and valid interview related to CF
## 56 100000113 Address Complete and valid interview related to CF
## 57 100000115 Address Complete and valid interview related to CF
## 58 100000121 Address Complete and valid interview related to CF
## 59 100000122 Address Complete and valid interview related to CF
## 60 100000123 Address Complete and valid interview related to CF
## 61 100000124 Address Complete and valid interview related to CF
## 62 100000126 Address Complete and valid interview related to CF
## 63 100000127 Address Complete and valid interview related to CF
## 64 100000139 Address Complete and valid interview related to CF
## 65 100000141 Address Complete and valid interview related to CF
## 66 100000143 Address Complete and valid interview related to CF
## 67 100000145 Address Complete and valid interview related to CF
## 68 100000147 Address Complete and valid interview related to CF
## 69 100000148 Address Complete and valid interview related to CF
## 70 100000152 Address Complete and valid interview related to CF
## 71 100000153 Address Complete and valid interview related to CF
## 72 100000156 Address Complete and valid interview related to CF
## 73 100000157 Address Complete and valid interview related to CF
## 74 100000158 Address Complete and valid interview related to CF
## 75 100000159 Address Complete and valid interview related to CF
## 76 100000167 Address Complete and valid interview related to CF
## 77 100000168 Address Complete and valid interview related to CF
## 78 100000170 Address Complete and valid interview related to CF
## 79 100000171 Address Complete and valid interview related to CF
## 80 100000174 Address Complete and valid interview related to CF
## 81 100000175 Address Complete and valid interview related to CF
## 82 100000176 Address Complete and valid interview related to CF
## 83 100000180 Address Complete and valid interview related to CF
## 84 100000181 Address Complete and valid interview related to CF
## 85 100000182 Address Complete and valid interview related to CF
## 86 100000183 Address Complete and valid interview related to CF
## 87 100000184 Address Complete and valid interview related to CF
## 88 100000185 Address Complete and valid interview related to CF
## 89 100000186 Address Complete and valid interview related to CF
## 90 100000189 Address Complete and valid interview related to CF
## 91 100000193 Address Complete and valid interview related to CF
## 92 100000197 Address Complete and valid interview related to CF
## 93 100000205 Address Complete and valid interview related to CF
## 94 100000207 Address Complete and valid interview related to CF
## 95 100000208 Address Complete and valid interview related to CF
## 96 100000211 Address Complete and valid interview related to CF
## 97 100000212 Address Complete and valid interview related to CF
## 98 100000213 Address Complete and valid interview related to CF
## 99 100000219 Address Complete and valid interview related to CF
## 100 100000221 Address Complete and valid interview related to CF
## 101 100000224 Address Complete and valid interview related to CF
## 102 100000225 Address Complete and valid interview related to CF
## 103 100000227 Address Complete and valid interview related to CF
## 104 100000229 Address Complete and valid interview related to CF
## 105 100000231 Address Complete and valid interview related to CF
## 106 100000235 Address Complete and valid interview related to CF
## 107 100000240 Address Complete and valid interview related to CF
## 108 100000248 Address Complete and valid interview related to CF
## 109 100000250 Address Complete and valid interview related to CF
## 110 100000251 Address Complete and valid interview related to CF
## 111 100000253 Address Complete and valid interview related to CF
## 112 100000256 Address Complete and valid interview related to CF
## 113 100000261 Address Complete and valid interview related to CF
## 114 100000263 Address Complete and valid interview related to CF
## 115 100000264 Address Complete and valid interview related to CF
## 116 100000265 Address Complete and valid interview related to CF
## 117 100000266 Address Complete and valid interview related to CF
## 118 100000267 Address Complete and valid interview related to CF
## 119 100000268 Address Complete and valid interview related to CF
## 120 100000269 Address Complete and valid interview related to CF
## 121 100000270 Address Complete and valid interview related to CF
## 122 100000271 Address Complete and valid interview related to CF
## 123 100000272 Address Complete and valid interview related to CF
## 124 100000275 Address Complete and valid interview related to CF
## 125 100000276 Address Complete and valid interview related to CF
## 126 100000279 Address Complete and valid interview related to CF
## 127 100000281 Address Complete and valid interview related to CF
## 128 100000283 Address Complete and valid interview related to CF
## 129 100000284 Address Complete and valid interview related to CF
## 130 100000285 Address Complete and valid interview related to CF
## 131 100000288 Address Complete and valid interview related to CF
## 132 100000289 Address Complete and valid interview related to CF
## 133 100000290 Address Complete and valid interview related to CF
## 134 100000298 Address Complete and valid interview related to CF
## 135 100000300 Address Complete and valid interview related to CF
## 136 100000302 Address Complete and valid interview related to CF
## 137 100000303 Address Complete and valid interview related to CF
## 138 100000304 Address Complete and valid interview related to CF
## 139 100000305 Address Complete and valid interview related to CF
## 140 100000306 Address Complete and valid interview related to CF
## 141 100000313 Address Complete and valid interview related to CF
## 142 100000314 Address Complete and valid interview related to CF
## 143 100000321 Address Complete and valid interview related to CF
## 144 100000322 Address Complete and valid interview related to CF
## 145 100000326 Address Complete and valid interview related to CF
## 146 100000329 Address Complete and valid interview related to CF
## 147 100000331 Address Complete and valid interview related to CF
## 148 100000333 Address Complete and valid interview related to CF
## 149 100000334 Address Complete and valid interview related to CF
## 150 100000335 Address Complete and valid interview related to CF
## 151 100000341 Address Complete and valid interview related to CF
## 152 100000344 Address Complete and valid interview related to CF
## 153 100000348 Address Complete and valid interview related to CF
## 154 100000350 Address Complete and valid interview related to CF
## 155 100000352 Address Complete and valid interview related to CF
## 156 100000357 Address Complete and valid interview related to CF
## 157 100000358 Address Complete and valid interview related to CF
## 158 100000359 Address Complete and valid interview related to CF
## 159 100000360 Address Complete and valid interview related to CF
## 160 100000365 Address Complete and valid interview related to CF
## 161 100000371 Address Complete and valid interview related to CF
## 162 100000374 Address Complete and valid interview related to CF
## 163 100000375 Address Complete and valid interview related to CF
## 164 100000376 Address Complete and valid interview related to CF
## 165 100000379 Address Complete and valid interview related to CF
## 166 100000386 Address Complete and valid interview related to CF
## 167 100000387 Address Complete and valid interview related to CF
## 168 100000389 Address Complete and valid interview related to CF
## 169 100000390 Address Complete and valid interview related to CF
## 170 100000392 Address Complete and valid interview related to CF
## 171 100000393 Address Complete and valid interview related to CF
## 172 100000395 Address Complete and valid interview related to CF
## 173 100000396 Address Complete and valid interview related to CF
## 174 100000398 Address Complete and valid interview related to CF
## 175 100000400 Address Complete and valid interview related to CF
## 176 100000401 Address Complete and valid interview related to CF
## 177 100000403 Address Complete and valid interview related to CF
## 178 100000405 Address Complete and valid interview related to CF
## 179 100000408 Address Complete and valid interview related to CF
## 180 100000411 Address Complete and valid interview related to CF
## 181 100000412 Address Complete and valid interview related to CF
## 182 100000415 Address Complete and valid interview related to CF
## 183 100000417 Address Complete and valid interview related to CF
## 184 100000418 Address Complete and valid interview related to CF
## 185 100000420 Address Complete and valid interview related to CF
## 186 100000421 Address Complete and valid interview related to CF
## 187 100000422 Address Complete and valid interview related to CF
## 188 100000423 Address Complete and valid interview related to CF
## 189 100000425 Address Complete and valid interview related to CF
## 190 100000427 Address Complete and valid interview related to CF
## 191 100000430 Address Complete and valid interview related to CF
## 192 100000431 Address Complete and valid interview related to CF
## 193 100000435 Address Complete and valid interview related to CF
## 194 100000439 Address Complete and valid interview related to CF
## 195 100000441 Address Complete and valid interview related to CF
## 196 100000449 Address Complete and valid interview related to CF
## 197 100000450 Address Complete and valid interview related to CF
## 198 100000451 Address Complete and valid interview related to CF
## 199 100000452 Address Complete and valid interview related to CF
## 200 100000453 Address Complete and valid interview related to CF
## 201 100000454 Address Complete and valid interview related to CF
## 202 100000456 Address Complete and valid interview related to CF
## 203 100000457 Address Complete and valid interview related to CF
## 204 100000462 Address Complete and valid interview related to CF
## 205 100000463 Address Complete and valid interview related to CF
## 206 100000464 Address Complete and valid interview related to CF
## 207 100000465 Address Complete and valid interview related to CF
## 208 100000467 Address Complete and valid interview related to CF
## 209 100000468 Address Complete and valid interview related to CF
## 210 100000470 Address Complete and valid interview related to CF
## 211 100000471 Address Complete and valid interview related to CF
## 212 100000474 Address Complete and valid interview related to CF
## 213 100000475 Address Complete and valid interview related to CF
## 214 100000477 Address Complete and valid interview related to CF
## 215 100000478 Address Complete and valid interview related to CF
## 216 100000479 Address Complete and valid interview related to CF
## 217 100000480 Address Complete and valid interview related to CF
## 218 100000481 Address Complete and valid interview related to CF
## 219 100000482 Address Complete and valid interview related to CF
## 220 100000485 Address Complete and valid interview related to CF
## 221 100000490 Address Complete and valid interview related to CF
## 222 100000491 Address Complete and valid interview related to CF
## 223 100000494 Address Complete and valid interview related to CF
## 224 100000495 Address Complete and valid interview related to CF
## 225 100000500 Address Complete and valid interview related to CF
## 226 100000501 Address Complete and valid interview related to CF
## 227 100000502 Address Complete and valid interview related to CF
## 228 100000503 Address Complete and valid interview related to CF
## 229 100000511 Address Complete and valid interview related to CF
## 230 100000512 Address Complete and valid interview related to CF
## 231 100000514 Address Complete and valid interview related to CF
## 232 100000515 Address Complete and valid interview related to CF
## 233 100000516 Address Complete and valid interview related to CF
## 234 100000517 Address Complete and valid interview related to CF
## 235 100000518 Address Complete and valid interview related to CF
## 236 100000521 Address Complete and valid interview related to CF
## 237 100000523 Address Complete and valid interview related to CF
## 238 100000524 Address Complete and valid interview related to CF
## 239 100000528 Address Complete and valid interview related to CF
## 240 100000529 Address Complete and valid interview related to CF
## 241 100000531 Address Complete and valid interview related to CF
## 242 100000532 Address Complete and valid interview related to CF
## 243 100000535 Address Complete and valid interview related to CF
## 244 100000538 Address Complete and valid interview related to CF
## 245 100000539 Address Complete and valid interview related to CF
## 246 100000541 Address Complete and valid interview related to CF
## 247 100000544 Address Complete and valid interview related to CF
## 248 100000545 Address Complete and valid interview related to CF
## 249 100000548 Address Complete and valid interview related to CF
## 250 100000550 Address Complete and valid interview related to CF
## 251 100000554 Address Complete and valid interview related to CF
## 252 100000556 Address Complete and valid interview related to CF
## 253 100000558 Address Complete and valid interview related to CF
## 254 100000559 Address Complete and valid interview related to CF
## 255 100000560 Address Complete and valid interview related to CF
## 256 100000561 Address Complete and valid interview related to CF
## 257 100000562 Address Complete and valid interview related to CF
## 258 100000564 Address Complete and valid interview related to CF
## 259 100000565 Address Complete and valid interview related to CF
## 260 100000567 Address Complete and valid interview related to CF
## 261 100000570 Address Complete and valid interview related to CF
## 262 100000574 Address Complete and valid interview related to CF
## 263 100000575 Address Complete and valid interview related to CF
## 264 100000576 Address Complete and valid interview related to CF
## 265 100000577 Address Complete and valid interview related to CF
## 266 100000580 Address Complete and valid interview related to CF
## 267 100000581 Address Complete and valid interview related to CF
## 268 100000583 Address Complete and valid interview related to CF
## 269 100000584 Address Complete and valid interview related to CF
## 270 100000586 Address Complete and valid interview related to CF
## 271 100000589 Address Complete and valid interview related to CF
## 272 100000590 Address Complete and valid interview related to CF
## 273 100000591 Address Complete and valid interview related to CF
## 274 100000593 Address Complete and valid interview related to CF
## 275 100000594 Address Complete and valid interview related to CF
## 276 100000595 Address Complete and valid interview related to CF
## 277 100000596 Address Complete and valid interview related to CF
## 278 100000599 Address Complete and valid interview related to CF
## 279 100000600 Address Complete and valid interview related to CF
## 280 100000602 Address Complete and valid interview related to CF
## 281 100000607 Address Complete and valid interview related to CF
## 282 100000608 Address Complete and valid interview related to CF
## 283 100000609 Address Complete and valid interview related to CF
## 284 100000613 Address Complete and valid interview related to CF
## 285 100000615 Address Complete and valid interview related to CF
## 286 100000617 Address Complete and valid interview related to CF
## 287 100000621 Address Complete and valid interview related to CF
## 288 100000622 Address Complete and valid interview related to CF
## 289 100000623 Address Complete and valid interview related to CF
## 290 100000626 Address Complete and valid interview related to CF
## 291 100000632 Address Complete and valid interview related to CF
## 292 100000634 Address Complete and valid interview related to CF
## 293 100000635 Address Complete and valid interview related to CF
## 294 100000637 Address Complete and valid interview related to CF
## 295 100000638 Address Complete and valid interview related to CF
## 296 100000639 Address Complete and valid interview related to CF
## 297 100000641 Address Complete and valid interview related to CF
## 298 100000642 Address Complete and valid interview related to CF
## 299 100000645 Address Complete and valid interview related to CF
## 300 100000646 Address Complete and valid interview related to CF
## 301 100000648 Address Complete and valid interview related to CF
## 302 100000650 Address Complete and valid interview related to CF
## 303 100000652 Address Complete and valid interview related to CF
## 304 100000655 Address Complete and valid interview related to CF
## 305 100000658 Address Complete and valid interview related to CF
## 306 100000662 Address Complete and valid interview related to CF
## 307 100000663 Address Complete and valid interview related to CF
## 308 100000664 Address Complete and valid interview related to CF
## 309 100000666 Address Complete and valid interview related to CF
## 310 100000671 Address Complete and valid interview related to CF
## 311 100000674 Address Complete and valid interview related to CF
## 312 100000677 Address Complete and valid interview related to CF
## 313 100000678 Address Complete and valid interview related to CF
## 314 100000680 Address Complete and valid interview related to CF
## 315 100000681 Address Complete and valid interview related to CF
## 316 100000688 Address Complete and valid interview related to CF
## 317 100000692 Address Complete and valid interview related to CF
## 318 100000693 Address Complete and valid interview related to CF
## 319 100000698 Address Complete and valid interview related to CF
## 320 100000701 Address Complete and valid interview related to CF
## 321 100000708 Address Complete and valid interview related to CF
## 322 100000720 Address Complete and valid interview related to CF
## 323 100000727 Address Complete and valid interview related to CF
## 324 100000728 Address Complete and valid interview related to CF
## 325 100000730 Address Complete and valid interview related to CF
## 326 100000735 Address Complete and valid interview related to CF
## 327 100000736 Address Complete and valid interview related to CF
## 328 100000739 Address Complete and valid interview related to CF
## 329 100000744 Address Complete and valid interview related to CF
## 330 100000745 Address Complete and valid interview related to CF
## 331 100000747 Address Complete and valid interview related to CF
## 332 100000750 Address Complete and valid interview related to CF
## 333 100000751 Address Complete and valid interview related to CF
## 334 100000752 Address Complete and valid interview related to CF
## 335 100000753 Address Complete and valid interview related to CF
## 336 100000754 Address Complete and valid interview related to CF
## 337 100000755 Address Complete and valid interview related to CF
## 338 100000756 Address Complete and valid interview related to CF
## 339 100000759 Address Complete and valid interview related to CF
## 340 100000762 Address Complete and valid interview related to CF
## 341 100000764 Address Complete and valid interview related to CF
## 342 100000767 Address Complete and valid interview related to CF
## 343 100000768 Address Complete and valid interview related to CF
## 344 100000769 Address Complete and valid interview related to CF
## 345 100000770 Address Complete and valid interview related to CF
## 346 100000772 Address Complete and valid interview related to CF
## 347 100000773 Address Complete and valid interview related to CF
## 348 100000774 Address Complete and valid interview related to CF
## 349 100000776 Address Complete and valid interview related to CF
## 350 100000778 Address Complete and valid interview related to CF
## 351 100000779 Address Complete and valid interview related to CF
## 352 100000781 Address Complete and valid interview related to CF
## 353 100000784 Address Complete and valid interview related to CF
## 354 100000785 Address Complete and valid interview related to CF
## 355 100000791 Address Complete and valid interview related to CF
## 356 100000796 Address Complete and valid interview related to CF
## 357 100000797 Address Complete and valid interview related to CF
## 358 100000798 Address Complete and valid interview related to CF
## 359 100000804 Address Complete and valid interview related to CF
## 360 100000808 Address Complete and valid interview related to CF
## 361 100000810 Address Complete and valid interview related to CF
## 362 100000815 Address Complete and valid interview related to CF
## 363 100000821 Address Complete and valid interview related to CF
## 364 100000827 Address Complete and valid interview related to CF
## 365 100000830 Address Complete and valid interview related to CF
## 366 100000838 Address Complete and valid interview related to CF
## 367 100000839 Address Complete and valid interview related to CF
## 368 100000840 Address Complete and valid interview related to CF
## 369 100000841 Address Complete and valid interview related to CF
## 370 100000842 Address Complete and valid interview related to CF
## 371 100000844 Address Complete and valid interview related to CF
## 372 100000846 Address Complete and valid interview related to CF
## 373 100000847 Address Complete and valid interview related to CF
## 374 100000848 Address Complete and valid interview related to CF
## 375 100000849 Address Complete and valid interview related to CF
## 376 100000850 Address Complete and valid interview related to CF
## 377 100000853 Address Complete and valid interview related to CF
## 378 100000854 Address Complete and valid interview related to CF
## 379 100000855 Address Complete and valid interview related to CF
## 380 100000856 Address Complete and valid interview related to CF
## 381 100000857 Address Complete and valid interview related to CF
## 382 100000859 Address Complete and valid interview related to CF
## 383 100000860 Address Complete and valid interview related to CF
## 384 100000862 Address Complete and valid interview related to CF
## 385 100000863 Address Complete and valid interview related to CF
## 386 100000866 Address Complete and valid interview related to CF
## 387 100000867 Address Complete and valid interview related to CF
## 388 100000877 Address Complete and valid interview related to CF
## 389 100000879 Address Complete and valid interview related to CF
## 390 100000881 Address Complete and valid interview related to CF
## 391 100000883 Address Complete and valid interview related to CF
## 392 100000887 Address Complete and valid interview related to CF
## 393 100000888 Address Complete and valid interview related to CF
## 394 100000892 Address Complete and valid interview related to CF
## 395 100000898 Address Complete and valid interview related to CF
## 396 100000907 Address Complete and valid interview related to CF
## 397 100000909 Address Complete and valid interview related to CF
## 398 100000911 Address Complete and valid interview related to CF
## 399 100000916 Address Complete and valid interview related to CF
## 400 100000919 Address Complete and valid interview related to CF
## 401 100000922 Address Complete and valid interview related to CF
## 402 100000923 Address Complete and valid interview related to CF
## 403 100000927 Address Complete and valid interview related to CF
## 404 100000929 Address Complete and valid interview related to CF
## 405 100000930 Address Complete and valid interview related to CF
## 406 100000931 Address Complete and valid interview related to CF
## 407 100000939 Address Complete and valid interview related to CF
## 408 100000943 Address Complete and valid interview related to CF
## 409 100000945 Address Complete and valid interview related to CF
## 410 100000948 Address Complete and valid interview related to CF
## 411 100000953 Address Complete and valid interview related to CF
## 412 100000956 Address Complete and valid interview related to CF
## 413 100000957 Address Complete and valid interview related to CF
## 414 100000958 Address Complete and valid interview related to CF
## 415 100000959 Address Complete and valid interview related to CF
## 416 100000960 Address Complete and valid interview related to CF
## 417 100000963 Address Complete and valid interview related to CF
## 418 100000964 Address Complete and valid interview related to CF
## 419 100000971 Address Complete and valid interview related to CF
## 420 100000974 Address Complete and valid interview related to CF
## 421 100000977 Address Complete and valid interview related to CF
## 422 100000978 Address Complete and valid interview related to CF
## 423 100000984 Address Complete and valid interview related to CF
## 424 100000987 Address Complete and valid interview related to CF
## 425 100000988 Address Complete and valid interview related to CF
## 426 100000992 Address Complete and valid interview related to CF
## 427 100000993 Address Complete and valid interview related to CF
## 428 100000998 Address Complete and valid interview related to CF
## 429 100001001 Address Complete and valid interview related to CF
## 430 100001003 Address Complete and valid interview related to CF
## 431 100001006 Address Complete and valid interview related to CF
## 432 100001008 Address Complete and valid interview related to CF
## 433 100001011 Address Complete and valid interview related to CF
## 434 100001021 Address Complete and valid interview related to CF
## 435 100001022 Address Complete and valid interview related to CF
## 436 100001023 Address Complete and valid interview related to CF
## 437 100001025 Address Complete and valid interview related to CF
## 438 100001027 Address Complete and valid interview related to CF
## 439 100001031 Address Complete and valid interview related to CF
## 440 100001032 Address Complete and valid interview related to CF
## 441 100001033 Address Complete and valid interview related to CF
## 442 100001034 Address Complete and valid interview related to CF
## 443 100001038 Address Complete and valid interview related to CF
## 444 100001040 Address Complete and valid interview related to CF
## 445 100001041 Address Complete and valid interview related to CF
## 446 100001044 Address Complete and valid interview related to CF
## 447 100001045 Address Complete and valid interview related to CF
## 448 100001047 Address Complete and valid interview related to CF
## 449 100001048 Address Complete and valid interview related to CF
## 450 100001049 Address Complete and valid interview related to CF
## 451 100001052 Address Complete and valid interview related to CF
## 452 100001054 Address Complete and valid interview related to CF
## 453 100001057 Address Complete and valid interview related to CF
## 454 100001063 Address Complete and valid interview related to CF
## 455 100001070 Address Complete and valid interview related to CF
## 456 100001080 Address Complete and valid interview related to CF
## 457 100001081 Address Complete and valid interview related to CF
## 458 100001087 Address Complete and valid interview related to CF
## 459 100001089 Address Complete and valid interview related to CF
## 460 100001094 Address Complete and valid interview related to CF
## 461 100001097 Address Complete and valid interview related to CF
## 462 100001100 Address Complete and valid interview related to CF
## 463 100001102 Address Complete and valid interview related to CF
## 464 100001103 Address Complete and valid interview related to CF
## 465 100001106 Address Complete and valid interview related to CF
## 466 100001107 Address Complete and valid interview related to CF
## 467 100001110 Address Complete and valid interview related to CF
## 468 100001112 Address Complete and valid interview related to CF
## 469 100001114 Address Complete and valid interview related to CF
## 470 100001119 Address Complete and valid interview related to CF
## 471 100001121 Address Complete and valid interview related to CF
## 472 100001122 Address Complete and valid interview related to CF
## 473 100001123 Address Complete and valid interview related to CF
## 474 100001125 Address Complete and valid interview related to CF
## 475 100001126 Address Complete and valid interview related to CF
## 476 100001128 Address Complete and valid interview related to CF
## 477 100001129 Address Complete and valid interview related to CF
## 478 100001130 Address Complete and valid interview related to CF
## 479 100001132 Address Complete and valid interview related to CF
## 480 100001134 Address Complete and valid interview related to CF
## 481 100001136 Address Complete and valid interview related to CF
## 482 100001137 Address Complete and valid interview related to CF
## 483 100001139 Address Complete and valid interview related to CF
## 484 100001140 Address Complete and valid interview related to CF
## 485 100001142 Address Complete and valid interview related to CF
## 486 100001144 Address Complete and valid interview related to CF
## 487 100001145 Address Complete and valid interview related to CF
## 488 100001147 Address Complete and valid interview related to CF
## 489 100001148 Address Complete and valid interview related to CF
## 490 100001153 Address Complete and valid interview related to CF
## 491 100001154 Address Complete and valid interview related to CF
## 492 100001155 Address Complete and valid interview related to CF
## 493 100001160 Address Complete and valid interview related to CF
## 494 100001162 Address Complete and valid interview related to CF
## 495 100001164 Address Complete and valid interview related to CF
## 496 100001167 Address Complete and valid interview related to CF
## 497 100001168 Address Complete and valid interview related to CF
## 498 100001169 Address Complete and valid interview related to CF
## 499 100001176 Address Complete and valid interview related to CF
## 500 100001180 Address Complete and valid interview related to CF
## 501 100001187 Address Complete and valid interview related to CF
## 502 100001188 Address Complete and valid interview related to CF
## 503 100001192 Address Complete and valid interview related to CF
## 504 100001197 Address Complete and valid interview related to CF
## 505 100001202 Address Complete and valid interview related to CF
## 506 100001207 Address Complete and valid interview related to CF
## 507 100001209 Address Complete and valid interview related to CF
## 508 100001215 Address Complete and valid interview related to CF
## 509 100001219 Address Complete and valid interview related to CF
## 510 100001223 Address Complete and valid interview related to CF
## 511 100001225 Address Complete and valid interview related to CF
## 512 100001230 Address Complete and valid interview related to CF
## 513 100001232 Address Complete and valid interview related to CF
## 514 100001234 Address Complete and valid interview related to CF
## 515 100001237 Address Complete and valid interview related to CF
## 516 100001239 Address Complete and valid interview related to CF
## 517 100001240 Address Complete and valid interview related to CF
## 518 100001241 Address Complete and valid interview related to CF
## 519 100001242 Address Complete and valid interview related to CF
## 520 100001243 Address Complete and valid interview related to CF
## 521 100001248 Address Complete and valid interview related to CF
## 522 100001250 Address Complete and valid interview related to CF
## 523 100001252 Address Complete and valid interview related to CF
## 524 100001253 Address Complete and valid interview related to CF
## 525 100001255 Address Complete and valid interview related to CF
## 526 100001259 Address Complete and valid interview related to CF
## 527 100001262 Address Complete and valid interview related to CF
## 528 100001267 Address Complete and valid interview related to CF
## 529 100001271 Address Complete and valid interview related to CF
## 530 100001273 Address Complete and valid interview related to CF
## 531 100001274 Address Complete and valid interview related to CF
## 532 100001275 Address Complete and valid interview related to CF
## 533 100001277 Address Complete and valid interview related to CF
## 534 100001279 Address Complete and valid interview related to CF
## 535 100001285 Address Complete and valid interview related to CF
## 536 100001288 Address Complete and valid interview related to CF
## 537 100001293 Address Complete and valid interview related to CF
## 538 100001295 Address Complete and valid interview related to CF
## 539 100001297 Address Complete and valid interview related to CF
## 540 100001298 Address Complete and valid interview related to CF
## 541 100001299 Address Complete and valid interview related to CF
## 542 100001300 Address Complete and valid interview related to CF
## 543 100001301 Address Complete and valid interview related to CF
## 544 100001303 Address Complete and valid interview related to CF
## 545 100001304 Address Complete and valid interview related to CF
## 546 100001307 Address Complete and valid interview related to CF
## 547 100001310 Address Complete and valid interview related to CF
## 548 100001311 Address Complete and valid interview related to CF
## 549 100001316 Address Complete and valid interview related to CF
## 550 100001318 Address Complete and valid interview related to CF
## 551 100001319 Address Complete and valid interview related to CF
## 552 100001322 Address Complete and valid interview related to CF
## 553 100001323 Address Complete and valid interview related to CF
## 554 100001325 Address Complete and valid interview related to CF
## 555 100001339 Address Complete and valid interview related to CF
## 556 100001340 Address Complete and valid interview related to CF
## 557 100001341 Address Complete and valid interview related to CF
## 558 100001342 Address Complete and valid interview related to CF
## 559 100001347 Address Complete and valid interview related to CF
## 560 100001349 Address Complete and valid interview related to CF
## 561 100001350 Address Complete and valid interview related to CF
## 562 100001353 Address Complete and valid interview related to CF
## 563 100001354 Address Complete and valid interview related to CF
## 564 100001356 Address Complete and valid interview related to CF
## 565 100001360 Address Complete and valid interview related to CF
## 566 100001363 Address Complete and valid interview related to CF
## 567 100001367 Address Complete and valid interview related to CF
## 568 100001373 Address Complete and valid interview related to CF
## 569 100001375 Address Complete and valid interview related to CF
## 570 100001376 Address Complete and valid interview related to CF
## 571 100001378 Address Complete and valid interview related to CF
## 572 100001381 Address Complete and valid interview related to CF
## 573 100001383 Address Complete and valid interview related to CF
## 574 100001391 Address Complete and valid interview related to CF
## 575 100001393 Address Complete and valid interview related to CF
## 576 100001395 Address Complete and valid interview related to CF
## 577 100001401 Address Complete and valid interview related to CF
## 578 100001402 Address Complete and valid interview related to CF
## 579 100001403 Address Complete and valid interview related to CF
## 580 100001404 Address Complete and valid interview related to CF
## 581 100001405 Address Complete and valid interview related to CF
## 582 100001407 Address Complete and valid interview related to CF
## 583 100001411 Address Complete and valid interview related to CF
## 584 100001412 Address Complete and valid interview related to CF
## 585 100001414 Address Complete and valid interview related to CF
## 586 100001417 Address Complete and valid interview related to CF
## 587 100001418 Address Complete and valid interview related to CF
## 588 100001419 Address Complete and valid interview related to CF
## 589 100001420 Address Complete and valid interview related to CF
## 590 100001421 Address Complete and valid interview related to CF
## 591 100001422 Address Complete and valid interview related to CF
## 592 100001423 Address Complete and valid interview related to CF
## 593 100001425 Address Complete and valid interview related to CF
## 594 100001427 Address Complete and valid interview related to CF
## 595 100001428 Address Complete and valid interview related to CF
## 596 100001434 Address Complete and valid interview related to CF
## 597 100001435 Address Complete and valid interview related to CF
## 598 100001436 Address Complete and valid interview related to CF
## 599 100001439 Address Complete and valid interview related to CF
## 600 100001440 Address Complete and valid interview related to CF
## 601 100001441 Address Complete and valid interview related to CF
## 602 100001443 Address Complete and valid interview related to CF
## 603 100001444 Address Complete and valid interview related to CF
## 604 100001445 Address Complete and valid interview related to CF
## 605 100001448 Address Complete and valid interview related to CF
## 606 100001449 Address Complete and valid interview related to CF
## 607 100001456 Address Complete and valid interview related to CF
## 608 100001460 Address Complete and valid interview related to CF
## 609 100001463 Address Complete and valid interview related to CF
## 610 100001468 Address Complete and valid interview related to CF
## 611 100001470 Address Complete and valid interview related to CF
## 612 100001474 Address Complete and valid interview related to CF
## 613 100001480 Address Complete and valid interview related to CF
## 614 100001483 Address Complete and valid interview related to CF
## 615 100001487 Address Complete and valid interview related to CF
## 616 100001488 Address Complete and valid interview related to CF
## 617 100001491 Address Complete and valid interview related to CF
## 618 100001494 Address Complete and valid interview related to CF
## 619 100001495 Address Complete and valid interview related to CF
## 620 100001497 Address Complete and valid interview related to CF
## 621 100001501 Address Complete and valid interview related to CF
## 622 100001503 Address Complete and valid interview related to CF
## 623 100001506 Address Complete and valid interview related to CF
## 624 100001512 Address Complete and valid interview related to CF
## 625 100001517 Address Complete and valid interview related to CF
## 626 100001518 Address Complete and valid interview related to CF
## 627 100001522 Address Complete and valid interview related to CF
## 628 100001523 Address Complete and valid interview related to CF
## 629 100001524 Address Complete and valid interview related to CF
## 630 100001525 Address Complete and valid interview related to CF
## 631 100001526 Address Complete and valid interview related to CF
## 632 100001528 Address Complete and valid interview related to CF
## 633 100001529 Address Complete and valid interview related to CF
## 634 100001530 Address Complete and valid interview related to CF
## 635 100001534 Address Complete and valid interview related to CF
## 636 100001538 Address Complete and valid interview related to CF
## 637 100001540 Address Complete and valid interview related to CF
## 638 100001541 Address Complete and valid interview related to CF
## 639 100001547 Address Complete and valid interview related to CF
## 640 100001549 Address Complete and valid interview related to CF
## 641 100001551 Address Complete and valid interview related to CF
## 642 100001554 Address Complete and valid interview related to CF
## 643 100001564 Address Complete and valid interview related to CF
## 644 100001565 Address Complete and valid interview related to CF
## 645 100001566 Address Complete and valid interview related to CF
## 646 100001569 Address Complete and valid interview related to CF
## 647 100001572 Address Complete and valid interview related to CF
## 648 100001573 Address Complete and valid interview related to CF
## 649 100001574 Address Complete and valid interview related to CF
## 650 100001575 Address Complete and valid interview related to CF
## 651 100001576 Address Complete and valid interview related to CF
## 652 100001586 Address Complete and valid interview related to CF
## 653 100001594 Address Complete and valid interview related to CF
## 654 100001597 Address Complete and valid interview related to CF
## 655 100001598 Address Complete and valid interview related to CF
## 656 100001599 Address Complete and valid interview related to CF
## 657 100001600 Address Complete and valid interview related to CF
## 658 100001602 Address Complete and valid interview related to CF
## 659 100001603 Address Complete and valid interview related to CF
## 660 100001604 Address Complete and valid interview related to CF
## 661 100001615 Address Complete and valid interview related to CF
## 662 100001620 Address Complete and valid interview related to CF
## 663 100001624 Address Complete and valid interview related to CF
## 664 100001626 Address Complete and valid interview related to CF
## 665 100001627 Address Complete and valid interview related to CF
## 666 100001628 Address Complete and valid interview related to CF
## 667 100001629 Address Complete and valid interview related to CF
## 668 100001631 Address Complete and valid interview related to CF
## 669 100001635 Address Complete and valid interview related to CF
## 670 100001638 Address Complete and valid interview related to CF
## 671 100001642 Address Complete and valid interview related to CF
## 672 100001644 Address Complete and valid interview related to CF
## 673 100001649 Address Complete and valid interview related to CF
## 674 100001650 Address Complete and valid interview related to CF
## 675 100001651 Address Complete and valid interview related to CF
## 676 100001652 Address Complete and valid interview related to CF
## 677 100001654 Address Complete and valid interview related to CF
## 678 100001655 Address Complete and valid interview related to CF
## 679 100001656 Address Complete and valid interview related to CF
## 680 100001657 Address Complete and valid interview related to CF
## 681 100001663 Address Complete and valid interview related to CF
## 682 100001665 Address Complete and valid interview related to CF
## 683 100001668 Address Complete and valid interview related to CF
## 684 100001669 Address Complete and valid interview related to CF
## 685 100001672 Address Complete and valid interview related to CF
## 686 100001674 Address Complete and valid interview related to CF
## 687 100001677 Address Complete and valid interview related to CF
## 688 100001678 Address Complete and valid interview related to CF
## 689 100001679 Address Complete and valid interview related to CF
## 690 100001680 Address Complete and valid interview related to CF
## 691 100001681 Address Complete and valid interview related to CF
## 692 100001682 Address Complete and valid interview related to CF
## 693 100001683 Address Complete and valid interview related to CF
## 694 100001688 Address Complete and valid interview related to CF
## 695 100001689 Address Complete and valid interview related to CF
## 696 100001690 Address Complete and valid interview related to CF
## 697 100001691 Address Complete and valid interview related to CF
## 698 100001692 Address Complete and valid interview related to CF
## 699 100001696 Address Complete and valid interview related to CF
## 700 100001700 Address Complete and valid interview related to CF
## 701 100001701 Address Complete and valid interview related to CF
## 702 100001705 Address Complete and valid interview related to CF
## 703 100001707 Address Complete and valid interview related to CF
## 704 100001708 Address Complete and valid interview related to CF
## 705 100001709 Address Complete and valid interview related to CF
## 706 100001713 Address Complete and valid interview related to CF
## 707 100001714 Address Complete and valid interview related to CF
## 708 100001716 Address Complete and valid interview related to CF
## 709 100001717 Address Complete and valid interview related to CF
## 710 100001720 Address Complete and valid interview related to CF
## 711 100001722 Address Complete and valid interview related to CF
## 712 100001726 Address Complete and valid interview related to CF
## 713 100001728 Address Complete and valid interview related to CF
## 714 100001733 Address Complete and valid interview related to CF
## 715 100001734 Address Complete and valid interview related to CF
## 716 100001735 Address Complete and valid interview related to CF
## 717 100001740 Address Complete and valid interview related to CF
## 718 100001744 Address Complete and valid interview related to CF
## 719 100001746 Address Complete and valid interview related to CF
## 720 100001748 Address Complete and valid interview related to CF
## 721 100001749 Address Complete and valid interview related to CF
## 722 100001755 Address Complete and valid interview related to CF
## 723 100001758 Address Complete and valid interview related to CF
## 724 100001760 Address Complete and valid interview related to CF
## 725 100001763 Address Complete and valid interview related to CF
## 726 100001764 Address Complete and valid interview related to CF
## 727 100001767 Address Complete and valid interview related to CF
## 728 100001768 Address Complete and valid interview related to CF
## 729 100001770 Address Complete and valid interview related to CF
## 730 100001771 Address Complete and valid interview related to CF
## 731 100001772 Address Complete and valid interview related to CF
## 732 100001773 Address Complete and valid interview related to CF
## 733 100001774 Address Complete and valid interview related to CF
## 734 100001776 Address Complete and valid interview related to CF
## 735 100001781 Address Complete and valid interview related to CF
## 736 100001783 Address Complete and valid interview related to CF
## 737 100001786 Address Complete and valid interview related to CF
## 738 100001790 Address Complete and valid interview related to CF
## 739 100001791 Address Complete and valid interview related to CF
## 740 100001793 Address Complete and valid interview related to CF
## 741 100001795 Address Complete and valid interview related to CF
## 742 100001796 Address Complete and valid interview related to CF
## 743 100001797 Address Complete and valid interview related to CF
## 744 100001798 Address Complete and valid interview related to CF
## 745 100001800 Address Complete and valid interview related to CF
## 746 100001801 Address Complete and valid interview related to CF
## 747 100001804 Address Complete and valid interview related to CF
## 748 100001805 Address Complete and valid interview related to CF
## 749 100001807 Address Complete and valid interview related to CF
## 750 100001815 Address Complete and valid interview related to CF
## 751 100001817 Address Complete and valid interview related to CF
## 752 100001818 Address Complete and valid interview related to CF
## 753 100001819 Address Complete and valid interview related to CF
## 754 100001820 Address Complete and valid interview related to CF
## 755 100001827 Address Complete and valid interview related to CF
## 756 100001830 Address Complete and valid interview related to CF
## 757 100001832 Address Complete and valid interview related to CF
## 758 100001834 Address Complete and valid interview related to CF
## 759 100001839 Address Complete and valid interview related to CF
## 760 100001842 Address Complete and valid interview related to CF
## 761 100001845 Address Complete and valid interview related to CF
## 762 100001849 Address Complete and valid interview related to CF
## 763 100001850 Address Complete and valid interview related to CF
## 764 100001852 Address Complete and valid interview related to CF
## 765 100001854 Address Complete and valid interview related to CF
## 766 100001856 Address Complete and valid interview related to CF
## 767 100001862 Address Complete and valid interview related to CF
## 768 100001869 Address Complete and valid interview related to CF
## 769 100001871 Address Complete and valid interview related to CF
## 770 100001874 Address Complete and valid interview related to CF
## 771 100001877 Address Complete and valid interview related to CF
## 772 100001880 Address Complete and valid interview related to CF
## 773 100001881 Address Complete and valid interview related to CF
## 774 100001883 Address Complete and valid interview related to CF
## 775 100001885 Address Complete and valid interview related to CF
## 776 100001888 Address Complete and valid interview related to CF
## 777 100001890 Address Complete and valid interview related to CF
## 778 100001892 Address Complete and valid interview related to CF
## 779 100001893 Address Complete and valid interview related to CF
## 780 100001895 Address Complete and valid interview related to CF
## 781 100001897 Address Complete and valid interview related to CF
## 782 100001904 Address Complete and valid interview related to CF
## 783 100001905 Address Complete and valid interview related to CF
## 784 100001909 Address Complete and valid interview related to CF
## 785 100001912 Address Complete and valid interview related to CF
## 786 100001914 Address Complete and valid interview related to CF
## 787 100001915 Address Complete and valid interview related to CF
## 788 100001916 Address Complete and valid interview related to CF
## 789 100001918 Address Complete and valid interview related to CF
## 790 100001919 Address Complete and valid interview related to CF
## 791 100001921 Address Complete and valid interview related to CF
## 792 100001923 Address Complete and valid interview related to CF
## 793 100001924 Address Complete and valid interview related to CF
## 794 100001930 Address Complete and valid interview related to CF
## 795 100001931 Address Complete and valid interview related to CF
## 796 100001934 Address Complete and valid interview related to CF
## 797 100001936 Address Complete and valid interview related to CF
## 798 100001939 Address Complete and valid interview related to CF
## 799 100001948 Address Complete and valid interview related to CF
## 800 100001951 Address Complete and valid interview related to CF
## 801 100001953 Address Complete and valid interview related to CF
## 802 100001955 Address Complete and valid interview related to CF
## 803 100001956 Address Complete and valid interview related to CF
## 804 100001957 Address Complete and valid interview related to CF
## 805 100001961 Address Complete and valid interview related to CF
## 806 100001963 Address Complete and valid interview related to CF
## 807 100001967 Address Complete and valid interview related to CF
## 808 100001969 Address Complete and valid interview related to CF
## 809 100001972 Address Complete and valid interview related to CF
## 810 100001973 Address Complete and valid interview related to CF
## 811 100001974 Address Complete and valid interview related to CF
## 812 100001979 Address Complete and valid interview related to CF
## 813 100001981 Address Complete and valid interview related to CF
## 814 100001986 Address Complete and valid interview related to CF
## 815 100001992 Address Complete and valid interview related to CF
## 816 100001993 Address Complete and valid interview related to CF
## 817 100001995 Address Complete and valid interview related to CF
## 818 100001996 Address Complete and valid interview related to CF
## 819 100001999 Address Complete and valid interview related to CF
## 820 100002000 Address Complete and valid interview related to CF
## 821 100002003 Address Complete and valid interview related to CF
## 822 100002004 Address Complete and valid interview related to CF
## 823 100002005 Address Complete and valid interview related to CF
## 824 100002007 Address Complete and valid interview related to CF
## 825 100002008 Address Complete and valid interview related to CF
## 826 100002011 Address Complete and valid interview related to CF
## 827 100002012 Address Complete and valid interview related to CF
## 828 100002019 Address Complete and valid interview related to CF
## 829 100002024 Address Complete and valid interview related to CF
## 830 100002025 Address Complete and valid interview related to CF
## 831 100002026 Address Complete and valid interview related to CF
## 832 100002030 Address Complete and valid interview related to CF
## 833 100002034 Address Complete and valid interview related to CF
## 834 100002041 Address Complete and valid interview related to CF
## 835 100002043 Address Complete and valid interview related to CF
## 836 100002045 Address Complete and valid interview related to CF
## 837 100002046 Address Complete and valid interview related to CF
## 838 100002047 Address Complete and valid interview related to CF
## 839 100002049 Address Complete and valid interview related to CF
## 840 100002050 Address Complete and valid interview related to CF
## 841 100002051 Address Complete and valid interview related to CF
## 842 100002052 Address Complete and valid interview related to CF
## 843 100002059 Address Complete and valid interview related to CF
## 844 100002061 Address Complete and valid interview related to CF
## 845 100002062 Address Complete and valid interview related to CF
## 846 100002066 Address Complete and valid interview related to CF
## 847 100002067 Address Complete and valid interview related to CF
## 848 100002068 Address Complete and valid interview related to CF
## 849 100002069 Address Complete and valid interview related to CF
## 850 100002072 Address Complete and valid interview related to CF
## 851 100002075 Address Complete and valid interview related to CF
## 852 100002076 Address Complete and valid interview related to CF
## 853 100002077 Address Complete and valid interview related to CF
## 854 100002079 Address Complete and valid interview related to CF
## 855 100002080 Address Complete and valid interview related to CF
## 856 100002081 Address Complete and valid interview related to CF
## 857 100002082 Address Complete and valid interview related to CF
## 858 100002083 Address Complete and valid interview related to CF
## 859 100002085 Address Complete and valid interview related to CF
## 860 100002089 Address Complete and valid interview related to CF
## 861 100002090 Address Complete and valid interview related to CF
## 862 100002095 Address Complete and valid interview related to CF
## 863 100002098 Address Complete and valid interview related to CF
## 864 100002100 Address Complete and valid interview related to CF
## 865 100002105 Address Complete and valid interview related to CF
## 866 100002106 Address Complete and valid interview related to CF
## 867 100002107 Address Complete and valid interview related to CF
## 868 100002112 Address Complete and valid interview related to CF
## 869 100002113 Address Complete and valid interview related to CF
## 870 100002117 Address Complete and valid interview related to CF
## 871 100002118 Address Complete and valid interview related to CF
## 872 100002121 Address Complete and valid interview related to CF
## 873 100002122 Address Complete and valid interview related to CF
## 874 100002123 Address Complete and valid interview related to CF
## 875 100002125 Address Complete and valid interview related to CF
## 876 100002131 Address Complete and valid interview related to CF
## 877 100002132 Address Complete and valid interview related to CF
## 878 100002136 Address Complete and valid interview related to CF
## 879 100002137 Address Complete and valid interview related to CF
## 880 100002140 Address Complete and valid interview related to CF
## 881 100002141 Address Complete and valid interview related to CF
## 882 100002142 Address Complete and valid interview related to CF
## 883 100002143 Address Complete and valid interview related to CF
## 884 100002146 Address Complete and valid interview related to CF
## 885 100002152 Address Complete and valid interview related to CF
## 886 100002154 Address Complete and valid interview related to CF
## 887 100002155 Address Complete and valid interview related to CF
## 888 100002156 Address Complete and valid interview related to CF
## 889 100002159 Address Complete and valid interview related to CF
## 890 100002161 Address Complete and valid interview related to CF
## 891 100002162 Address Complete and valid interview related to CF
## 892 100002164 Address Complete and valid interview related to CF
## 893 100002166 Address Complete and valid interview related to CF
## 894 100002175 Address Complete and valid interview related to CF
## 895 100002176 Address Complete and valid interview related to CF
## 896 100002178 Address Complete and valid interview related to CF
## 897 100002186 Address Complete and valid interview related to CF
## 898 100002187 Address Complete and valid interview related to CF
## 899 100002188 Address Complete and valid interview related to CF
## 900 100002194 Address Complete and valid interview related to CF
## 901 100002195 Address Complete and valid interview related to CF
## 902 100002196 Address Complete and valid interview related to CF
## 903 100002199 Address Complete and valid interview related to CF
## 904 100002200 Address Complete and valid interview related to CF
## 905 100002202 Address Complete and valid interview related to CF
## 906 100002203 Address Complete and valid interview related to CF
## 907 100002204 Address Complete and valid interview related to CF
## 908 100002205 Address Complete and valid interview related to CF
## 909 100002206 Address Complete and valid interview related to CF
## 910 100002207 Address Complete and valid interview related to CF
## 911 100002208 Address Complete and valid interview related to CF
## 912 100002210 Address Complete and valid interview related to CF
## 913 100002213 Address Complete and valid interview related to CF
## 914 100002221 Address Complete and valid interview related to CF
## 915 100002222 Address Complete and valid interview related to CF
## 916 100002226 Address Complete and valid interview related to CF
## 917 100002227 Address Complete and valid interview related to CF
## 918 100002228 Address Complete and valid interview related to CF
## 919 100002229 Address Complete and valid interview related to CF
## 920 100002231 Address Complete and valid interview related to CF
## 921 100002233 Address Complete and valid interview related to CF
## 922 100002241 Address Complete and valid interview related to CF
## 923 100002243 Address Complete and valid interview related to CF
## 924 100002244 Address Complete and valid interview related to CF
## 925 100002245 Address Complete and valid interview related to CF
## 926 100002249 Address Complete and valid interview related to CF
## 927 100002250 Address Complete and valid interview related to CF
## 928 100002251 Address Complete and valid interview related to CF
## 929 100002252 Address Complete and valid interview related to CF
## 930 100002253 Address Complete and valid interview related to CF
## 931 100002254 Address Complete and valid interview related to CF
## 932 100002256 Address Complete and valid interview related to CF
## 933 100002258 Address Complete and valid interview related to CF
## 934 100002261 Address Complete and valid interview related to CF
## 935 100002264 Address Complete and valid interview related to CF
## 936 100002265 Address Complete and valid interview related to CF
## 937 100002269 Address Complete and valid interview related to CF
## 938 100002270 Address Complete and valid interview related to CF
## 939 100002272 Address Complete and valid interview related to CF
## 940 100002273 Address Complete and valid interview related to CF
## 941 100002275 Address Complete and valid interview related to CF
## 942 100002276 Address Complete and valid interview related to CF
## 943 100002278 Address Complete and valid interview related to CF
## 944 100002280 Address Complete and valid interview related to CF
## 945 100002282 Address Complete and valid interview related to CF
## 946 100002285 Address Complete and valid interview related to CF
## 947 100002286 Address Complete and valid interview related to CF
## 948 100002289 Address Complete and valid interview related to CF
## 949 100002293 Address Complete and valid interview related to CF
## 950 100002295 Address Complete and valid interview related to CF
## 951 100002299 Address Complete and valid interview related to CF
## 952 100002300 Address Complete and valid interview related to CF
## 953 100002302 Address Complete and valid interview related to CF
## 954 100002305 Address Complete and valid interview related to CF
## 955 100002306 Address Complete and valid interview related to CF
## 956 100002307 Address Complete and valid interview related to CF
## 957 100002310 Address Complete and valid interview related to CF
## 958 100002313 Address Complete and valid interview related to CF
## 959 100002319 Address Complete and valid interview related to CF
## 960 100002320 Address Complete and valid interview related to CF
## 961 100002325 Address Complete and valid interview related to CF
## 962 100002328 Address Complete and valid interview related to CF
## 963 100002334 Address Complete and valid interview related to CF
## 964 100002336 Address Complete and valid interview related to CF
## 965 100002338 Address Complete and valid interview related to CF
## 966 100002339 Address Complete and valid interview related to CF
## 967 100002341 Address Complete and valid interview related to CF
## 968 100002345 Address Complete and valid interview related to CF
## 969 100002347 Address Complete and valid interview related to CF
## 970 100002348 Address Complete and valid interview related to CF
## 971 100002351 Address Complete and valid interview related to CF
## 972 100002354 Address Complete and valid interview related to CF
## 973 100002356 Address Complete and valid interview related to CF
## 974 100002357 Address Complete and valid interview related to CF
## 975 100002358 Address Complete and valid interview related to CF
## 976 100002360 Address Complete and valid interview related to CF
## 977 100002361 Address Complete and valid interview related to CF
## 978 100002363 Address Complete and valid interview related to CF
## 979 100002364 Address Complete and valid interview related to CF
## 980 100002366 Address Complete and valid interview related to CF
## 981 100002367 Address Complete and valid interview related to CF
## 982 100002368 Address Complete and valid interview related to CF
## 983 100002369 Address Complete and valid interview related to CF
## 984 100002370 Address Complete and valid interview related to CF
## 985 100002371 Address Complete and valid interview related to CF
## 986 100002372 Address Complete and valid interview related to CF
## 987 100002374 Address Complete and valid interview related to CF
## 988 100002379 Address Complete and valid interview related to CF
## 989 100002380 Address Complete and valid interview related to CF
## 990 100002381 Address Complete and valid interview related to CF
## 991 100002383 Address Complete and valid interview related to CF
## 992 100002385 Address Complete and valid interview related to CF
## 993 100002386 Address Complete and valid interview related to CF
## 994 100002387 Address Complete and valid interview related to CF
## 995 100002390 Address Complete and valid interview related to CF
## 996 100002393 Address Complete and valid interview related to CF
## 997 100002396 Address Complete and valid interview related to CF
## 998 100002398 Address Complete and valid interview related to CF
## 999 100002400 Address Complete and valid interview related to CF
## 1000 100002407 Address Complete and valid interview related to CF
## 1001 100002408 Address Complete and valid interview related to CF
## 1002 100002410 Address Complete and valid interview related to CF
## 1003 100002412 Address Complete and valid interview related to CF
## 1004 100002418 Address Complete and valid interview related to CF
## 1005 100002420 Address Complete and valid interview related to CF
## 1006 100002422 Address Complete and valid interview related to CF
## 1007 100002424 Address Complete and valid interview related to CF
## 1008 100002425 Address Complete and valid interview related to CF
## 1009 100002430 Address Complete and valid interview related to CF
## 1010 100002433 Address Complete and valid interview related to CF
## 1011 100002438 Address Complete and valid interview related to CF
## 1012 100002439 Address Complete and valid interview related to CF
## 1013 100002440 Address Complete and valid interview related to CF
## 1014 100002441 Address Complete and valid interview related to CF
## 1015 100002442 Address Complete and valid interview related to CF
## 1016 100002444 Address Complete and valid interview related to CF
## 1017 100002452 Address Complete and valid interview related to CF
## 1018 100002453 Address Complete and valid interview related to CF
## 1019 100002455 Address Complete and valid interview related to CF
## 1020 100002457 Address Complete and valid interview related to CF
## 1021 100002460 Address Complete and valid interview related to CF
## 1022 100002462 Address Complete and valid interview related to CF
## 1023 100002467 Address Complete and valid interview related to CF
## 1024 100002468 Address Complete and valid interview related to CF
## 1025 100002474 Address Complete and valid interview related to CF
## 1026 100002476 Address Complete and valid interview related to CF
## 1027 100002478 Address Complete and valid interview related to CF
## 1028 100002479 Address Complete and valid interview related to CF
## 1029 100002484 Address Complete and valid interview related to CF
## 1030 100002486 Address Complete and valid interview related to CF
## 1031 100002490 Address Complete and valid interview related to CF
## 1032 100002493 Address Complete and valid interview related to CF
## 1033 100002494 Address Complete and valid interview related to CF
## 1034 100002495 Address Complete and valid interview related to CF
## 1035 100002496 Address Complete and valid interview related to CF
## 1036 100002499 Address Complete and valid interview related to CF
## 1037 100002500 Address Complete and valid interview related to CF
## 1038 100002501 Address Complete and valid interview related to CF
## 1039 100002504 Address Complete and valid interview related to CF
## 1040 100002505 Address Complete and valid interview related to CF
## 1041 100002507 Address Complete and valid interview related to CF
## 1042 100002511 Address Complete and valid interview related to CF
## 1043 100002513 Address Complete and valid interview related to CF
## 1044 100002516 Address Complete and valid interview related to CF
## 1045 100002518 Address Complete and valid interview related to CF
## 1046 100002523 Address Complete and valid interview related to CF
## 1047 100002524 Address Complete and valid interview related to CF
## 1048 100002525 Address Complete and valid interview related to CF
## 1049 100002526 Address Complete and valid interview related to CF
## 1050 100002530 Address Complete and valid interview related to CF
## 1051 100002540 Address Complete and valid interview related to CF
## 1052 100002541 Address Complete and valid interview related to CF
## 1053 100002542 Address Complete and valid interview related to CF
## 1054 100002543 Address Complete and valid interview related to CF
## 1055 100002546 Address Complete and valid interview related to CF
## 1056 100002548 Address Complete and valid interview related to CF
## 1057 100002554 Address Complete and valid interview related to CF
## 1058 100002555 Address Complete and valid interview related to CF
## 1059 100002556 Address Complete and valid interview related to CF
## 1060 100002557 Address Complete and valid interview related to CF
## 1061 100002559 Address Complete and valid interview related to CF
## 1062 100002560 Address Complete and valid interview related to CF
## 1063 100002561 Address Complete and valid interview related to CF
## 1064 100002564 Address Complete and valid interview related to CF
## 1065 100002570 Address Complete and valid interview related to CF
## 1066 100002572 Address Complete and valid interview related to CF
## 1067 100002573 Address Complete and valid interview related to CF
## 1068 100002574 Address Complete and valid interview related to CF
## 1069 100002576 Address Complete and valid interview related to CF
## 1070 100002577 Address Complete and valid interview related to CF
## 1071 100002579 Address Complete and valid interview related to CF
## 1072 100002583 Address Complete and valid interview related to CF
## 1073 100002584 Address Complete and valid interview related to CF
## 1074 100002585 Address Complete and valid interview related to CF
## 1075 100002588 Address Complete and valid interview related to CF
## 1076 100002590 Address Complete and valid interview related to CF
## 1077 100002594 Address Complete and valid interview related to CF
## 1078 100002595 Address Complete and valid interview related to CF
## 1079 100002599 Address Complete and valid interview related to CF
## 1080 100002602 Address Complete and valid interview related to CF
## 1081 100002604 Address Complete and valid interview related to CF
## 1082 100002605 Address Complete and valid interview related to CF
## 1083 100002606 Address Complete and valid interview related to CF
## 1084 100002613 Address Complete and valid interview related to CF
## 1085 100002614 Address Complete and valid interview related to CF
## 1086 100002617 Address Complete and valid interview related to CF
## 1087 100002618 Address Complete and valid interview related to CF
## 1088 100002620 Address Complete and valid interview related to CF
## 1089 100002623 Address Complete and valid interview related to CF
## 1090 100002624 Address Complete and valid interview related to CF
## 1091 100002626 Address Complete and valid interview related to CF
## 1092 100002630 Address Complete and valid interview related to CF
## 1093 100002631 Address Complete and valid interview related to CF
## 1094 100002632 Address Complete and valid interview related to CF
## 1095 100002633 Address Complete and valid interview related to CF
## 1096 100002634 Address Complete and valid interview related to CF
## 1097 100002636 Address Complete and valid interview related to CF
## 1098 100002638 Address Complete and valid interview related to CF
## 1099 100002645 Address Complete and valid interview related to CF
## 1100 100002647 Address Complete and valid interview related to CF
## 1101 100002650 Address Complete and valid interview related to CF
## 1102 100002651 Address Complete and valid interview related to CF
## 1103 100002655 Address Complete and valid interview related to CF
## 1104 100002656 Address Complete and valid interview related to CF
## 1105 100002660 Address Complete and valid interview related to CF
## 1106 100002661 Address Complete and valid interview related to CF
## 1107 100002666 Address Complete and valid interview related to CF
## 1108 100002668 Address Complete and valid interview related to CF
## 1109 100002672 Address Complete and valid interview related to CF
## 1110 100002673 Address Complete and valid interview related to CF
## 1111 100002674 Address Complete and valid interview related to CF
## 1112 100002676 Address Complete and valid interview related to CF
## 1113 100002680 Address Complete and valid interview related to CF
## 1114 100002681 Address Complete and valid interview related to CF
## 1115 100002686 Address Complete and valid interview related to CF
## 1116 100002687 Address Complete and valid interview related to CF
## 1117 100002692 Address Complete and valid interview related to CF
## 1118 100002696 Address Complete and valid interview related to CF
## 1119 100002702 Address Complete and valid interview related to CF
## 1120 100002704 Address Complete and valid interview related to CF
## 1121 100002705 Address Complete and valid interview related to CF
## 1122 100002710 Address Complete and valid interview related to CF
## 1123 100002712 Address Complete and valid interview related to CF
## 1124 100002715 Address Complete and valid interview related to CF
## 1125 100002716 Address Complete and valid interview related to CF
## 1126 100002717 Address Complete and valid interview related to CF
## 1127 100002721 Address Complete and valid interview related to CF
## 1128 100002722 Address Complete and valid interview related to CF
## 1129 100002723 Address Complete and valid interview related to CF
## 1130 100002727 Address Complete and valid interview related to CF
## 1131 100002728 Address Complete and valid interview related to CF
## 1132 100002729 Address Complete and valid interview related to CF
## 1133 100002732 Address Complete and valid interview related to CF
## 1134 100002735 Address Complete and valid interview related to CF
## 1135 100002743 Address Complete and valid interview related to CF
## 1136 100002745 Address Complete and valid interview related to CF
## 1137 100002749 Address Complete and valid interview related to CF
## 1138 100002752 Address Complete and valid interview related to CF
## 1139 100002756 Address Complete and valid interview related to CF
## 1140 100002760 Address Complete and valid interview related to CF
## 1141 100002762 Address Complete and valid interview related to CF
## 1142 100002764 Address Complete and valid interview related to CF
## 1143 100002771 Address Complete and valid interview related to CF
## 1144 100002772 Address Complete and valid interview related to CF
## 1145 100002774 Address Complete and valid interview related to CF
## 1146 100002776 Address Complete and valid interview related to CF
## 1147 100002777 Address Complete and valid interview related to CF
## 1148 100002779 Address Complete and valid interview related to CF
## 1149 100002780 Address Complete and valid interview related to CF
## 1150 100002785 Address Complete and valid interview related to CF
## 1151 100002787 Address Complete and valid interview related to CF
## 1152 100002790 Address Complete and valid interview related to CF
## 1153 100002794 Address Complete and valid interview related to CF
## 1154 100002797 Address Complete and valid interview related to CF
## 1155 100002799 Address Complete and valid interview related to CF
## 1156 100002800 Address Complete and valid interview related to CF
## 1157 100002801 Address Complete and valid interview related to CF
## 1158 100002802 Address Complete and valid interview related to CF
## 1159 100002804 Address Complete and valid interview related to CF
## 1160 100002805 Address Complete and valid interview related to CF
## 1161 100002808 Address Complete and valid interview related to CF
## 1162 100002811 Address Complete and valid interview related to CF
## 1163 100002815 Address Complete and valid interview related to CF
## 1164 100002816 Address Complete and valid interview related to CF
## 1165 100002817 Address Complete and valid interview related to CF
## 1166 100002819 Address Complete and valid interview related to CF
## 1167 100002823 Address Complete and valid interview related to CF
## 1168 100002824 Address Complete and valid interview related to CF
## 1169 100002826 Address Complete and valid interview related to CF
## 1170 100002827 Address Complete and valid interview related to CF
## 1171 100002831 Address Complete and valid interview related to CF
## 1172 100002832 Address Complete and valid interview related to CF
## 1173 100002833 Address Complete and valid interview related to CF
## 1174 100002834 Address Complete and valid interview related to CF
## 1175 100002836 Address Complete and valid interview related to CF
## 1176 100002838 Address Complete and valid interview related to CF
## 1177 100002840 Address Complete and valid interview related to CF
## 1178 100002845 Address Complete and valid interview related to CF
## 1179 100002848 Address Complete and valid interview related to CF
## 1180 100002850 Address Complete and valid interview related to CF
## 1181 100002852 Address Complete and valid interview related to CF
## 1182 100002853 Address Complete and valid interview related to CF
## 1183 100002857 Address Complete and valid interview related to CF
## 1184 100002859 Address Complete and valid interview related to CF
## 1185 100002863 Address Complete and valid interview related to CF
## 1186 100002865 Address Complete and valid interview related to CF
## 1187 100002866 Address Complete and valid interview related to CF
## 1188 100002868 Address Complete and valid interview related to CF
## 1189 100002869 Address Complete and valid interview related to CF
## 1190 100002873 Address Complete and valid interview related to CF
## 1191 100002874 Address Complete and valid interview related to CF
## 1192 100002878 Address Complete and valid interview related to CF
## 1193 100002889 Address Complete and valid interview related to CF
## 1194 100002893 Address Complete and valid interview related to CF
## 1195 100002897 Address Complete and valid interview related to CF
## 1196 100002901 Address Complete and valid interview related to CF
## 1197 100002902 Address Complete and valid interview related to CF
## 1198 100002906 Address Complete and valid interview related to CF
## 1199 100002908 Address Complete and valid interview related to CF
## 1200 100002912 Address Complete and valid interview related to CF
## 1201 100002913 Address Complete and valid interview related to CF
## 1202 100002914 Address Complete and valid interview related to CF
## 1203 100002917 Address Complete and valid interview related to CF
## 1204 100002920 Address Complete and valid interview related to CF
## 1205 100002921 Address Complete and valid interview related to CF
## 1206 100002923 Address Complete and valid interview related to CF
## 1207 100002924 Address Complete and valid interview related to CF
## 1208 100002927 Address Complete and valid interview related to CF
## 1209 100002930 Address Complete and valid interview related to CF
## 1210 100002934 Address Complete and valid interview related to CF
## 1211 100002935 Address Complete and valid interview related to CF
## 1212 100002936 Address Complete and valid interview related to CF
## 1213 100002937 Address Complete and valid interview related to CF
## 1214 100002941 Address Complete and valid interview related to CF
## 1215 100002944 Address Complete and valid interview related to CF
## 1216 100002946 Address Complete and valid interview related to CF
## 1217 100002950 Address Complete and valid interview related to CF
## 1218 100002953 Address Complete and valid interview related to CF
## 1219 100002955 Address Complete and valid interview related to CF
## 1220 100002961 Address Complete and valid interview related to CF
## 1221 100002962 Address Complete and valid interview related to CF
## 1222 100002963 Address Complete and valid interview related to CF
## 1223 100002964 Address Complete and valid interview related to CF
## 1224 100002965 Address Complete and valid interview related to CF
## 1225 100002970 Address Complete and valid interview related to CF
## 1226 100002972 Address Complete and valid interview related to CF
## 1227 100002974 Address Complete and valid interview related to CF
## 1228 100002976 Address Complete and valid interview related to CF
## 1229 100002980 Address Complete and valid interview related to CF
## 1230 100002984 Address Complete and valid interview related to CF
## 1231 100002986 Address Complete and valid interview related to CF
## 1232 100002987 Address Complete and valid interview related to CF
## 1233 100002991 Address Complete and valid interview related to CF
## 1234 100002992 Address Complete and valid interview related to CF
## 1235 100002998 Address Complete and valid interview related to CF
## 1236 100003000 Address Complete and valid interview related to CF
## 1237 100003001 Address Complete and valid interview related to CF
## 1238 100003002 Address Complete and valid interview related to CF
## 1239 100003003 Address Complete and valid interview related to CF
## 1240 100003004 Address Complete and valid interview related to CF
## 1241 100003005 Address Complete and valid interview related to CF
## 1242 100003010 Address Complete and valid interview related to CF
## 1243 100003013 Address Complete and valid interview related to CF
## 1244 100003014 Address Complete and valid interview related to CF
## 1245 100003015 Address Complete and valid interview related to CF
## 1246 100003017 Address Complete and valid interview related to CF
## 1247 100003018 Address Complete and valid interview related to CF
## 1248 100003019 Address Complete and valid interview related to CF
## 1249 100003020 Address Complete and valid interview related to CF
## 1250 100003022 Address Complete and valid interview related to CF
## 1251 100003025 Address Complete and valid interview related to CF
## 1252 100003031 Address Complete and valid interview related to CF
## 1253 100003036 Address Complete and valid interview related to CF
## 1254 100003038 Address Complete and valid interview related to CF
## 1255 100003041 Address Complete and valid interview related to CF
## 1256 100003042 Address Complete and valid interview related to CF
## 1257 100003044 Address Complete and valid interview related to CF
## 1258 100003045 Address Complete and valid interview related to CF
## 1259 100003046 Address Complete and valid interview related to CF
## 1260 100003047 Address Complete and valid interview related to CF
## 1261 100003052 Address Complete and valid interview related to CF
## 1262 100003054 Address Complete and valid interview related to CF
## 1263 100003056 Address Complete and valid interview related to CF
## 1264 100003058 Address Complete and valid interview related to CF
## 1265 100003064 Address Complete and valid interview related to CF
## 1266 100003069 Address Complete and valid interview related to CF
## 1267 100003071 Address Complete and valid interview related to CF
## 1268 100003072 Address Complete and valid interview related to CF
## 1269 100003073 Address Complete and valid interview related to CF
## 1270 100003074 Address Complete and valid interview related to CF
## 1271 100003075 Address Complete and valid interview related to CF
## 1272 100003076 Address Complete and valid interview related to CF
## 1273 100003077 Address Complete and valid interview related to CF
## 1274 100003078 Address Complete and valid interview related to CF
## 1275 100003079 Address Complete and valid interview related to CF
## 1276 100003084 Address Complete and valid interview related to CF
## 1277 100003087 Address Complete and valid interview related to CF
## 1278 100003088 Address Complete and valid interview related to CF
## 1279 100003090 Address Complete and valid interview related to CF
## 1280 100003092 Address Complete and valid interview related to CF
## 1281 100003093 Address Complete and valid interview related to CF
## 1282 100003094 Address Complete and valid interview related to CF
## 1283 100003098 Address Complete and valid interview related to CF
## 1284 100003099 Address Complete and valid interview related to CF
## 1285 100003101 Address Complete and valid interview related to CF
## 1286 100003103 Address Complete and valid interview related to CF
## 1287 100003108 Address Complete and valid interview related to CF
## 1288 100003109 Address Complete and valid interview related to CF
## 1289 100003112 Address Complete and valid interview related to CF
## 1290 100003113 Address Complete and valid interview related to CF
## 1291 100003114 Address Complete and valid interview related to CF
## 1292 100003115 Address Complete and valid interview related to CF
## 1293 100003116 Address Complete and valid interview related to CF
## 1294 100003118 Address Complete and valid interview related to CF
## 1295 100003119 Address Complete and valid interview related to CF
## 1296 100003124 Address Complete and valid interview related to CF
## 1297 100003128 Address Complete and valid interview related to CF
## 1298 100003130 Address Complete and valid interview related to CF
## 1299 100003136 Address Complete and valid interview related to CF
## 1300 100003138 Address Complete and valid interview related to CF
## 1301 100003140 Address Complete and valid interview related to CF
## 1302 100003141 Address Complete and valid interview related to CF
## 1303 100003142 Address Complete and valid interview related to CF
## 1304 100003143 Address Complete and valid interview related to CF
## 1305 100003145 Address Complete and valid interview related to CF
## 1306 100003146 Address Complete and valid interview related to CF
## 1307 100003150 Address Complete and valid interview related to CF
## 1308 100003151 Address Complete and valid interview related to CF
## 1309 100003152 Address Complete and valid interview related to CF
## 1310 100003154 Address Complete and valid interview related to CF
## 1311 100003159 Address Complete and valid interview related to CF
## 1312 100003161 Address Complete and valid interview related to CF
## 1313 100003162 Address Complete and valid interview related to CF
## 1314 100003163 Address Complete and valid interview related to CF
## 1315 100003165 Address Complete and valid interview related to CF
## 1316 100003166 Address Complete and valid interview related to CF
## 1317 100003167 Address Complete and valid interview related to CF
## 1318 100003175 Address Complete and valid interview related to CF
## 1319 100003177 Address Complete and valid interview related to CF
## 1320 100003180 Address Complete and valid interview related to CF
## 1321 100003181 Address Complete and valid interview related to CF
## 1322 100003183 Address Complete and valid interview related to CF
## 1323 100003184 Address Complete and valid interview related to CF
## 1324 100003188 Address Complete and valid interview related to CF
## 1325 100003189 Address Complete and valid interview related to CF
## 1326 100003192 Address Complete and valid interview related to CF
## 1327 100003194 Address Complete and valid interview related to CF
## 1328 100003196 Address Complete and valid interview related to CF
## 1329 100003197 Address Complete and valid interview related to CF
## 1330 100003201 Address Complete and valid interview related to CF
## 1331 100003206 Address Complete and valid interview related to CF
## 1332 100003208 Address Complete and valid interview related to CF
## 1333 100003212 Address Complete and valid interview related to CF
## 1334 100003216 Address Complete and valid interview related to CF
## 1335 100003217 Address Complete and valid interview related to CF
## 1336 100003221 Address Complete and valid interview related to CF
## 1337 100003222 Address Complete and valid interview related to CF
## 1338 100003223 Address Complete and valid interview related to CF
## 1339 100003224 Address Complete and valid interview related to CF
## 1340 100003225 Address Complete and valid interview related to CF
## 1341 100003227 Address Complete and valid interview related to CF
## 1342 100003228 Address Complete and valid interview related to CF
## 1343 100003230 Address Complete and valid interview related to CF
## 1344 100003231 Address Complete and valid interview related to CF
## 1345 100003238 Address Complete and valid interview related to CF
## 1346 100003246 Address Complete and valid interview related to CF
## 1347 100003250 Address Complete and valid interview related to CF
## 1348 100003251 Address Complete and valid interview related to CF
## 1349 100003253 Address Complete and valid interview related to CF
## 1350 100003255 Address Complete and valid interview related to CF
## 1351 100003261 Address Complete and valid interview related to CF
## 1352 100003263 Address Complete and valid interview related to CF
## 1353 100003267 Address Complete and valid interview related to CF
## 1354 100003269 Address Complete and valid interview related to CF
## 1355 100003270 Address Complete and valid interview related to CF
## 1356 100003273 Address Complete and valid interview related to CF
## 1357 100003283 Address Complete and valid interview related to CF
## 1358 100003288 Address Complete and valid interview related to CF
## 1359 100003290 Address Complete and valid interview related to CF
## 1360 100003291 Address Complete and valid interview related to CF
## 1361 100003297 Address Complete and valid interview related to CF
## 1362 100003298 Address Complete and valid interview related to CF
## 1363 100003301 Address Complete and valid interview related to CF
## 1364 100003302 Address Complete and valid interview related to CF
## 1365 100003305 Address Complete and valid interview related to CF
## 1366 100003306 Address Complete and valid interview related to CF
## 1367 100003307 Address Complete and valid interview related to CF
## 1368 100003309 Address Complete and valid interview related to CF
## 1369 100003311 Address Complete and valid interview related to CF
## 1370 100003312 Address Complete and valid interview related to CF
## 1371 100003313 Address Complete and valid interview related to CF
## 1372 100003319 Address Complete and valid interview related to CF
## 1373 100003323 Address Complete and valid interview related to CF
## 1374 100003326 Address Complete and valid interview related to CF
## 1375 100003329 Address Complete and valid interview related to CF
## 1376 100003332 Address Complete and valid interview related to CF
## 1377 100003333 Address Complete and valid interview related to CF
## 1378 100003335 Address Complete and valid interview related to CF
## 1379 100003337 Address Complete and valid interview related to CF
## 1380 100003339 Address Complete and valid interview related to CF
## 1381 100003344 Address Complete and valid interview related to CF
## 1382 100003345 Address Complete and valid interview related to CF
## 1383 100003346 Address Complete and valid interview related to CF
## 1384 100003351 Address Complete and valid interview related to CF
## 1385 100003352 Address Complete and valid interview related to CF
## 1386 100003359 Address Complete and valid interview related to CF
## 1387 100003362 Address Complete and valid interview related to CF
## 1388 100003365 Address Complete and valid interview related to CF
## 1389 100003370 Address Complete and valid interview related to CF
## 1390 100003371 Address Complete and valid interview related to CF
## 1391 100003376 Address Complete and valid interview related to CF
## 1392 100003382 Address Complete and valid interview related to CF
## 1393 100003385 Address Complete and valid interview related to CF
## 1394 100003386 Address Complete and valid interview related to CF
## 1395 100003387 Address Complete and valid interview related to CF
## 1396 100003389 Address Complete and valid interview related to CF
## 1397 100003390 Address Complete and valid interview related to CF
## 1398 100003391 Address Complete and valid interview related to CF
## 1399 100003394 Address Complete and valid interview related to CF
## 1400 100003395 Address Complete and valid interview related to CF
## 1401 100003397 Address Complete and valid interview related to CF
## 1402 100003406 Address Complete and valid interview related to CF
## 1403 100003408 Address Complete and valid interview related to CF
## 1404 100003410 Address Complete and valid interview related to CF
## 1405 100003412 Address Complete and valid interview related to CF
## 1406 100003417 Address Complete and valid interview related to CF
## 1407 100003420 Address Complete and valid interview related to CF
## 1408 100003422 Address Complete and valid interview related to CF
## 1409 100003423 Address Complete and valid interview related to CF
## 1410 100003427 Address Complete and valid interview related to CF
## 1411 100003431 Address Complete and valid interview related to CF
## 1412 100003432 Address Complete and valid interview related to CF
## 1413 100003433 Address Complete and valid interview related to CF
## 1414 100003435 Address Complete and valid interview related to CF
## 1415 100003437 Address Complete and valid interview related to CF
## 1416 100003441 Address Complete and valid interview related to CF
## 1417 100003446 Address Complete and valid interview related to CF
## 1418 100003447 Address Complete and valid interview related to CF
## 1419 100003450 Address Complete and valid interview related to CF
## 1420 100003451 Address Complete and valid interview related to CF
## 1421 100003452 Address Complete and valid interview related to CF
## 1422 100003454 Address Complete and valid interview related to CF
## 1423 100003455 Address Complete and valid interview related to CF
## 1424 100003456 Address Complete and valid interview related to CF
## 1425 100003462 Address Complete and valid interview related to CF
## 1426 100003463 Address Complete and valid interview related to CF
## 1427 100003464 Address Complete and valid interview related to CF
## 1428 100003465 Address Complete and valid interview related to CF
## 1429 100003466 Address Complete and valid interview related to CF
## 1430 100003467 Address Complete and valid interview related to CF
## 1431 100003468 Address Complete and valid interview related to CF
## 1432 100003472 Address Complete and valid interview related to CF
## 1433 100003473 Address Complete and valid interview related to CF
## 1434 100003475 Address Complete and valid interview related to CF
## 1435 100003476 Address Complete and valid interview related to CF
## 1436 100003481 Address Complete and valid interview related to CF
## 1437 100003484 Address Complete and valid interview related to CF
## 1438 100003485 Address Complete and valid interview related to CF
## 1439 100003487 Address Complete and valid interview related to CF
## 1440 100003488 Address Complete and valid interview related to CF
## 1441 100003491 Address Complete and valid interview related to CF
## 1442 100003496 Address Complete and valid interview related to CF
## 1443 100003497 Address Complete and valid interview related to CF
## 1444 100003498 Address Complete and valid interview related to CF
## 1445 100003501 Address Complete and valid interview related to CF
## 1446 100003502 Address Complete and valid interview related to CF
## 1447 100003503 Address Complete and valid interview related to CF
## 1448 100003505 Address Complete and valid interview related to CF
## 1449 100003507 Address Complete and valid interview related to CF
## 1450 100003508 Address Complete and valid interview related to CF
## 1451 100003509 Address Complete and valid interview related to CF
## 1452 100003512 Address Complete and valid interview related to CF
## 1453 100003519 Address Complete and valid interview related to CF
## 1454 100003524 Address Complete and valid interview related to CF
## 1455 100003527 Address Complete and valid interview related to CF
## 1456 100003529 Address Complete and valid interview related to CF
## 1457 100003530 Address Complete and valid interview related to CF
## 1458 100003534 Address Complete and valid interview related to CF
## 1459 100003535 Address Complete and valid interview related to CF
## 1460 100003538 Address Complete and valid interview related to CF
## 1461 100003541 Address Complete and valid interview related to CF
## 1462 100003546 Address Complete and valid interview related to CF
## 1463 100003547 Address Complete and valid interview related to CF
## 1464 100003551 Address Complete and valid interview related to CF
## 1465 100003553 Address Complete and valid interview related to CF
## 1466 100003557 Address Complete and valid interview related to CF
## 1467 100003559 Address Complete and valid interview related to CF
## 1468 100003562 Address Complete and valid interview related to CF
## 1469 100003565 Address Complete and valid interview related to CF
## 1470 100003566 Address Complete and valid interview related to CF
## 1471 100003569 Address Complete and valid interview related to CF
## 1472 100003570 Address Complete and valid interview related to CF
## 1473 100003574 Address Complete and valid interview related to CF
## 1474 100003576 Address Complete and valid interview related to CF
## 1475 100003577 Address Complete and valid interview related to CF
## 1476 100003581 Address Complete and valid interview related to CF
## 1477 100003584 Address Complete and valid interview related to CF
## 1478 100003586 Address Complete and valid interview related to CF
## 1479 100003587 Address Complete and valid interview related to CF
## 1480 100003594 Address Complete and valid interview related to CF
## 1481 100003595 Address Complete and valid interview related to CF
## 1482 100003597 Address Complete and valid interview related to CF
## 1483 100003599 Address Complete and valid interview related to CF
## 1484 100003600 Address Complete and valid interview related to CF
## 1485 100003603 Address Complete and valid interview related to CF
## 1486 100003605 Address Complete and valid interview related to CF
## 1487 100003610 Address Complete and valid interview related to CF
## 1488 100003612 Address Complete and valid interview related to CF
## 1489 100003617 Address Complete and valid interview related to CF
## 1490 100003619 Address Complete and valid interview related to CF
## 1491 100003622 Address Complete and valid interview related to CF
## 1492 100003623 Address Complete and valid interview related to CF
## 1493 100003626 Address Complete and valid interview related to CF
## 1494 100003627 Address Complete and valid interview related to CF
## 1495 100003628 Address Complete and valid interview related to CF
## 1496 100003631 Address Complete and valid interview related to CF
## 1497 100003632 Address Complete and valid interview related to CF
## 1498 100003633 Address Complete and valid interview related to CF
## 1499 100003635 Address Complete and valid interview related to CF
## 1500 100003636 Address Complete and valid interview related to CF
## 1501 100003637 Address Complete and valid interview related to CF
## 1502 100003641 Address Complete and valid interview related to CF
## 1503 100003643 Address Complete and valid interview related to CF
## 1504 100003647 Address Complete and valid interview related to CF
## 1505 100003652 Address Complete and valid interview related to CF
## 1506 100003653 Address Complete and valid interview related to CF
## 1507 100003659 Address Complete and valid interview related to CF
## 1508 100003661 Address Complete and valid interview related to CF
## 1509 100003662 Address Complete and valid interview related to CF
## 1510 100003667 Address Complete and valid interview related to CF
## 1511 100003669 Address Complete and valid interview related to CF
## 1512 100003672 Address Complete and valid interview related to CF
## 1513 100003675 Address Complete and valid interview related to CF
## 1514 100003693 Address Complete and valid interview related to CF
## 1515 100003694 Address Complete and valid interview related to CF
## 1516 100003696 Address Complete and valid interview related to CF
## 1517 100003699 Address Complete and valid interview related to CF
## 1518 100003703 Address Complete and valid interview related to CF
## 1519 100003710 Address Complete and valid interview related to CF
## 1520 100003711 Address Complete and valid interview related to CF
## 1521 100003715 Address Complete and valid interview related to CF
## 1522 100003719 Address Complete and valid interview related to CF
## 1523 100003720 Address Complete and valid interview related to CF
## 1524 100003721 Address Complete and valid interview related to CF
## 1525 100003724 Address Complete and valid interview related to CF
## 1526 100003725 Address Complete and valid interview related to CF
## 1527 100003726 Address Complete and valid interview related to CF
## 1528 100003727 Address Complete and valid interview related to CF
## 1529 100003729 Address Complete and valid interview related to CF
## 1530 100003730 Address Complete and valid interview related to CF
## 1531 100003733 Address Complete and valid interview related to CF
## 1532 100003736 Address Complete and valid interview related to CF
## 1533 100003737 Address Complete and valid interview related to CF
## 1534 100003738 Address Complete and valid interview related to CF
## 1535 100003740 Address Complete and valid interview related to CF
## 1536 100003741 Address Complete and valid interview related to CF
## 1537 100003742 Address Complete and valid interview related to CF
## 1538 100003746 Address Complete and valid interview related to CF
## 1539 100003747 Address Complete and valid interview related to CF
## 1540 100003748 Address Complete and valid interview related to CF
## 1541 100003749 Address Complete and valid interview related to CF
## 1542 100003751 Address Complete and valid interview related to CF
## 1543 100003756 Address Complete and valid interview related to CF
## 1544 100003758 Address Complete and valid interview related to CF
## 1545 100003759 Address Complete and valid interview related to CF
## 1546 100003763 Address Complete and valid interview related to CF
## 1547 100003764 Address Complete and valid interview related to CF
## 1548 100003765 Address Complete and valid interview related to CF
## 1549 100003766 Address Complete and valid interview related to CF
## 1550 100003767 Address Complete and valid interview related to CF
## 1551 100003768 Address Complete and valid interview related to CF
## 1552 100003771 Address Complete and valid interview related to CF
## 1553 100003773 Address Complete and valid interview related to CF
## 1554 100003774 Address Complete and valid interview related to CF
## 1555 100003780 Address Complete and valid interview related to CF
## 1556 100003781 Address Complete and valid interview related to CF
## 1557 100003782 Address Complete and valid interview related to CF
## 1558 100003783 Address Complete and valid interview related to CF
## 1559 100003784 Address Complete and valid interview related to CF
## 1560 100003786 Address Complete and valid interview related to CF
## 1561 100003788 Address Complete and valid interview related to CF
## 1562 100003791 Address Complete and valid interview related to CF
## 1563 100003794 Address Complete and valid interview related to CF
## 1564 100003795 Address Complete and valid interview related to CF
## 1565 100003800 Address Complete and valid interview related to CF
## 1566 100003802 Address Complete and valid interview related to CF
## 1567 100003808 Address Complete and valid interview related to CF
## 1568 100003810 Address Complete and valid interview related to CF
## 1569 100003811 Address Complete and valid interview related to CF
## 1570 100003815 Address Complete and valid interview related to CF
## 1571 100003816 Address Complete and valid interview related to CF
## 1572 100003817 Address Complete and valid interview related to CF
## 1573 100003818 Address Complete and valid interview related to CF
## 1574 100003820 Address Complete and valid interview related to CF
## 1575 100003826 Address Complete and valid interview related to CF
## 1576 100003838 Address Complete and valid interview related to CF
## 1577 100003839 Address Complete and valid interview related to CF
## 1578 100003840 Address Complete and valid interview related to CF
## 1579 100003842 Address Complete and valid interview related to CF
## 1580 100003845 Address Complete and valid interview related to CF
## 1581 100003849 Address Complete and valid interview related to CF
## 1582 100003858 Address Complete and valid interview related to CF
## 1583 100003860 Address Complete and valid interview related to CF
## 1584 100003861 Address Complete and valid interview related to CF
## 1585 100003863 Address Complete and valid interview related to CF
## 1586 100003864 Address Complete and valid interview related to CF
## 1587 100003870 Address Complete and valid interview related to CF
## 1588 100003871 Address Complete and valid interview related to CF
## 1589 100003873 Address Complete and valid interview related to CF
## 1590 100003874 Address Complete and valid interview related to CF
## 1591 100003882 Address Complete and valid interview related to CF
## 1592 100003888 Address Complete and valid interview related to CF
## 1593 100003891 Address Complete and valid interview related to CF
## 1594 100003892 Address Complete and valid interview related to CF
## 1595 100003894 Address Complete and valid interview related to CF
## 1596 100003897 Address Complete and valid interview related to CF
## 1597 100003898 Address Complete and valid interview related to CF
## 1598 100003901 Address Complete and valid interview related to CF
## 1599 100003903 Address Complete and valid interview related to CF
## 1600 100003904 Address Complete and valid interview related to CF
## 1601 100003910 Address Complete and valid interview related to CF
## 1602 100003913 Address Complete and valid interview related to CF
## 1603 100003917 Address Complete and valid interview related to CF
## 1604 100003923 Address Complete and valid interview related to CF
## 1605 100003925 Address Complete and valid interview related to CF
## 1606 100003927 Address Complete and valid interview related to CF
## 1607 100003928 Address Complete and valid interview related to CF
## 1608 100003930 Address Complete and valid interview related to CF
## 1609 100003932 Address Complete and valid interview related to CF
## 1610 100003936 Address Complete and valid interview related to CF
## 1611 100003937 Address Complete and valid interview related to CF
## 1612 100003942 Address Complete and valid interview related to CF
## 1613 100003943 Address Complete and valid interview related to CF
## 1614 100003944 Address Complete and valid interview related to CF
## 1615 100003946 Address Complete and valid interview related to CF
## 1616 100003948 Address Complete and valid interview related to CF
## 1617 100003950 Address Complete and valid interview related to CF
## 1618 100003951 Address Complete and valid interview related to CF
## 1619 100003952 Address Complete and valid interview related to CF
## 1620 100003956 Address Complete and valid interview related to CF
## 1621 100003957 Address Complete and valid interview related to CF
## 1622 100003959 Address Complete and valid interview related to CF
## 1623 100003961 Address Complete and valid interview related to CF
## 1624 100003962 Address Complete and valid interview related to CF
## 1625 100003967 Address Complete and valid interview related to CF
## 1626 100003969 Address Complete and valid interview related to CF
## 1627 100003970 Address Complete and valid interview related to CF
## 1628 100003972 Address Complete and valid interview related to CF
## 1629 100003973 Address Complete and valid interview related to CF
## 1630 100003976 Address Complete and valid interview related to CF
## 1631 100003977 Address Complete and valid interview related to CF
## 1632 100003979 Address Complete and valid interview related to CF
## 1633 100003980 Address Complete and valid interview related to CF
## 1634 100003981 Address Complete and valid interview related to CF
## 1635 100003983 Address Complete and valid interview related to CF
## 1636 100003986 Address Complete and valid interview related to CF
## 1637 100003987 Address Complete and valid interview related to CF
## 1638 100003988 Address Complete and valid interview related to CF
## 1639 100003991 Address Complete and valid interview related to CF
## 1640 100003993 Address Complete and valid interview related to CF
## 1641 100003995 Address Complete and valid interview related to CF
## 1642 100004001 Address Complete and valid interview related to CF
## 1643 100004004 Address Complete and valid interview related to CF
## 1644 100004006 Address Complete and valid interview related to CF
## 1645 100004011 Address Complete and valid interview related to CF
## 1646 100004016 Address Complete and valid interview related to CF
## 1647 100004019 Address Complete and valid interview related to CF
## 1648 100004021 Address Complete and valid interview related to CF
## 1649 100004023 Address Complete and valid interview related to CF
## 1650 100004027 Address Complete and valid interview related to CF
## 1651 100004029 Address Complete and valid interview related to CF
## 1652 100004030 Address Complete and valid interview related to CF
## 1653 100004038 Address Complete and valid interview related to CF
## 1654 100004040 Address Complete and valid interview related to CF
## 1655 100004045 Address Complete and valid interview related to CF
## 1656 100004047 Address Complete and valid interview related to CF
## 1657 100004048 Address Complete and valid interview related to CF
## 1658 100004049 Address Complete and valid interview related to CF
## 1659 100004050 Address Complete and valid interview related to CF
## 1660 100004051 Address Complete and valid interview related to CF
## 1661 100004054 Address Complete and valid interview related to CF
## 1662 100004060 Address Complete and valid interview related to CF
## 1663 100004067 Address Complete and valid interview related to CF
## 1664 100004069 Address Complete and valid interview related to CF
## 1665 100004070 Address Complete and valid interview related to CF
## 1666 100004072 Address Complete and valid interview related to CF
## 1667 100004077 Address Complete and valid interview related to CF
## 1668 100004078 Address Complete and valid interview related to CF
## 1669 100004082 Address Complete and valid interview related to CF
## 1670 100004083 Address Complete and valid interview related to CF
## 1671 100004089 Address Complete and valid interview related to CF
## 1672 100004092 Address Complete and valid interview related to CF
## 1673 100004094 Address Complete and valid interview related to CF
## 1674 100004098 Address Complete and valid interview related to CF
## 1675 100004099 Address Complete and valid interview related to CF
## 1676 100004102 Address Complete and valid interview related to CF
## 1677 100004103 Address Complete and valid interview related to CF
## 1678 100004106 Address Complete and valid interview related to CF
## 1679 100004107 Address Complete and valid interview related to CF
## 1680 100004108 Address Complete and valid interview related to CF
## 1681 100004111 Address Complete and valid interview related to CF
## 1682 100004116 Address Complete and valid interview related to CF
## 1683 100004117 Address Complete and valid interview related to CF
## 1684 100004119 Address Complete and valid interview related to CF
## 1685 100004121 Address Complete and valid interview related to CF
## 1686 100004127 Address Complete and valid interview related to CF
## 1687 100004129 Address Complete and valid interview related to CF
## 1688 100004135 Address Complete and valid interview related to CF
## 1689 100004136 Address Complete and valid interview related to CF
## 1690 100004144 Address Complete and valid interview related to CF
## 1691 100004145 Address Complete and valid interview related to CF
## 1692 100004147 Address Complete and valid interview related to CF
## 1693 100004150 Address Complete and valid interview related to CF
## 1694 100004152 Address Complete and valid interview related to CF
## 1695 100004158 Address Complete and valid interview related to CF
## 1696 100004159 Address Complete and valid interview related to CF
## 1697 100004160 Address Complete and valid interview related to CF
## 1698 100004161 Address Complete and valid interview related to CF
## 1699 100004163 Address Complete and valid interview related to CF
## 1700 100004165 Address Complete and valid interview related to CF
## 1701 100004166 Address Complete and valid interview related to CF
## 1702 100004167 Address Complete and valid interview related to CF
## 1703 100004173 Address Complete and valid interview related to CF
## 1704 100004175 Address Complete and valid interview related to CF
## 1705 100004177 Address Complete and valid interview related to CF
## 1706 100004182 Address Complete and valid interview related to CF
## 1707 100004183 Address Complete and valid interview related to CF
## 1708 100004185 Address Complete and valid interview related to CF
## 1709 100004187 Address Complete and valid interview related to CF
## 1710 100004191 Address Complete and valid interview related to CF
## 1711 100004193 Address Complete and valid interview related to CF
## 1712 100004194 Address Complete and valid interview related to CF
## 1713 100004196 Address Complete and valid interview related to CF
## 1714 100004202 Address Complete and valid interview related to CF
## 1715 100004204 Address Complete and valid interview related to CF
## 1716 100004206 Address Complete and valid interview related to CF
## 1717 100004210 Address Complete and valid interview related to CF
## 1718 100004214 Address Complete and valid interview related to CF
## 1719 100004216 Address Complete and valid interview related to CF
## 1720 100004219 Address Complete and valid interview related to CF
## 1721 100004220 Address Complete and valid interview related to CF
## 1722 100004222 Address Complete and valid interview related to CF
## 1723 100004223 Address Complete and valid interview related to CF
## 1724 100004224 Address Complete and valid interview related to CF
## 1725 100004225 Address Complete and valid interview related to CF
## 1726 100004229 Address Complete and valid interview related to CF
## 1727 100004230 Address Complete and valid interview related to CF
## 1728 100004232 Address Complete and valid interview related to CF
## 1729 100004236 Address Complete and valid interview related to CF
## 1730 100004244 Address Complete and valid interview related to CF
## 1731 100004245 Address Complete and valid interview related to CF
## 1732 100004246 Address Complete and valid interview related to CF
## 1733 100004247 Address Complete and valid interview related to CF
## 1734 100004248 Address Complete and valid interview related to CF
## 1735 100004249 Address Complete and valid interview related to CF
## 1736 100004252 Address Complete and valid interview related to CF
## 1737 100004254 Address Complete and valid interview related to CF
## 1738 100004260 Address Complete and valid interview related to CF
## 1739 100004264 Address Complete and valid interview related to CF
## 1740 100004265 Address Complete and valid interview related to CF
## 1741 100004273 Address Complete and valid interview related to CF
## 1742 100004274 Address Complete and valid interview related to CF
## 1743 100004275 Address Complete and valid interview related to CF
## 1744 100004277 Address Complete and valid interview related to CF
## 1745 100004282 Address Complete and valid interview related to CF
## 1746 100004285 Address Complete and valid interview related to CF
## 1747 100004289 Address Complete and valid interview related to CF
## 1748 100004291 Address Complete and valid interview related to CF
## 1749 100004296 Address Complete and valid interview related to CF
## 1750 100004297 Address Complete and valid interview related to CF
## 1751 100004298 Address Complete and valid interview related to CF
## 1752 100004300 Address Complete and valid interview related to CF
## 1753 100004302 Address Complete and valid interview related to CF
## 1754 100004306 Address Complete and valid interview related to CF
## 1755 100004311 Address Complete and valid interview related to CF
## 1756 100004312 Address Complete and valid interview related to CF
## 1757 100004313 Address Complete and valid interview related to CF
## 1758 100004317 Address Complete and valid interview related to CF
## 1759 100004318 Address Complete and valid interview related to CF
## 1760 100004320 Address Complete and valid interview related to CF
## 1761 100004330 Address Complete and valid interview related to CF
## 1762 100004336 Address Complete and valid interview related to CF
## 1763 100004337 Address Complete and valid interview related to CF
## 1764 100004343 Address Complete and valid interview related to CF
## 1765 100004344 Address Complete and valid interview related to CF
## 1766 100004346 Address Complete and valid interview related to CF
## 1767 100004348 Address Complete and valid interview related to CF
## 1768 100004352 Address Complete and valid interview related to CF
## 1769 100004356 Address Complete and valid interview related to CF
## 1770 100004361 Address Complete and valid interview related to CF
## 1771 100004364 Address Complete and valid interview related to CF
## 1772 100004366 Address Complete and valid interview related to CF
## 1773 100004367 Address Complete and valid interview related to CF
## 1774 100004372 Address Complete and valid interview related to CF
## 1775 100004374 Address Complete and valid interview related to CF
## 1776 100004376 Address Complete and valid interview related to CF
## 1777 100004379 Address Complete and valid interview related to CF
## 1778 100004381 Address Complete and valid interview related to CF
## 1779 100004384 Address Complete and valid interview related to CF
## 1780 100004386 Address Complete and valid interview related to CF
## 1781 100004388 Address Complete and valid interview related to CF
## 1782 100004389 Address Complete and valid interview related to CF
## 1783 100004390 Address Complete and valid interview related to CF
## 1784 100004391 Address Complete and valid interview related to CF
## 1785 100004394 Address Complete and valid interview related to CF
## 1786 100004398 Address Complete and valid interview related to CF
## 1787 100004399 Address Complete and valid interview related to CF
## 1788 100004401 Address Complete and valid interview related to CF
## 1789 100004405 Address Complete and valid interview related to CF
## 1790 100004406 Address Complete and valid interview related to CF
## 1791 100004411 Address Complete and valid interview related to CF
## 1792 100004414 Address Complete and valid interview related to CF
## 1793 100004417 Address Complete and valid interview related to CF
## 1794 100004419 Address Complete and valid interview related to CF
## 1795 100004420 Address Complete and valid interview related to CF
## 1796 100004424 Address Complete and valid interview related to CF
## 1797 100004425 Address Complete and valid interview related to CF
## 1798 100004426 Address Complete and valid interview related to CF
## 1799 100004427 Address Complete and valid interview related to CF
## 1800 100004428 Address Complete and valid interview related to CF
## 1801 100004429 Address Complete and valid interview related to CF
## 1802 100004432 Address Complete and valid interview related to CF
## 1803 100004433 Address Complete and valid interview related to CF
## 1804 100004436 Address Complete and valid interview related to CF
## 1805 100004437 Address Complete and valid interview related to CF
## 1806 100004440 Address Complete and valid interview related to CF
## 1807 100004441 Address Complete and valid interview related to CF
## 1808 100004442 Address Complete and valid interview related to CF
## 1809 100004443 Address Complete and valid interview related to CF
## 1810 100004444 Address Complete and valid interview related to CF
## 1811 100004446 Address Complete and valid interview related to CF
## 1812 100004448 Address Complete and valid interview related to CF
## 1813 100004450 Address Complete and valid interview related to CF
## 1814 100004454 Address Complete and valid interview related to CF
## 1815 100004457 Address Complete and valid interview related to CF
## 1816 100004461 Address Complete and valid interview related to CF
## 1817 100004462 Address Complete and valid interview related to CF
## 1818 100004463 Address Complete and valid interview related to CF
## 1819 100004465 Address Complete and valid interview related to CF
## 1820 100004466 Address Complete and valid interview related to CF
## 1821 100004467 Address Complete and valid interview related to CF
## 1822 100004468 Address Complete and valid interview related to CF
## 1823 100004469 Address Complete and valid interview related to CF
## 1824 100004473 Address Complete and valid interview related to CF
## 1825 100004474 Address Complete and valid interview related to CF
## 1826 100004475 Address Complete and valid interview related to CF
## 1827 100004477 Address Complete and valid interview related to CF
## 1828 100004479 Address Complete and valid interview related to CF
## 1829 100004481 Address Complete and valid interview related to CF
## 1830 100004486 Address Complete and valid interview related to CF
## 1831 100004487 Address Complete and valid interview related to CF
## 1832 100004488 Address Complete and valid interview related to CF
## 1833 100004495 Address Complete and valid interview related to CF
## 1834 100004496 Address Complete and valid interview related to CF
## 1835 100004498 Address Complete and valid interview related to CF
## 1836 100004500 Address Complete and valid interview related to CF
## 1837 100004501 Address Complete and valid interview related to CF
## 1838 100004502 Address Complete and valid interview related to CF
## 1839 100004504 Address Complete and valid interview related to CF
## 1840 100004509 Address Complete and valid interview related to CF
## 1841 100004510 Address Complete and valid interview related to CF
## 1842 100004511 Address Complete and valid interview related to CF
## 1843 100004512 Address Complete and valid interview related to CF
## 1844 100004513 Address Complete and valid interview related to CF
## 1845 100004516 Address Complete and valid interview related to CF
## 1846 100004517 Address Complete and valid interview related to CF
## 1847 100004518 Address Complete and valid interview related to CF
## 1848 100004519 Address Complete and valid interview related to CF
## 1849 100004520 Address Complete and valid interview related to CF
## 1850 100004521 Address Complete and valid interview related to CF
## 1851 100004522 Address Complete and valid interview related to CF
## 1852 100004529 Address Complete and valid interview related to CF
## 1853 100004531 Address Complete and valid interview related to CF
## 1854 100004537 Address Complete and valid interview related to CF
## 1855 100004538 Address Complete and valid interview related to CF
## 1856 100004539 Address Complete and valid interview related to CF
## 1857 100004542 Address Complete and valid interview related to CF
## 1858 100004547 Address Complete and valid interview related to CF
## 1859 100004549 Address Complete and valid interview related to CF
## 1860 100004550 Address Complete and valid interview related to CF
## 1861 100004552 Address Complete and valid interview related to CF
## 1862 100004554 Address Complete and valid interview related to CF
## 1863 100004556 Address Complete and valid interview related to CF
## 1864 100004558 Address Complete and valid interview related to CF
## 1865 100004559 Address Complete and valid interview related to CF
## 1866 100004561 Address Complete and valid interview related to CF
## 1867 100004562 Address Complete and valid interview related to CF
## 1868 100004563 Address Complete and valid interview related to CF
## 1869 100004564 Address Complete and valid interview related to CF
## 1870 100004566 Address Complete and valid interview related to CF
## 1871 100004568 Address Complete and valid interview related to CF
## 1872 100004569 Address Complete and valid interview related to CF
## 1873 100004576 Address Complete and valid interview related to CF
## 1874 100004579 Address Complete and valid interview related to CF
## 1875 100004580 Address Complete and valid interview related to CF
## 1876 100004581 Address Complete and valid interview related to CF
## 1877 100004582 Address Complete and valid interview related to CF
## 1878 100004583 Address Complete and valid interview related to CF
## 1879 100004585 Address Complete and valid interview related to CF
## 1880 100004586 Address Complete and valid interview related to CF
## 1881 100004589 Address Complete and valid interview related to CF
## 1882 100004590 Address Complete and valid interview related to CF
## 1883 100004595 Address Complete and valid interview related to CF
## 1884 100004599 Address Complete and valid interview related to CF
## 1885 100004600 Address Complete and valid interview related to CF
## 1886 100004601 Address Complete and valid interview related to CF
## 1887 100004605 Address Complete and valid interview related to CF
## 1888 100004608 Address Complete and valid interview related to CF
## 1889 100004612 Address Complete and valid interview related to CF
## 1890 100004614 Address Complete and valid interview related to CF
## 1891 100004618 Address Complete and valid interview related to CF
## 1892 100004619 Address Complete and valid interview related to CF
## 1893 100004624 Address Complete and valid interview related to CF
## 1894 100004625 Address Complete and valid interview related to CF
## 1895 100004628 Address Complete and valid interview related to CF
## 1896 100004629 Address Complete and valid interview related to CF
## 1897 100004634 Address Complete and valid interview related to CF
## 1898 100004635 Address Complete and valid interview related to CF
## 1899 100004638 Address Complete and valid interview related to CF
## 1900 100004640 Address Complete and valid interview related to CF
## 1901 100004642 Address Complete and valid interview related to CF
## 1902 100004644 Address Complete and valid interview related to CF
## 1903 100004651 Address Complete and valid interview related to CF
## 1904 100004652 Address Complete and valid interview related to CF
## 1905 100004653 Address Complete and valid interview related to CF
## 1906 100004655 Address Complete and valid interview related to CF
## 1907 100004661 Address Complete and valid interview related to CF
## 1908 100004667 Address Complete and valid interview related to CF
## 1909 100004668 Address Complete and valid interview related to CF
## 1910 100004669 Address Complete and valid interview related to CF
## 1911 100004671 Address Complete and valid interview related to CF
## 1912 100004672 Address Complete and valid interview related to CF
## 1913 100004679 Address Complete and valid interview related to CF
## 1914 100004684 Address Complete and valid interview related to CF
## 1915 100004685 Address Complete and valid interview related to CF
## 1916 100004686 Address Complete and valid interview related to CF
## 1917 100004687 Address Complete and valid interview related to CF
## 1918 100004688 Address Complete and valid interview related to CF
## 1919 100004689 Address Complete and valid interview related to CF
## 1920 100004691 Address Complete and valid interview related to CF
## 1921 100004692 Address Complete and valid interview related to CF
## 1922 100004694 Address Complete and valid interview related to CF
## 1923 100004698 Address Complete and valid interview related to CF
## 1924 100004700 Address Complete and valid interview related to CF
## 1925 100004701 Address Complete and valid interview related to CF
## 1926 100004702 Address Complete and valid interview related to CF
## 1927 100004703 Address Complete and valid interview related to CF
## 1928 100004710 Address Complete and valid interview related to CF
## 1929 100004713 Address Complete and valid interview related to CF
## 1930 100004714 Address Complete and valid interview related to CF
## 1931 100004715 Address Complete and valid interview related to CF
## 1932 100004729 Address Complete and valid interview related to CF
## 1933 100004731 Address Complete and valid interview related to CF
## 1934 100004736 Address Complete and valid interview related to CF
## 1935 100004738 Address Complete and valid interview related to CF
## 1936 100004739 Address Complete and valid interview related to CF
## 1937 100004742 Address Complete and valid interview related to CF
## 1938 100004749 Address Complete and valid interview related to CF
## 1939 100004751 Address Complete and valid interview related to CF
## 1940 100004753 Address Complete and valid interview related to CF
## 1941 100004754 Address Complete and valid interview related to CF
## 1942 100004763 Address Complete and valid interview related to CF
## 1943 100004769 Address Complete and valid interview related to CF
## 1944 100004771 Address Complete and valid interview related to CF
## 1945 100004773 Address Complete and valid interview related to CF
## 1946 100004776 Address Complete and valid interview related to CF
## 1947 100004780 Address Complete and valid interview related to CF
## 1948 100004781 Address Complete and valid interview related to CF
## 1949 100004785 Address Complete and valid interview related to CF
## 1950 100004786 Address Complete and valid interview related to CF
## 1951 100004787 Address Complete and valid interview related to CF
## 1952 100004788 Address Complete and valid interview related to CF
## 1953 100004789 Address Complete and valid interview related to CF
## 1954 100004793 Address Complete and valid interview related to CF
## 1955 100004794 Address Complete and valid interview related to CF
## 1956 100004795 Address Complete and valid interview related to CF
## 1957 100004797 Address Complete and valid interview related to CF
## 1958 100004801 Address Complete and valid interview related to CF
## 1959 100004803 Address Complete and valid interview related to CF
## 1960 100004809 Address Complete and valid interview related to CF
## 1961 100004810 Address Complete and valid interview related to CF
## 1962 100004811 Address Complete and valid interview related to CF
## 1963 100004817 Address Complete and valid interview related to CF
## 1964 100004820 Address Complete and valid interview related to CF
## 1965 100004821 Address Complete and valid interview related to CF
## 1966 100004824 Address Complete and valid interview related to CF
## 1967 100004828 Address Complete and valid interview related to CF
## 1968 100004832 Address Complete and valid interview related to CF
## 1969 100004834 Address Complete and valid interview related to CF
## 1970 100004837 Address Complete and valid interview related to CF
## 1971 100004843 Address Complete and valid interview related to CF
## 1972 100004844 Address Complete and valid interview related to CF
## 1973 100004846 Address Complete and valid interview related to CF
## 1974 100004848 Address Complete and valid interview related to CF
## 1975 100004850 Address Complete and valid interview related to CF
## 1976 100004852 Address Complete and valid interview related to CF
## 1977 100004854 Address Complete and valid interview related to CF
## 1978 100004856 Address Complete and valid interview related to CF
## 1979 100004857 Address Complete and valid interview related to CF
## 1980 100004867 Address Complete and valid interview related to CF
## 1981 100004871 Address Complete and valid interview related to CF
## 1982 100004872 Address Complete and valid interview related to CF
## 1983 100004873 Address Complete and valid interview related to CF
## 1984 100004875 Address Complete and valid interview related to CF
## 1985 100004879 Address Complete and valid interview related to CF
## 1986 100004886 Address Complete and valid interview related to CF
## 1987 100004889 Address Complete and valid interview related to CF
## 1988 100004896 Address Complete and valid interview related to CF
## 1989 100004897 Address Complete and valid interview related to CF
## 1990 100004901 Address Complete and valid interview related to CF
## 1991 100004904 Address Complete and valid interview related to CF
## 1992 100004905 Address Complete and valid interview related to CF
## 1993 100004909 Address Complete and valid interview related to CF
## 1994 100004910 Address Complete and valid interview related to CF
## 1995 100004911 Address Complete and valid interview related to CF
## 1996 100004912 Address Complete and valid interview related to CF
## 1997 100004915 Address Complete and valid interview related to CF
## 1998 100004917 Address Complete and valid interview related to CF
## 1999 100004918 Address Complete and valid interview related to CF
## 2000 100004919 Address Complete and valid interview related to CF
## 2001 100004920 Address Complete and valid interview related to CF
## 2002 100004923 Address Complete and valid interview related to CF
## 2003 100004924 Address Complete and valid interview related to CF
## 2004 100004925 Address Complete and valid interview related to CF
## 2005 100004926 Address Complete and valid interview related to CF
## 2006 100004929 Address Complete and valid interview related to CF
## 2007 100004932 Address Complete and valid interview related to CF
## 2008 100004933 Address Complete and valid interview related to CF
## 2009 100004937 Address Complete and valid interview related to CF
## 2010 100004939 Address Complete and valid interview related to CF
## 2011 100004944 Address Complete and valid interview related to CF
## 2012 100004946 Address Complete and valid interview related to CF
## 2013 100004947 Address Complete and valid interview related to CF
## 2014 100004950 Address Complete and valid interview related to CF
## 2015 100004951 Address Complete and valid interview related to CF
## 2016 100004955 Address Complete and valid interview related to CF
## 2017 100004956 Address Complete and valid interview related to CF
## 2018 100004959 Address Complete and valid interview related to CF
## 2019 100004960 Address Complete and valid interview related to CF
## 2020 100004962 Address Complete and valid interview related to CF
## 2021 100004965 Address Complete and valid interview related to CF
## 2022 100004976 Address Complete and valid interview related to CF
## 2023 100004980 Address Complete and valid interview related to CF
## 2024 100004982 Address Complete and valid interview related to CF
## 2025 100004983 Address Complete and valid interview related to CF
## 2026 100004987 Address Complete and valid interview related to CF
## 2027 100004992 Address Complete and valid interview related to CF
## 2028 100004993 Address Complete and valid interview related to CF
## 2029 100004996 Address Complete and valid interview related to CF
## 2030 100004998 Address Complete and valid interview related to CF
## 2031 100005000 Address Complete and valid interview related to CF
## 2032 100005002 Address Complete and valid interview related to CF
## 2033 100005004 Address Complete and valid interview related to CF
## 2034 100005006 Address Complete and valid interview related to CF
## 2035 100005007 Address Complete and valid interview related to CF
## 2036 100005014 Address Complete and valid interview related to CF
## 2037 100005017 Address Complete and valid interview related to CF
## 2038 100005028 Address Complete and valid interview related to CF
## 2039 100005029 Address Complete and valid interview related to CF
## 2040 100005031 Address Complete and valid interview related to CF
## 2041 100005035 Address Complete and valid interview related to CF
## 2042 100005038 Address Complete and valid interview related to CF
## 2043 100005039 Address Complete and valid interview related to CF
## 2044 100005040 Address Complete and valid interview related to CF
## 2045 100005041 Address Complete and valid interview related to CF
## 2046 100005043 Address Complete and valid interview related to CF
## 2047 100005045 Address Complete and valid interview related to CF
## 2048 100005047 Address Complete and valid interview related to CF
## 2049 100005049 Address Complete and valid interview related to CF
## 2050 100005050 Address Complete and valid interview related to CF
## 2051 100005051 Address Complete and valid interview related to CF
## 2052 100005057 Address Complete and valid interview related to CF
## 2053 100005063 Address Complete and valid interview related to CF
## 2054 100005064 Address Complete and valid interview related to CF
## 2055 100005072 Address Complete and valid interview related to CF
## 2056 100005073 Address Complete and valid interview related to CF
## 2057 100005079 Address Complete and valid interview related to CF
## 2058 100005082 Address Complete and valid interview related to CF
## 2059 100005085 Address Complete and valid interview related to CF
## 2060 100005086 Address Complete and valid interview related to CF
## 2061 100005089 Address Complete and valid interview related to CF
## 2062 100005090 Address Complete and valid interview related to CF
## 2063 100005096 Address Complete and valid interview related to CF
## 2064 100005097 Address Complete and valid interview related to CF
## 2065 100005098 Address Complete and valid interview related to CF
## 2066 100005104 Address Complete and valid interview related to CF
## 2067 100005107 Address Complete and valid interview related to CF
## 2068 100005109 Address Complete and valid interview related to CF
## 2069 100005110 Address Complete and valid interview related to CF
## 2070 100005112 Address Complete and valid interview related to CF
## 2071 100005113 Address Complete and valid interview related to CF
## 2072 100005115 Address Complete and valid interview related to CF
## 2073 100005118 Address Complete and valid interview related to CF
## 2074 100005119 Address Complete and valid interview related to CF
## 2075 100005123 Address Complete and valid interview related to CF
## 2076 100005125 Address Complete and valid interview related to CF
## 2077 100005134 Address Complete and valid interview related to CF
## 2078 100005137 Address Complete and valid interview related to CF
## 2079 100005140 Address Complete and valid interview related to CF
## 2080 100005142 Address Complete and valid interview related to CF
## 2081 100005144 Address Complete and valid interview related to CF
## 2082 100005147 Address Complete and valid interview related to CF
## 2083 100005152 Address Complete and valid interview related to CF
## 2084 100005153 Address Complete and valid interview related to CF
## 2085 100005156 Address Complete and valid interview related to CF
## 2086 100005157 Address Complete and valid interview related to CF
## 2087 100005158 Address Complete and valid interview related to CF
## 2088 100005160 Address Complete and valid interview related to CF
## 2089 100005161 Address Complete and valid interview related to CF
## 2090 100005166 Address Complete and valid interview related to CF
## 2091 100005167 Address Complete and valid interview related to CF
## 2092 100005168 Address Complete and valid interview related to CF
## 2093 100005169 Address Complete and valid interview related to CF
## 2094 100005170 Address Complete and valid interview related to CF
## 2095 100005171 Address Complete and valid interview related to CF
## 2096 100005172 Address Complete and valid interview related to CF
## 2097 100005175 Address Complete and valid interview related to CF
## 2098 100005177 Address Complete and valid interview related to CF
## 2099 100005179 Address Complete and valid interview related to CF
## 2100 100005181 Address Complete and valid interview related to CF
## 2101 100005182 Address Complete and valid interview related to CF
## 2102 100005183 Address Complete and valid interview related to CF
## 2103 100005187 Address Complete and valid interview related to CF
## 2104 100005189 Address Complete and valid interview related to CF
## 2105 100005190 Address Complete and valid interview related to CF
## 2106 100005193 Address Complete and valid interview related to CF
## 2107 100005203 Address Complete and valid interview related to CF
## 2108 100005204 Address Complete and valid interview related to CF
## 2109 100005205 Address Complete and valid interview related to CF
## 2110 100005206 Address Complete and valid interview related to CF
## 2111 100005209 Address Complete and valid interview related to CF
## 2112 100005210 Address Complete and valid interview related to CF
## 2113 100005212 Address Complete and valid interview related to CF
## 2114 100005213 Address Complete and valid interview related to CF
## 2115 100005217 Address Complete and valid interview related to CF
## 2116 100005219 Address Complete and valid interview related to CF
## 2117 100005223 Address Complete and valid interview related to CF
## 2118 100005226 Address Complete and valid interview related to CF
## 2119 100005227 Address Complete and valid interview related to CF
## 2120 100005228 Address Complete and valid interview related to CF
## 2121 100005230 Address Complete and valid interview related to CF
## 2122 100005231 Address Complete and valid interview related to CF
## 2123 100005233 Address Complete and valid interview related to CF
## 2124 100005235 Address Complete and valid interview related to CF
## 2125 100005237 Address Complete and valid interview related to CF
## 2126 100005238 Address Complete and valid interview related to CF
## 2127 100005240 Address Complete and valid interview related to CF
## 2128 100005244 Address Complete and valid interview related to CF
## 2129 100005245 Address Complete and valid interview related to CF
## 2130 100005246 Address Complete and valid interview related to CF
## 2131 100005247 Address Complete and valid interview related to CF
## 2132 100005250 Address Complete and valid interview related to CF
## 2133 100005253 Address Complete and valid interview related to CF
## 2134 100005258 Address Complete and valid interview related to CF
## 2135 100005265 Address Complete and valid interview related to CF
## 2136 100005267 Address Complete and valid interview related to CF
## 2137 100005271 Address Complete and valid interview related to CF
## 2138 100005274 Address Complete and valid interview related to CF
## 2139 100005275 Address Complete and valid interview related to CF
## 2140 100005279 Address Complete and valid interview related to CF
## 2141 100005282 Address Complete and valid interview related to CF
## 2142 100005283 Address Complete and valid interview related to CF
## 2143 100005284 Address Complete and valid interview related to CF
## 2144 100005289 Address Complete and valid interview related to CF
## 2145 100005290 Address Complete and valid interview related to CF
## 2146 100005294 Address Complete and valid interview related to CF
## 2147 100005295 Address Complete and valid interview related to CF
## 2148 100005297 Address Complete and valid interview related to CF
## 2149 100005307 Address Complete and valid interview related to CF
## 2150 100005308 Address Complete and valid interview related to CF
## 2151 100005311 Address Complete and valid interview related to CF
## 2152 100005313 Address Complete and valid interview related to CF
## 2153 100005314 Address Complete and valid interview related to CF
## 2154 100005316 Address Complete and valid interview related to CF
## 2155 100005320 Address Complete and valid interview related to CF
## 2156 100005324 Address Complete and valid interview related to CF
## 2157 100005325 Address Complete and valid interview related to CF
## 2158 100005334 Address Complete and valid interview related to CF
## 2159 100005337 Address Complete and valid interview related to CF
## 2160 100005338 Address Complete and valid interview related to CF
## 2161 100005343 Address Complete and valid interview related to CF
## 2162 100005344 Address Complete and valid interview related to CF
## 2163 100005348 Address Complete and valid interview related to CF
## 2164 100005352 Address Complete and valid interview related to CF
## 2165 100005353 Address Complete and valid interview related to CF
## 2166 100005357 Address Complete and valid interview related to CF
## 2167 100005358 Address Complete and valid interview related to CF
## 2168 100005361 Address Complete and valid interview related to CF
## 2169 100005363 Address Complete and valid interview related to CF
## 2170 100005376 Address Complete and valid interview related to CF
## 2171 100005377 Address Complete and valid interview related to CF
## 2172 100005380 Address Complete and valid interview related to CF
## 2173 100005384 Address Complete and valid interview related to CF
## 2174 100005385 Address Complete and valid interview related to CF
## 2175 100005387 Address Complete and valid interview related to CF
## 2176 100005389 Address Complete and valid interview related to CF
## 2177 100005394 Address Complete and valid interview related to CF
## 2178 100005395 Address Complete and valid interview related to CF
## 2179 100005396 Address Complete and valid interview related to CF
## 2180 100005398 Address Complete and valid interview related to CF
## 2181 100005400 Address Complete and valid interview related to CF
## 2182 100005401 Address Complete and valid interview related to CF
## 2183 100005403 Address Complete and valid interview related to CF
## 2184 100005405 Address Complete and valid interview related to CF
## 2185 100005406 Address Complete and valid interview related to CF
## 2186 100005407 Address Complete and valid interview related to CF
## 2187 100005408 Address Complete and valid interview related to CF
## 2188 100005410 Address Complete and valid interview related to CF
## 2189 100005413 Address Complete and valid interview related to CF
## 2190 100005416 Address Complete and valid interview related to CF
## 2191 100005418 Address Complete and valid interview related to CF
## 2192 100005419 Address Complete and valid interview related to CF
## 2193 100005420 Address Complete and valid interview related to CF
## 2194 100005423 Address Complete and valid interview related to CF
## 2195 100005425 Address Complete and valid interview related to CF
## 2196 100005426 Address Complete and valid interview related to CF
## 2197 100005427 Address Complete and valid interview related to CF
## 2198 100005428 Address Complete and valid interview related to CF
## 2199 100005436 Address Complete and valid interview related to CF
## 2200 100005443 Address Complete and valid interview related to CF
## 2201 100005446 Address Complete and valid interview related to CF
## 2202 100005448 Address Complete and valid interview related to CF
## 2203 100005450 Address Complete and valid interview related to CF
## 2204 100005451 Address Complete and valid interview related to CF
## 2205 100005452 Address Complete and valid interview related to CF
## 2206 100005455 Address Complete and valid interview related to CF
## 2207 100005456 Address Complete and valid interview related to CF
## 2208 100005457 Address Complete and valid interview related to CF
## 2209 100005459 Address Complete and valid interview related to CF
## 2210 100005460 Address Complete and valid interview related to CF
## 2211 100005464 Address Complete and valid interview related to CF
## 2212 100005470 Address Complete and valid interview related to CF
## 2213 100005472 Address Complete and valid interview related to CF
## 2214 100005474 Address Complete and valid interview related to CF
## 2215 100005475 Address Complete and valid interview related to CF
## 2216 100005478 Address Complete and valid interview related to CF
## 2217 100005480 Address Complete and valid interview related to CF
## 2218 100005481 Address Complete and valid interview related to CF
## 2219 100005482 Address Complete and valid interview related to CF
## 2220 100005486 Address Complete and valid interview related to CF
## 2221 100005489 Address Complete and valid interview related to CF
## 2222 100005492 Address Complete and valid interview related to CF
## 2223 100005494 Address Complete and valid interview related to CF
## 2224 100005496 Address Complete and valid interview related to CF
## 2225 100005500 Address Complete and valid interview related to CF
## 2226 100005501 Address Complete and valid interview related to CF
## 2227 100005502 Address Complete and valid interview related to CF
## 2228 100005503 Address Complete and valid interview related to CF
## 2229 100005507 Address Complete and valid interview related to CF
## 2230 100005511 Address Complete and valid interview related to CF
## 2231 100005514 Address Complete and valid interview related to CF
## 2232 100005516 Address Complete and valid interview related to CF
## 2233 100005519 Address Complete and valid interview related to CF
## 2234 100005520 Address Complete and valid interview related to CF
## 2235 100005521 Address Complete and valid interview related to CF
## 2236 100005527 Address Complete and valid interview related to CF
## 2237 100005528 Address Complete and valid interview related to CF
## 2238 100005535 Address Complete and valid interview related to CF
## 2239 100005536 Address Complete and valid interview related to CF
## 2240 100005537 Address Complete and valid interview related to CF
## 2241 100005539 Address Complete and valid interview related to CF
## 2242 100005540 Address Complete and valid interview related to CF
## 2243 100005544 Address Complete and valid interview related to CF
## 2244 100005547 Address Complete and valid interview related to CF
## 2245 100005548 Address Complete and valid interview related to CF
## 2246 100005552 Address Complete and valid interview related to CF
## 2247 100005553 Address Complete and valid interview related to CF
## 2248 100005555 Address Complete and valid interview related to CF
## 2249 100005557 Address Complete and valid interview related to CF
## 2250 100005558 Address Complete and valid interview related to CF
## 2251 100005560 Address Complete and valid interview related to CF
## 2252 100005562 Address Complete and valid interview related to CF
## 2253 100005566 Address Complete and valid interview related to CF
## 2254 100005567 Address Complete and valid interview related to CF
## 2255 100005569 Address Complete and valid interview related to CF
## 2256 100005570 Address Complete and valid interview related to CF
## 2257 100005571 Address Complete and valid interview related to CF
## 2258 100005572 Address Complete and valid interview related to CF
## 2259 100005590 Address Complete and valid interview related to CF
## 2260 100005591 Address Complete and valid interview related to CF
## 2261 100005592 Address Complete and valid interview related to CF
## 2262 100005593 Address Complete and valid interview related to CF
## 2263 100005594 Address Complete and valid interview related to CF
## 2264 100005597 Address Complete and valid interview related to CF
## 2265 100005599 Address Complete and valid interview related to CF
## 2266 100000001 Address No interview for other reason
## 2267 100000002 Address No interview for other reason
## 2268 100000004 Address No interview for other reason
## 2269 100000006 Address No interview for other reason
## 2270 100000007 Address No interview for other reason
## 2271 100000011 Address No interview for other reason
## 2272 100000013 Address No interview for other reason
## 2273 100000014 Address No interview for other reason
## 2274 100000018 Address No interview for other reason
## 2275 100000019 Address No interview for other reason
## 2276 100000021 Address No interview for other reason
## 2277 100000024 Address No interview for other reason
## 2278 100000026 Address No interview for other reason
## 2279 100000027 Address No interview for other reason
## 2280 100000028 Address No interview for other reason
## 2281 100000029 Address No interview for other reason
## 2282 100000032 Address No interview for other reason
## 2283 100000035 Address No interview for other reason
## 2284 100000038 Address No interview for other reason
## 2285 100000039 Address No interview for other reason
## 2286 100000040 Address No interview for other reason
## 2287 100000042 Address No interview for other reason
## 2288 100000044 Address No interview for other reason
## 2289 100000045 Address No interview for other reason
## 2290 100000049 Address No interview for other reason
## 2291 100000051 Address No interview for other reason
## 2292 100000056 Address No interview for other reason
## 2293 100000058 Address No interview for other reason
## 2294 100000059 Address No interview for other reason
## 2295 100000060 Address No interview for other reason
## 2296 100000061 Address No interview for other reason
## 2297 100000064 Address No interview for other reason
## 2298 100000065 Address No interview for other reason
## 2299 100000066 Address No interview for other reason
## 2300 100000068 Address No interview for other reason
## 2301 100000069 Address No interview for other reason
## 2302 100000072 Address No interview for other reason
## 2303 100000074 Address No interview for other reason
## 2304 100000078 Address No interview for other reason
## 2305 100000079 Address No interview for other reason
## 2306 100000081 Address No interview for other reason
## 2307 100000082 Address No interview for other reason
## 2308 100000083 Address No interview for other reason
## 2309 100000087 Address No interview for other reason
## 2310 100000090 Address No interview for other reason
## 2311 100000092 Address No interview for other reason
## 2312 100000093 Address No interview for other reason
## 2313 100000094 Address No interview for other reason
## 2314 100000097 Address No interview for other reason
## 2315 100000098 Address No interview for other reason
## 2316 100000099 Address No interview for other reason
## 2317 100000100 Address No interview for other reason
## 2318 100000101 Address No interview for other reason
## 2319 100000102 Address No interview for other reason
## 2320 100000105 Address No interview for other reason
## 2321 100000106 Address No interview for other reason
## 2322 100000112 Address No interview for other reason
## 2323 100000114 Address No interview for other reason
## 2324 100000116 Address No interview for other reason
## 2325 100000117 Address No interview for other reason
## 2326 100000118 Address No interview for other reason
## 2327 100000119 Address No interview for other reason
## 2328 100000120 Address No interview for other reason
## 2329 100000125 Address No interview for other reason
## 2330 100000128 Address No interview for other reason
## 2331 100000129 Address No interview for other reason
## 2332 100000130 Address No interview for other reason
## 2333 100000131 Address No interview for other reason
## 2334 100000132 Address No interview for other reason
## 2335 100000133 Address No interview for other reason
## 2336 100000134 Address No interview for other reason
## 2337 100000135 Address No interview for other reason
## 2338 100000136 Address No interview for other reason
## 2339 100000137 Address No interview for other reason
## 2340 100000138 Address No interview for other reason
## 2341 100000140 Address No interview for other reason
## 2342 100000142 Address No interview for other reason
## 2343 100000144 Address No interview for other reason
## 2344 100000146 Address No interview for other reason
## 2345 100000149 Address No interview for other reason
## 2346 100000150 Address No interview for other reason
## 2347 100000151 Address No interview for other reason
## 2348 100000154 Address No interview for other reason
## 2349 100000155 Address No interview for other reason
## 2350 100000160 Address No interview for other reason
## 2351 100000161 Address No interview for other reason
## 2352 100000162 Address No interview for other reason
## 2353 100000163 Address No interview for other reason
## 2354 100000164 Address No interview for other reason
## 2355 100000165 Address No interview for other reason
## 2356 100000166 Address No interview for other reason
## 2357 100000169 Address No interview for other reason
## 2358 100000172 Address No interview for other reason
## 2359 100000173 Address No interview for other reason
## 2360 100000177 Address No interview for other reason
## 2361 100000178 Address No interview for other reason
## 2362 100000179 Address No interview for other reason
## 2363 100000187 Address No interview for other reason
## 2364 100000188 Address No interview for other reason
## 2365 100000190 Address No interview for other reason
## 2366 100000191 Address No interview for other reason
## 2367 100000192 Address No interview for other reason
## 2368 100000194 Address No interview for other reason
## 2369 100000195 Address No interview for other reason
## 2370 100000196 Address No interview for other reason
## 2371 100000198 Address No interview for other reason
## 2372 100000199 Address No interview for other reason
## 2373 100000200 Address No interview for other reason
## 2374 100000201 Address No interview for other reason
## 2375 100000202 Address No interview for other reason
## 2376 100000203 Address No interview for other reason
## 2377 100000204 Address No interview for other reason
## 2378 100000206 Address No interview for other reason
## 2379 100000209 Address No interview for other reason
## 2380 100000210 Address No interview for other reason
## 2381 100000214 Address No interview for other reason
## 2382 100000215 Address No interview for other reason
## 2383 100000216 Address No interview for other reason
## 2384 100000217 Address No interview for other reason
## 2385 100000218 Address No interview for other reason
## 2386 100000220 Address No interview for other reason
## 2387 100000222 Address No interview for other reason
## 2388 100000223 Address No interview for other reason
## 2389 100000226 Address No interview for other reason
## 2390 100000228 Address No interview for other reason
## 2391 100000230 Address No interview for other reason
## 2392 100000232 Address No interview for other reason
## 2393 100000233 Address No interview for other reason
## 2394 100000234 Address No interview for other reason
## 2395 100000236 Address No interview for other reason
## 2396 100000237 Address No interview for other reason
## 2397 100000238 Address No interview for other reason
## 2398 100000239 Address No interview for other reason
## 2399 100000241 Address No interview for other reason
## 2400 100000242 Address No interview for other reason
## 2401 100000243 Address No interview for other reason
## 2402 100000244 Address No interview for other reason
## 2403 100000245 Address No interview for other reason
## 2404 100000246 Address No interview for other reason
## 2405 100000247 Address No interview for other reason
## 2406 100000249 Address No interview for other reason
## 2407 100000252 Address No interview for other reason
## 2408 100000254 Address No interview for other reason
## 2409 100000255 Address No interview for other reason
## 2410 100000257 Address No interview for other reason
## 2411 100000258 Address No interview for other reason
## 2412 100000259 Address No interview for other reason
## 2413 100000260 Address No interview for other reason
## 2414 100000262 Address No interview for other reason
## 2415 100000273 Address No interview for other reason
## 2416 100000274 Address No interview for other reason
## 2417 100000277 Address No interview for other reason
## 2418 100000278 Address No interview for other reason
## 2419 100000280 Address No interview for other reason
## 2420 100000282 Address No interview for other reason
## 2421 100000286 Address No interview for other reason
## 2422 100000287 Address No interview for other reason
## 2423 100000291 Address No interview for other reason
## 2424 100000292 Address No interview for other reason
## 2425 100000293 Address No interview for other reason
## 2426 100000294 Address No interview for other reason
## 2427 100000295 Address No interview for other reason
## 2428 100000296 Address No interview for other reason
## 2429 100000297 Address No interview for other reason
## 2430 100000299 Address No interview for other reason
## 2431 100000301 Address No interview for other reason
## 2432 100000307 Address No interview for other reason
## 2433 100000308 Address No interview for other reason
## 2434 100000309 Address No interview for other reason
## 2435 100000310 Address No interview for other reason
## 2436 100000311 Address No interview for other reason
## 2437 100000312 Address No interview for other reason
## 2438 100000315 Address No interview for other reason
## 2439 100000316 Address No interview for other reason
## 2440 100000317 Address No interview for other reason
## 2441 100000318 Address No interview for other reason
## 2442 100000319 Address No interview for other reason
## 2443 100000320 Address No interview for other reason
## 2444 100000323 Address No interview for other reason
## 2445 100000324 Address No interview for other reason
## 2446 100000325 Address No interview for other reason
## 2447 100000327 Address No interview for other reason
## 2448 100000328 Address No interview for other reason
## 2449 100000330 Address No interview for other reason
## 2450 100000332 Address No interview for other reason
## 2451 100000336 Address No interview for other reason
## 2452 100000337 Address No interview for other reason
## 2453 100000338 Address No interview for other reason
## 2454 100000339 Address No interview for other reason
## 2455 100000340 Address No interview for other reason
## 2456 100000342 Address No interview for other reason
## 2457 100000343 Address No interview for other reason
## 2458 100000345 Address No interview for other reason
## 2459 100000346 Address No interview for other reason
## 2460 100000347 Address No interview for other reason
## 2461 100000349 Address No interview for other reason
## 2462 100000351 Address No interview for other reason
## 2463 100000353 Address No interview for other reason
## 2464 100000354 Address No interview for other reason
## 2465 100000355 Address No interview for other reason
## 2466 100000356 Address No interview for other reason
## 2467 100000361 Address No interview for other reason
## 2468 100000362 Address No interview for other reason
## 2469 100000363 Address No interview for other reason
## 2470 100000364 Address No interview for other reason
## 2471 100000366 Address No interview for other reason
## 2472 100000367 Address No interview for other reason
## 2473 100000368 Address No interview for other reason
## 2474 100000369 Address No interview for other reason
## 2475 100000370 Address No interview for other reason
## 2476 100000372 Address No interview for other reason
## 2477 100000373 Address No interview for other reason
## 2478 100000377 Address No interview for other reason
## 2479 100000378 Address No interview for other reason
## 2480 100000380 Address No interview for other reason
## 2481 100000381 Address No interview for other reason
## 2482 100000382 Address No interview for other reason
## 2483 100000383 Address No interview for other reason
## 2484 100000384 Address No interview for other reason
## 2485 100000385 Address No interview for other reason
## 2486 100000388 Address No interview for other reason
## 2487 100000391 Address No interview for other reason
## 2488 100000394 Address No interview for other reason
## 2489 100000397 Address No interview for other reason
## 2490 100000399 Address No interview for other reason
## 2491 100000402 Address No interview for other reason
## 2492 100000404 Address No interview for other reason
## 2493 100000406 Address No interview for other reason
## 2494 100000407 Address No interview for other reason
## 2495 100000409 Address No interview for other reason
## 2496 100000410 Address No interview for other reason
## 2497 100000413 Address No interview for other reason
## 2498 100000414 Address No interview for other reason
## 2499 100000416 Address No interview for other reason
## 2500 100000419 Address No interview for other reason
## 2501 100000424 Address No interview for other reason
## 2502 100000426 Address No interview for other reason
## 2503 100000428 Address No interview for other reason
## 2504 100000429 Address No interview for other reason
## 2505 100000432 Address No interview for other reason
## 2506 100000433 Address No interview for other reason
## 2507 100000434 Address No interview for other reason
## 2508 100000436 Address No interview for other reason
## 2509 100000437 Address No interview for other reason
## 2510 100000438 Address No interview for other reason
## 2511 100000440 Address No interview for other reason
## 2512 100000442 Address No interview for other reason
## 2513 100000443 Address No interview for other reason
## 2514 100000444 Address No interview for other reason
## 2515 100000445 Address No interview for other reason
## 2516 100000446 Address No interview for other reason
## 2517 100000447 Address No interview for other reason
## 2518 100000448 Address No interview for other reason
## 2519 100000455 Address No interview for other reason
## 2520 100000458 Address No interview for other reason
## 2521 100000459 Address No interview for other reason
## 2522 100000460 Address No interview for other reason
## 2523 100000461 Address No interview for other reason
## 2524 100000466 Address No interview for other reason
## 2525 100000469 Address No interview for other reason
## 2526 100000472 Address No interview for other reason
## 2527 100000473 Address No interview for other reason
## 2528 100000476 Address No interview for other reason
## 2529 100000483 Address No interview for other reason
## 2530 100000484 Address No interview for other reason
## 2531 100000486 Address No interview for other reason
## 2532 100000487 Address No interview for other reason
## 2533 100000488 Address No interview for other reason
## 2534 100000489 Address No interview for other reason
## 2535 100000492 Address No interview for other reason
## 2536 100000493 Address No interview for other reason
## 2537 100000496 Address No interview for other reason
## 2538 100000497 Address No interview for other reason
## 2539 100000498 Address No interview for other reason
## 2540 100000499 Address No interview for other reason
## 2541 100000504 Address No interview for other reason
## 2542 100000505 Address No interview for other reason
## 2543 100000506 Address No interview for other reason
## 2544 100000507 Address No interview for other reason
## 2545 100000508 Address No interview for other reason
## 2546 100000509 Address No interview for other reason
## 2547 100000510 Address No interview for other reason
## 2548 100000513 Address No interview for other reason
## 2549 100000519 Address No interview for other reason
## 2550 100000520 Address No interview for other reason
## 2551 100000522 Address No interview for other reason
## 2552 100000525 Address No interview for other reason
## 2553 100000526 Address No interview for other reason
## 2554 100000527 Address No interview for other reason
## 2555 100000530 Address No interview for other reason
## 2556 100000533 Address No interview for other reason
## 2557 100000534 Address No interview for other reason
## 2558 100000536 Address No interview for other reason
## 2559 100000537 Address No interview for other reason
## 2560 100000540 Address No interview for other reason
## 2561 100000542 Address No interview for other reason
## 2562 100000543 Address No interview for other reason
## 2563 100000546 Address No interview for other reason
## 2564 100000547 Address No interview for other reason
## 2565 100000549 Address No interview for other reason
## 2566 100000551 Address No interview for other reason
## 2567 100000552 Address No interview for other reason
## 2568 100000553 Address No interview for other reason
## 2569 100000555 Address No interview for other reason
## 2570 100000557 Address No interview for other reason
## 2571 100000563 Address No interview for other reason
## 2572 100000566 Address No interview for other reason
## 2573 100000568 Address No interview for other reason
## 2574 100000569 Address No interview for other reason
## 2575 100000571 Address No interview for other reason
## 2576 100000572 Address No interview for other reason
## 2577 100000573 Address No interview for other reason
## 2578 100000578 Address No interview for other reason
## 2579 100000579 Address No interview for other reason
## 2580 100000582 Address No interview for other reason
## 2581 100000585 Address No interview for other reason
## 2582 100000587 Address No interview for other reason
## 2583 100000588 Address No interview for other reason
## 2584 100000592 Address No interview for other reason
## 2585 100000597 Address No interview for other reason
## 2586 100000598 Address No interview for other reason
## 2587 100000601 Address No interview for other reason
## 2588 100000603 Address No interview for other reason
## 2589 100000604 Address No interview for other reason
## 2590 100000605 Address No interview for other reason
## 2591 100000606 Address No interview for other reason
## 2592 100000610 Address No interview for other reason
## 2593 100000611 Address No interview for other reason
## 2594 100000612 Address No interview for other reason
## 2595 100000614 Address No interview for other reason
## 2596 100000616 Address No interview for other reason
## 2597 100000618 Address No interview for other reason
## 2598 100000619 Address No interview for other reason
## 2599 100000620 Address No interview for other reason
## 2600 100000624 Address No interview for other reason
## 2601 100000625 Address No interview for other reason
## 2602 100000627 Address No interview for other reason
## 2603 100000628 Address No interview for other reason
## 2604 100000629 Address No interview for other reason
## 2605 100000630 Address No interview for other reason
## 2606 100000631 Address No interview for other reason
## 2607 100000633 Address No interview for other reason
## 2608 100000636 Address No interview for other reason
## 2609 100000640 Address No interview for other reason
## 2610 100000643 Address No interview for other reason
## 2611 100000644 Address No interview for other reason
## 2612 100000647 Address No interview for other reason
## 2613 100000649 Address No interview for other reason
## 2614 100000651 Address No interview for other reason
## 2615 100000653 Address No interview for other reason
## 2616 100000654 Address No interview for other reason
## 2617 100000656 Address No interview for other reason
## 2618 100000657 Address No interview for other reason
## 2619 100000659 Address No interview for other reason
## 2620 100000660 Address No interview for other reason
## 2621 100000661 Address No interview for other reason
## 2622 100000665 Address No interview for other reason
## 2623 100000667 Address No interview for other reason
## 2624 100000668 Address No interview for other reason
## 2625 100000669 Address No interview for other reason
## 2626 100000670 Address No interview for other reason
## 2627 100000672 Address No interview for other reason
## 2628 100000673 Address No interview for other reason
## 2629 100000675 Address No interview for other reason
## 2630 100000676 Address No interview for other reason
## 2631 100000679 Address No interview for other reason
## 2632 100000682 Address No interview for other reason
## 2633 100000683 Address No interview for other reason
## 2634 100000684 Address No interview for other reason
## 2635 100000685 Address No interview for other reason
## 2636 100000686 Address No interview for other reason
## 2637 100000687 Address No interview for other reason
## 2638 100000689 Address No interview for other reason
## 2639 100000690 Address No interview for other reason
## 2640 100000691 Address No interview for other reason
## 2641 100000694 Address No interview for other reason
## 2642 100000695 Address No interview for other reason
## 2643 100000696 Address No interview for other reason
## 2644 100000697 Address No interview for other reason
## 2645 100000699 Address No interview for other reason
## 2646 100000700 Address No interview for other reason
## 2647 100000702 Address No interview for other reason
## 2648 100000703 Address No interview for other reason
## 2649 100000704 Address No interview for other reason
## 2650 100000705 Address No interview for other reason
## 2651 100000706 Address No interview for other reason
## 2652 100000707 Address No interview for other reason
## 2653 100000709 Address No interview for other reason
## 2654 100000710 Address No interview for other reason
## 2655 100000711 Address No interview for other reason
## 2656 100000712 Address No interview for other reason
## 2657 100000713 Address No interview for other reason
## 2658 100000714 Address No interview for other reason
## 2659 100000715 Address No interview for other reason
## 2660 100000716 Address No interview for other reason
## 2661 100000717 Address No interview for other reason
## 2662 100000718 Address No interview for other reason
## 2663 100000719 Address No interview for other reason
## 2664 100000721 Address No interview for other reason
## 2665 100000722 Address No interview for other reason
## 2666 100000723 Address No interview for other reason
## 2667 100000724 Address No interview for other reason
## 2668 100000725 Address No interview for other reason
## 2669 100000726 Address No interview for other reason
## 2670 100000729 Address No interview for other reason
## 2671 100000731 Address No interview for other reason
## 2672 100000732 Address No interview for other reason
## 2673 100000733 Address No interview for other reason
## 2674 100000734 Address No interview for other reason
## 2675 100000737 Address No interview for other reason
## 2676 100000738 Address No interview for other reason
## 2677 100000740 Address No interview for other reason
## 2678 100000741 Address No interview for other reason
## 2679 100000742 Address No interview for other reason
## 2680 100000743 Address No interview for other reason
## 2681 100000746 Address No interview for other reason
## 2682 100000748 Address No interview for other reason
## 2683 100000749 Address No interview for other reason
## 2684 100000757 Address No interview for other reason
## 2685 100000758 Address No interview for other reason
## 2686 100000760 Address No interview for other reason
## 2687 100000761 Address No interview for other reason
## 2688 100000763 Address No interview for other reason
## 2689 100000765 Address No interview for other reason
## 2690 100000766 Address No interview for other reason
## 2691 100000771 Address No interview for other reason
## 2692 100000775 Address No interview for other reason
## 2693 100000777 Address No interview for other reason
## 2694 100000780 Address No interview for other reason
## 2695 100000782 Address No interview for other reason
## 2696 100000783 Address No interview for other reason
## 2697 100000786 Address No interview for other reason
## 2698 100000787 Address No interview for other reason
## 2699 100000788 Address No interview for other reason
## 2700 100000789 Address No interview for other reason
## 2701 100000790 Address No interview for other reason
## 2702 100000792 Address No interview for other reason
## 2703 100000793 Address No interview for other reason
## 2704 100000794 Address No interview for other reason
## 2705 100000795 Address No interview for other reason
## 2706 100000799 Address No interview for other reason
## 2707 100000800 Address No interview for other reason
## 2708 100000801 Address No interview for other reason
## 2709 100000802 Address No interview for other reason
## 2710 100000803 Address No interview for other reason
## 2711 100000805 Address No interview for other reason
## 2712 100000806 Address No interview for other reason
## 2713 100000807 Address No interview for other reason
## 2714 100000809 Address No interview for other reason
## 2715 100000811 Address No interview for other reason
## 2716 100000812 Address No interview for other reason
## 2717 100000813 Address No interview for other reason
## 2718 100000814 Address No interview for other reason
## 2719 100000816 Address No interview for other reason
## 2720 100000817 Address No interview for other reason
## 2721 100000818 Address No interview for other reason
## 2722 100000819 Address No interview for other reason
## 2723 100000820 Address No interview for other reason
## 2724 100000822 Address No interview for other reason
## 2725 100000823 Address No interview for other reason
## 2726 100000824 Address No interview for other reason
## 2727 100000825 Address No interview for other reason
## 2728 100000826 Address No interview for other reason
## 2729 100000828 Address No interview for other reason
## 2730 100000829 Address No interview for other reason
## 2731 100000831 Address No interview for other reason
## 2732 100000832 Address No interview for other reason
## 2733 100000833 Address No interview for other reason
## 2734 100000834 Address No interview for other reason
## 2735 100000835 Address No interview for other reason
## 2736 100000836 Address No interview for other reason
## 2737 100000837 Address No interview for other reason
## 2738 100000843 Address No interview for other reason
## 2739 100000845 Address No interview for other reason
## 2740 100000851 Address No interview for other reason
## 2741 100000852 Address No interview for other reason
## 2742 100000858 Address No interview for other reason
## 2743 100000861 Address No interview for other reason
## 2744 100000864 Address No interview for other reason
## 2745 100000865 Address No interview for other reason
## 2746 100000868 Address No interview for other reason
## 2747 100000869 Address No interview for other reason
## 2748 100000870 Address No interview for other reason
## 2749 100000871 Address No interview for other reason
## 2750 100000872 Address No interview for other reason
## 2751 100000873 Address No interview for other reason
## 2752 100000874 Address No interview for other reason
## 2753 100000875 Address No interview for other reason
## 2754 100000876 Address No interview for other reason
## 2755 100000878 Address No interview for other reason
## 2756 100000880 Address No interview for other reason
## 2757 100000882 Address No interview for other reason
## 2758 100000884 Address No interview for other reason
## 2759 100000885 Address No interview for other reason
## 2760 100000886 Address No interview for other reason
## 2761 100000889 Address No interview for other reason
## 2762 100000890 Address No interview for other reason
## 2763 100000891 Address No interview for other reason
## 2764 100000893 Address No interview for other reason
## 2765 100000894 Address No interview for other reason
## 2766 100000895 Address No interview for other reason
## 2767 100000896 Address No interview for other reason
## 2768 100000897 Address No interview for other reason
## 2769 100000899 Address No interview for other reason
## 2770 100000900 Address No interview for other reason
## 2771 100000901 Address No interview for other reason
## 2772 100000902 Address No interview for other reason
## 2773 100000903 Address No interview for other reason
## 2774 100000904 Address No interview for other reason
## 2775 100000905 Address No interview for other reason
## 2776 100000906 Address No interview for other reason
## 2777 100000908 Address No interview for other reason
## 2778 100000910 Address No interview for other reason
## 2779 100000912 Address No interview for other reason
## 2780 100000913 Address No interview for other reason
## 2781 100000914 Address No interview for other reason
## 2782 100000915 Address No interview for other reason
## 2783 100000917 Address No interview for other reason
## 2784 100000918 Address No interview for other reason
## 2785 100000920 Address No interview for other reason
## 2786 100000921 Address No interview for other reason
## 2787 100000924 Address No interview for other reason
## 2788 100000925 Address No interview for other reason
## 2789 100000926 Address No interview for other reason
## 2790 100000928 Address No interview for other reason
## 2791 100000932 Address No interview for other reason
## 2792 100000933 Address No interview for other reason
## 2793 100000934 Address No interview for other reason
## 2794 100000935 Address No interview for other reason
## 2795 100000936 Address No interview for other reason
## 2796 100000937 Address No interview for other reason
## 2797 100000938 Address No interview for other reason
## 2798 100000940 Address No interview for other reason
## 2799 100000941 Address No interview for other reason
## 2800 100000942 Address No interview for other reason
## 2801 100000944 Address No interview for other reason
## 2802 100000946 Address No interview for other reason
## 2803 100000947 Address No interview for other reason
## 2804 100000949 Address No interview for other reason
## 2805 100000950 Address No interview for other reason
## 2806 100000951 Address No interview for other reason
## 2807 100000952 Address No interview for other reason
## 2808 100000954 Address No interview for other reason
## 2809 100000955 Address No interview for other reason
## 2810 100000961 Address No interview for other reason
## 2811 100000962 Address No interview for other reason
## 2812 100000965 Address No interview for other reason
## 2813 100000966 Address No interview for other reason
## 2814 100000967 Address No interview for other reason
## 2815 100000968 Address No interview for other reason
## 2816 100000969 Address No interview for other reason
## 2817 100000970 Address No interview for other reason
## 2818 100000972 Address No interview for other reason
## 2819 100000973 Address No interview for other reason
## 2820 100000975 Address No interview for other reason
## 2821 100000976 Address No interview for other reason
## 2822 100000979 Address No interview for other reason
## 2823 100000980 Address No interview for other reason
## 2824 100000981 Address No interview for other reason
## 2825 100000982 Address No interview for other reason
## 2826 100000983 Address No interview for other reason
## 2827 100000985 Address No interview for other reason
## 2828 100000986 Address No interview for other reason
## 2829 100000989 Address No interview for other reason
## 2830 100000990 Address No interview for other reason
## 2831 100000991 Address No interview for other reason
## 2832 100000994 Address No interview for other reason
## 2833 100000995 Address No interview for other reason
## 2834 100000996 Address No interview for other reason
## 2835 100000997 Address No interview for other reason
## 2836 100000999 Address No interview for other reason
## 2837 100001000 Address No interview for other reason
## 2838 100001002 Address No interview for other reason
## 2839 100001004 Address No interview for other reason
## 2840 100001005 Address No interview for other reason
## 2841 100001007 Address No interview for other reason
## 2842 100001009 Address No interview for other reason
## 2843 100001010 Address No interview for other reason
## 2844 100001012 Address No interview for other reason
## 2845 100001013 Address No interview for other reason
## 2846 100001014 Address No interview for other reason
## 2847 100001015 Address No interview for other reason
## 2848 100001016 Address No interview for other reason
## 2849 100001017 Address No interview for other reason
## 2850 100001018 Address No interview for other reason
## 2851 100001019 Address No interview for other reason
## 2852 100001020 Address No interview for other reason
## 2853 100001024 Address No interview for other reason
## 2854 100001026 Address No interview for other reason
## 2855 100001028 Address No interview for other reason
## 2856 100001029 Address No interview for other reason
## 2857 100001030 Address No interview for other reason
## 2858 100001035 Address No interview for other reason
## 2859 100001036 Address No interview for other reason
## 2860 100001037 Address No interview for other reason
## 2861 100001039 Address No interview for other reason
## 2862 100001042 Address No interview for other reason
## 2863 100001043 Address No interview for other reason
## 2864 100001046 Address No interview for other reason
## 2865 100001050 Address No interview for other reason
## 2866 100001051 Address No interview for other reason
## 2867 100001053 Address No interview for other reason
## 2868 100001055 Address No interview for other reason
## 2869 100001056 Address No interview for other reason
## 2870 100001058 Address No interview for other reason
## 2871 100001059 Address No interview for other reason
## 2872 100001060 Address No interview for other reason
## 2873 100001061 Address No interview for other reason
## 2874 100001062 Address No interview for other reason
## 2875 100001064 Address No interview for other reason
## 2876 100001065 Address No interview for other reason
## 2877 100001066 Address No interview for other reason
## 2878 100001067 Address No interview for other reason
## 2879 100001068 Address No interview for other reason
## 2880 100001069 Address No interview for other reason
## 2881 100001071 Address No interview for other reason
## 2882 100001072 Address No interview for other reason
## 2883 100001073 Address No interview for other reason
## 2884 100001074 Address No interview for other reason
## 2885 100001075 Address No interview for other reason
## 2886 100001076 Address No interview for other reason
## 2887 100001077 Address No interview for other reason
## 2888 100001078 Address No interview for other reason
## 2889 100001079 Address No interview for other reason
## 2890 100001082 Address No interview for other reason
## 2891 100001083 Address No interview for other reason
## 2892 100001084 Address No interview for other reason
## 2893 100001085 Address No interview for other reason
## 2894 100001086 Address No interview for other reason
## 2895 100001088 Address No interview for other reason
## 2896 100001090 Address No interview for other reason
## 2897 100001091 Address No interview for other reason
## 2898 100001092 Address No interview for other reason
## 2899 100001093 Address No interview for other reason
## 2900 100001095 Address No interview for other reason
## 2901 100001096 Address No interview for other reason
## 2902 100001098 Address No interview for other reason
## 2903 100001099 Address No interview for other reason
## 2904 100001101 Address No interview for other reason
## 2905 100001104 Address No interview for other reason
## 2906 100001105 Address No interview for other reason
## 2907 100001108 Address No interview for other reason
## 2908 100001109 Address No interview for other reason
## 2909 100001111 Address No interview for other reason
## 2910 100001113 Address No interview for other reason
## 2911 100001115 Address No interview for other reason
## 2912 100001116 Address No interview for other reason
## 2913 100001117 Address No interview for other reason
## 2914 100001118 Address No interview for other reason
## 2915 100001120 Address No interview for other reason
## 2916 100001124 Address No interview for other reason
## 2917 100001127 Address No interview for other reason
## 2918 100001131 Address No interview for other reason
## 2919 100001133 Address No interview for other reason
## 2920 100001135 Address No interview for other reason
## 2921 100001138 Address No interview for other reason
## 2922 100001141 Address No interview for other reason
## 2923 100001143 Address No interview for other reason
## 2924 100001146 Address No interview for other reason
## 2925 100001149 Address No interview for other reason
## 2926 100001150 Address No interview for other reason
## 2927 100001151 Address No interview for other reason
## 2928 100001152 Address No interview for other reason
## 2929 100001156 Address No interview for other reason
## 2930 100001157 Address No interview for other reason
## 2931 100001158 Address No interview for other reason
## 2932 100001159 Address No interview for other reason
## 2933 100001161 Address No interview for other reason
## 2934 100001163 Address No interview for other reason
## 2935 100001165 Address No interview for other reason
## 2936 100001166 Address No interview for other reason
## 2937 100001170 Address No interview for other reason
## 2938 100001171 Address No interview for other reason
## 2939 100001172 Address No interview for other reason
## 2940 100001173 Address No interview for other reason
## 2941 100001174 Address No interview for other reason
## 2942 100001175 Address No interview for other reason
## 2943 100001177 Address No interview for other reason
## 2944 100001178 Address No interview for other reason
## 2945 100001179 Address No interview for other reason
## 2946 100001181 Address No interview for other reason
## 2947 100001182 Address No interview for other reason
## 2948 100001183 Address No interview for other reason
## 2949 100001184 Address No interview for other reason
## 2950 100001185 Address No interview for other reason
## 2951 100001186 Address No interview for other reason
## 2952 100001189 Address No interview for other reason
## 2953 100001190 Address No interview for other reason
## 2954 100001191 Address No interview for other reason
## 2955 100001193 Address No interview for other reason
## 2956 100001194 Address No interview for other reason
## 2957 100001195 Address No interview for other reason
## 2958 100001196 Address No interview for other reason
## 2959 100001198 Address No interview for other reason
## 2960 100001199 Address No interview for other reason
## 2961 100001200 Address No interview for other reason
## 2962 100001201 Address No interview for other reason
## 2963 100001203 Address No interview for other reason
## 2964 100001204 Address No interview for other reason
## 2965 100001205 Address No interview for other reason
## 2966 100001206 Address No interview for other reason
## 2967 100001208 Address No interview for other reason
## 2968 100001210 Address No interview for other reason
## 2969 100001211 Address No interview for other reason
## 2970 100001212 Address No interview for other reason
## 2971 100001213 Address No interview for other reason
## 2972 100001214 Address No interview for other reason
## 2973 100001216 Address No interview for other reason
## 2974 100001217 Address No interview for other reason
## 2975 100001218 Address No interview for other reason
## 2976 100001220 Address No interview for other reason
## 2977 100001221 Address No interview for other reason
## 2978 100001222 Address No interview for other reason
## 2979 100001224 Address No interview for other reason
## 2980 100001226 Address No interview for other reason
## 2981 100001227 Address No interview for other reason
## 2982 100001228 Address No interview for other reason
## 2983 100001229 Address No interview for other reason
## 2984 100001231 Address No interview for other reason
## 2985 100001233 Address No interview for other reason
## 2986 100001235 Address No interview for other reason
## 2987 100001236 Address No interview for other reason
## 2988 100001238 Address No interview for other reason
## 2989 100001244 Address No interview for other reason
## 2990 100001245 Address No interview for other reason
## 2991 100001246 Address No interview for other reason
## 2992 100001247 Address No interview for other reason
## 2993 100001249 Address No interview for other reason
## 2994 100001251 Address No interview for other reason
## 2995 100001254 Address No interview for other reason
## 2996 100001256 Address No interview for other reason
## 2997 100001257 Address No interview for other reason
## 2998 100001258 Address No interview for other reason
## 2999 100001260 Address No interview for other reason
## 3000 100001261 Address No interview for other reason
## 3001 100001263 Address No interview for other reason
## 3002 100001264 Address No interview for other reason
## 3003 100001265 Address No interview for other reason
## 3004 100001266 Address No interview for other reason
## 3005 100001268 Address No interview for other reason
## 3006 100001269 Address No interview for other reason
## 3007 100001270 Address No interview for other reason
## 3008 100001272 Address No interview for other reason
## 3009 100001276 Address No interview for other reason
## 3010 100001278 Address No interview for other reason
## 3011 100001280 Address No interview for other reason
## 3012 100001281 Address No interview for other reason
## 3013 100001282 Address No interview for other reason
## 3014 100001283 Address No interview for other reason
## 3015 100001284 Address No interview for other reason
## 3016 100001286 Address No interview for other reason
## 3017 100001287 Address No interview for other reason
## 3018 100001289 Address No interview for other reason
## 3019 100001290 Address No interview for other reason
## 3020 100001291 Address No interview for other reason
## 3021 100001292 Address No interview for other reason
## 3022 100001294 Address No interview for other reason
## 3023 100001296 Address No interview for other reason
## 3024 100001302 Address No interview for other reason
## 3025 100001305 Address No interview for other reason
## 3026 100001306 Address No interview for other reason
## 3027 100001308 Address No interview for other reason
## 3028 100001309 Address No interview for other reason
## 3029 100001312 Address No interview for other reason
## 3030 100001313 Address No interview for other reason
## 3031 100001314 Address No interview for other reason
## 3032 100001315 Address No interview for other reason
## 3033 100001317 Address No interview for other reason
## 3034 100001320 Address No interview for other reason
## 3035 100001321 Address No interview for other reason
## 3036 100001324 Address No interview for other reason
## 3037 100001326 Address No interview for other reason
## 3038 100001327 Address No interview for other reason
## 3039 100001328 Address No interview for other reason
## 3040 100001329 Address No interview for other reason
## 3041 100001330 Address No interview for other reason
## 3042 100001331 Address No interview for other reason
## 3043 100001332 Address No interview for other reason
## 3044 100001333 Address No interview for other reason
## 3045 100001334 Address No interview for other reason
## 3046 100001335 Address No interview for other reason
## 3047 100001336 Address No interview for other reason
## 3048 100001337 Address No interview for other reason
## 3049 100001338 Address No interview for other reason
## 3050 100001343 Address No interview for other reason
## 3051 100001344 Address No interview for other reason
## 3052 100001345 Address No interview for other reason
## 3053 100001346 Address No interview for other reason
## 3054 100001348 Address No interview for other reason
## 3055 100001351 Address No interview for other reason
## 3056 100001352 Address No interview for other reason
## 3057 100001355 Address No interview for other reason
## 3058 100001357 Address No interview for other reason
## 3059 100001358 Address No interview for other reason
## 3060 100001359 Address No interview for other reason
## 3061 100001361 Address No interview for other reason
## 3062 100001362 Address No interview for other reason
## 3063 100001364 Address No interview for other reason
## 3064 100001365 Address No interview for other reason
## 3065 100001366 Address No interview for other reason
## 3066 100001368 Address No interview for other reason
## 3067 100001369 Address No interview for other reason
## 3068 100001370 Address No interview for other reason
## 3069 100001371 Address No interview for other reason
## 3070 100001372 Address No interview for other reason
## 3071 100001374 Address No interview for other reason
## 3072 100001377 Address No interview for other reason
## 3073 100001379 Address No interview for other reason
## 3074 100001380 Address No interview for other reason
## 3075 100001382 Address No interview for other reason
## 3076 100001384 Address No interview for other reason
## 3077 100001385 Address No interview for other reason
## 3078 100001386 Address No interview for other reason
## 3079 100001387 Address No interview for other reason
## 3080 100001388 Address No interview for other reason
## 3081 100001389 Address No interview for other reason
## 3082 100001390 Address No interview for other reason
## 3083 100001392 Address No interview for other reason
## 3084 100001394 Address No interview for other reason
## 3085 100001396 Address No interview for other reason
## 3086 100001397 Address No interview for other reason
## 3087 100001398 Address No interview for other reason
## 3088 100001399 Address No interview for other reason
## 3089 100001400 Address No interview for other reason
## 3090 100001406 Address No interview for other reason
## 3091 100001408 Address No interview for other reason
## 3092 100001409 Address No interview for other reason
## 3093 100001410 Address No interview for other reason
## 3094 100001413 Address No interview for other reason
## 3095 100001415 Address No interview for other reason
## 3096 100001416 Address No interview for other reason
## 3097 100001424 Address No interview for other reason
## 3098 100001426 Address No interview for other reason
## 3099 100001429 Address No interview for other reason
## 3100 100001430 Address No interview for other reason
## 3101 100001431 Address No interview for other reason
## 3102 100001432 Address No interview for other reason
## 3103 100001433 Address No interview for other reason
## 3104 100001437 Address No interview for other reason
## 3105 100001438 Address No interview for other reason
## 3106 100001442 Address No interview for other reason
## 3107 100001446 Address No interview for other reason
## 3108 100001447 Address No interview for other reason
## 3109 100001450 Address No interview for other reason
## 3110 100001451 Address No interview for other reason
## 3111 100001452 Address No interview for other reason
## 3112 100001453 Address No interview for other reason
## 3113 100001454 Address No interview for other reason
## 3114 100001455 Address No interview for other reason
## 3115 100001457 Address No interview for other reason
## 3116 100001458 Address No interview for other reason
## 3117 100001459 Address No interview for other reason
## 3118 100001461 Address No interview for other reason
## 3119 100001462 Address No interview for other reason
## 3120 100001464 Address No interview for other reason
## 3121 100001465 Address No interview for other reason
## 3122 100001466 Address No interview for other reason
## 3123 100001467 Address No interview for other reason
## 3124 100001469 Address No interview for other reason
## 3125 100001471 Address No interview for other reason
## 3126 100001472 Address No interview for other reason
## 3127 100001473 Address No interview for other reason
## 3128 100001475 Address No interview for other reason
## 3129 100001476 Address No interview for other reason
## 3130 100001477 Address No interview for other reason
## 3131 100001478 Address No interview for other reason
## 3132 100001479 Address No interview for other reason
## 3133 100001481 Address No interview for other reason
## 3134 100001482 Address No interview for other reason
## 3135 100001484 Address No interview for other reason
## 3136 100001485 Address No interview for other reason
## 3137 100001486 Address No interview for other reason
## 3138 100001489 Address No interview for other reason
## 3139 100001490 Address No interview for other reason
## 3140 100001492 Address No interview for other reason
## 3141 100001493 Address No interview for other reason
## 3142 100001496 Address No interview for other reason
## 3143 100001498 Address No interview for other reason
## 3144 100001499 Address No interview for other reason
## 3145 100001500 Address No interview for other reason
## 3146 100001502 Address No interview for other reason
## 3147 100001504 Address No interview for other reason
## 3148 100001505 Address No interview for other reason
## 3149 100001507 Address No interview for other reason
## 3150 100001508 Address No interview for other reason
## 3151 100001509 Address No interview for other reason
## 3152 100001510 Address No interview for other reason
## 3153 100001511 Address No interview for other reason
## 3154 100001513 Address No interview for other reason
## 3155 100001514 Address No interview for other reason
## 3156 100001515 Address No interview for other reason
## 3157 100001516 Address No interview for other reason
## 3158 100001519 Address No interview for other reason
## 3159 100001520 Address No interview for other reason
## 3160 100001521 Address No interview for other reason
## 3161 100001527 Address No interview for other reason
## 3162 100001531 Address No interview for other reason
## 3163 100001532 Address No interview for other reason
## 3164 100001533 Address No interview for other reason
## 3165 100001535 Address No interview for other reason
## 3166 100001536 Address No interview for other reason
## 3167 100001537 Address No interview for other reason
## 3168 100001539 Address No interview for other reason
## 3169 100001542 Address No interview for other reason
## 3170 100001543 Address No interview for other reason
## 3171 100001544 Address No interview for other reason
## 3172 100001545 Address No interview for other reason
## 3173 100001546 Address No interview for other reason
## 3174 100001548 Address No interview for other reason
## 3175 100001550 Address No interview for other reason
## 3176 100001552 Address No interview for other reason
## 3177 100001553 Address No interview for other reason
## 3178 100001555 Address No interview for other reason
## 3179 100001556 Address No interview for other reason
## 3180 100001557 Address No interview for other reason
## 3181 100001558 Address No interview for other reason
## 3182 100001559 Address No interview for other reason
## 3183 100001560 Address No interview for other reason
## 3184 100001561 Address No interview for other reason
## 3185 100001562 Address No interview for other reason
## 3186 100001563 Address No interview for other reason
## 3187 100001567 Address No interview for other reason
## 3188 100001568 Address No interview for other reason
## 3189 100001570 Address No interview for other reason
## 3190 100001571 Address No interview for other reason
## 3191 100001577 Address No interview for other reason
## 3192 100001578 Address No interview for other reason
## 3193 100001579 Address No interview for other reason
## 3194 100001580 Address No interview for other reason
## 3195 100001581 Address No interview for other reason
## 3196 100001582 Address No interview for other reason
## 3197 100001583 Address No interview for other reason
## 3198 100001584 Address No interview for other reason
## 3199 100001585 Address No interview for other reason
## 3200 100001587 Address No interview for other reason
## 3201 100001588 Address No interview for other reason
## 3202 100001589 Address No interview for other reason
## 3203 100001590 Address No interview for other reason
## 3204 100001591 Address No interview for other reason
## 3205 100001592 Address No interview for other reason
## 3206 100001593 Address No interview for other reason
## 3207 100001595 Address No interview for other reason
## 3208 100001596 Address No interview for other reason
## 3209 100001601 Address No interview for other reason
## 3210 100001605 Address No interview for other reason
## 3211 100001606 Address No interview for other reason
## 3212 100001607 Address No interview for other reason
## 3213 100001608 Address No interview for other reason
## 3214 100001609 Address No interview for other reason
## 3215 100001610 Address No interview for other reason
## 3216 100001611 Address No interview for other reason
## 3217 100001612 Address No interview for other reason
## 3218 100001613 Address No interview for other reason
## 3219 100001614 Address No interview for other reason
## 3220 100001616 Address No interview for other reason
## 3221 100001617 Address No interview for other reason
## 3222 100001618 Address No interview for other reason
## 3223 100001619 Address No interview for other reason
## 3224 100001621 Address No interview for other reason
## 3225 100001622 Address No interview for other reason
## 3226 100001623 Address No interview for other reason
## 3227 100001625 Address No interview for other reason
## 3228 100001630 Address No interview for other reason
## 3229 100001632 Address No interview for other reason
## 3230 100001633 Address No interview for other reason
## 3231 100001634 Address No interview for other reason
## 3232 100001636 Address No interview for other reason
## 3233 100001637 Address No interview for other reason
## 3234 100001639 Address No interview for other reason
## 3235 100001640 Address No interview for other reason
## 3236 100001641 Address No interview for other reason
## 3237 100001643 Address No interview for other reason
## 3238 100001645 Address No interview for other reason
## 3239 100001646 Address No interview for other reason
## 3240 100001647 Address No interview for other reason
## 3241 100001648 Address No interview for other reason
## 3242 100001653 Address No interview for other reason
## 3243 100001658 Address No interview for other reason
## 3244 100001659 Address No interview for other reason
## 3245 100001660 Address No interview for other reason
## 3246 100001661 Address No interview for other reason
## 3247 100001662 Address No interview for other reason
## 3248 100001664 Address No interview for other reason
## 3249 100001666 Address No interview for other reason
## 3250 100001667 Address No interview for other reason
## 3251 100001670 Address No interview for other reason
## 3252 100001671 Address No interview for other reason
## 3253 100001673 Address No interview for other reason
## 3254 100001675 Address No interview for other reason
## 3255 100001676 Address No interview for other reason
## 3256 100001684 Address No interview for other reason
## 3257 100001685 Address No interview for other reason
## 3258 100001686 Address No interview for other reason
## 3259 100001687 Address No interview for other reason
## 3260 100001693 Address No interview for other reason
## 3261 100001694 Address No interview for other reason
## 3262 100001695 Address No interview for other reason
## 3263 100001697 Address No interview for other reason
## 3264 100001698 Address No interview for other reason
## 3265 100001699 Address No interview for other reason
## 3266 100001702 Address No interview for other reason
## 3267 100001703 Address No interview for other reason
## 3268 100001704 Address No interview for other reason
## 3269 100001706 Address No interview for other reason
## 3270 100001710 Address No interview for other reason
## 3271 100001711 Address No interview for other reason
## 3272 100001712 Address No interview for other reason
## 3273 100001715 Address No interview for other reason
## 3274 100001718 Address No interview for other reason
## 3275 100001719 Address No interview for other reason
## 3276 100001721 Address No interview for other reason
## 3277 100001723 Address No interview for other reason
## 3278 100001724 Address No interview for other reason
## 3279 100001725 Address No interview for other reason
## 3280 100001727 Address No interview for other reason
## 3281 100001729 Address No interview for other reason
## 3282 100001730 Address No interview for other reason
## 3283 100001731 Address No interview for other reason
## 3284 100001732 Address No interview for other reason
## 3285 100001736 Address No interview for other reason
## 3286 100001737 Address No interview for other reason
## 3287 100001738 Address No interview for other reason
## 3288 100001739 Address No interview for other reason
## 3289 100001741 Address No interview for other reason
## 3290 100001742 Address No interview for other reason
## 3291 100001743 Address No interview for other reason
## 3292 100001745 Address No interview for other reason
## 3293 100001747 Address No interview for other reason
## 3294 100001750 Address No interview for other reason
## 3295 100001751 Address No interview for other reason
## 3296 100001752 Address No interview for other reason
## 3297 100001753 Address No interview for other reason
## 3298 100001754 Address No interview for other reason
## 3299 100001756 Address No interview for other reason
## 3300 100001757 Address No interview for other reason
## 3301 100001759 Address No interview for other reason
## 3302 100001761 Address No interview for other reason
## 3303 100001762 Address No interview for other reason
## 3304 100001765 Address No interview for other reason
## 3305 100001766 Address No interview for other reason
## 3306 100001769 Address No interview for other reason
## 3307 100001775 Address No interview for other reason
## 3308 100001777 Address No interview for other reason
## 3309 100001778 Address No interview for other reason
## 3310 100001779 Address No interview for other reason
## 3311 100001780 Address No interview for other reason
## 3312 100001782 Address No interview for other reason
## 3313 100001784 Address No interview for other reason
## 3314 100001785 Address No interview for other reason
## 3315 100001787 Address No interview for other reason
## 3316 100001788 Address No interview for other reason
## 3317 100001789 Address No interview for other reason
## 3318 100001792 Address No interview for other reason
## 3319 100001794 Address No interview for other reason
## 3320 100001799 Address No interview for other reason
## 3321 100001802 Address No interview for other reason
## 3322 100001803 Address No interview for other reason
## 3323 100001806 Address No interview for other reason
## 3324 100001808 Address No interview for other reason
## 3325 100001809 Address No interview for other reason
## 3326 100001810 Address No interview for other reason
## 3327 100001811 Address No interview for other reason
## 3328 100001812 Address No interview for other reason
## 3329 100001813 Address No interview for other reason
## 3330 100001814 Address No interview for other reason
## 3331 100001816 Address No interview for other reason
## 3332 100001821 Address No interview for other reason
## 3333 100001822 Address No interview for other reason
## 3334 100001823 Address No interview for other reason
## 3335 100001824 Address No interview for other reason
## 3336 100001825 Address No interview for other reason
## 3337 100001826 Address No interview for other reason
## 3338 100001828 Address No interview for other reason
## 3339 100001829 Address No interview for other reason
## 3340 100001831 Address No interview for other reason
## 3341 100001833 Address No interview for other reason
## 3342 100001835 Address No interview for other reason
## 3343 100001836 Address No interview for other reason
## 3344 100001837 Address No interview for other reason
## 3345 100001838 Address No interview for other reason
## 3346 100001840 Address No interview for other reason
## 3347 100001841 Address No interview for other reason
## 3348 100001843 Address No interview for other reason
## 3349 100001844 Address No interview for other reason
## 3350 100001846 Address No interview for other reason
## 3351 100001847 Address No interview for other reason
## 3352 100001848 Address No interview for other reason
## 3353 100001851 Address No interview for other reason
## 3354 100001853 Address No interview for other reason
## 3355 100001855 Address No interview for other reason
## 3356 100001857 Address No interview for other reason
## 3357 100001858 Address No interview for other reason
## 3358 100001859 Address No interview for other reason
## 3359 100001860 Address No interview for other reason
## 3360 100001861 Address No interview for other reason
## 3361 100001863 Address No interview for other reason
## 3362 100001864 Address No interview for other reason
## 3363 100001865 Address No interview for other reason
## 3364 100001866 Address No interview for other reason
## 3365 100001867 Address No interview for other reason
## 3366 100001868 Address No interview for other reason
## 3367 100001870 Address No interview for other reason
## 3368 100001872 Address No interview for other reason
## 3369 100001873 Address No interview for other reason
## 3370 100001875 Address No interview for other reason
## 3371 100001876 Address No interview for other reason
## 3372 100001878 Address No interview for other reason
## 3373 100001879 Address No interview for other reason
## 3374 100001882 Address No interview for other reason
## 3375 100001884 Address No interview for other reason
## 3376 100001886 Address No interview for other reason
## 3377 100001887 Address No interview for other reason
## 3378 100001889 Address No interview for other reason
## 3379 100001891 Address No interview for other reason
## 3380 100001894 Address No interview for other reason
## 3381 100001896 Address No interview for other reason
## 3382 100001898 Address No interview for other reason
## 3383 100001899 Address No interview for other reason
## 3384 100001900 Address No interview for other reason
## 3385 100001901 Address No interview for other reason
## 3386 100001902 Address No interview for other reason
## 3387 100001903 Address No interview for other reason
## 3388 100001906 Address No interview for other reason
## 3389 100001907 Address No interview for other reason
## 3390 100001908 Address No interview for other reason
## 3391 100001910 Address No interview for other reason
## 3392 100001911 Address No interview for other reason
## 3393 100001913 Address No interview for other reason
## 3394 100001917 Address No interview for other reason
## 3395 100001920 Address No interview for other reason
## 3396 100001922 Address No interview for other reason
## 3397 100001925 Address No interview for other reason
## 3398 100001926 Address No interview for other reason
## 3399 100001927 Address No interview for other reason
## 3400 100001928 Address No interview for other reason
## 3401 100001929 Address No interview for other reason
## 3402 100001932 Address No interview for other reason
## 3403 100001933 Address No interview for other reason
## 3404 100001935 Address No interview for other reason
## 3405 100001937 Address No interview for other reason
## 3406 100001938 Address No interview for other reason
## 3407 100001940 Address No interview for other reason
## 3408 100001941 Address No interview for other reason
## 3409 100001942 Address No interview for other reason
## 3410 100001943 Address No interview for other reason
## 3411 100001944 Address No interview for other reason
## 3412 100001945 Address No interview for other reason
## 3413 100001946 Address No interview for other reason
## 3414 100001947 Address No interview for other reason
## 3415 100001949 Address No interview for other reason
## 3416 100001950 Address No interview for other reason
## 3417 100001952 Address No interview for other reason
## 3418 100001954 Address No interview for other reason
## 3419 100001958 Address No interview for other reason
## 3420 100001959 Address No interview for other reason
## 3421 100001960 Address No interview for other reason
## 3422 100001962 Address No interview for other reason
## 3423 100001964 Address No interview for other reason
## 3424 100001965 Address No interview for other reason
## 3425 100001966 Address No interview for other reason
## 3426 100001968 Address No interview for other reason
## 3427 100001970 Address No interview for other reason
## 3428 100001971 Address No interview for other reason
## 3429 100001975 Address No interview for other reason
## 3430 100001976 Address No interview for other reason
## 3431 100001977 Address No interview for other reason
## 3432 100001978 Address No interview for other reason
## 3433 100001980 Address No interview for other reason
## 3434 100001982 Address No interview for other reason
## 3435 100001983 Address No interview for other reason
## 3436 100001984 Address No interview for other reason
## 3437 100001985 Address No interview for other reason
## 3438 100001987 Address No interview for other reason
## 3439 100001988 Address No interview for other reason
## 3440 100001989 Address No interview for other reason
## 3441 100001990 Address No interview for other reason
## 3442 100001991 Address No interview for other reason
## 3443 100001994 Address No interview for other reason
## 3444 100001997 Address No interview for other reason
## 3445 100001998 Address No interview for other reason
## 3446 100002001 Address No interview for other reason
## 3447 100002002 Address No interview for other reason
## 3448 100002006 Address No interview for other reason
## 3449 100002009 Address No interview for other reason
## 3450 100002010 Address No interview for other reason
## 3451 100002013 Address No interview for other reason
## 3452 100002014 Address No interview for other reason
## 3453 100002015 Address No interview for other reason
## 3454 100002016 Address No interview for other reason
## 3455 100002017 Address No interview for other reason
## 3456 100002018 Address No interview for other reason
## 3457 100002020 Address No interview for other reason
## 3458 100002021 Address No interview for other reason
## 3459 100002022 Address No interview for other reason
## 3460 100002023 Address No interview for other reason
## 3461 100002027 Address No interview for other reason
## 3462 100002028 Address No interview for other reason
## 3463 100002029 Address No interview for other reason
## 3464 100002031 Address No interview for other reason
## 3465 100002032 Address No interview for other reason
## 3466 100002033 Address No interview for other reason
## 3467 100002035 Address No interview for other reason
## 3468 100002036 Address No interview for other reason
## 3469 100002037 Address No interview for other reason
## 3470 100002038 Address No interview for other reason
## 3471 100002039 Address No interview for other reason
## 3472 100002040 Address No interview for other reason
## 3473 100002042 Address No interview for other reason
## 3474 100002044 Address No interview for other reason
## 3475 100002048 Address No interview for other reason
## 3476 100002053 Address No interview for other reason
## 3477 100002054 Address No interview for other reason
## 3478 100002055 Address No interview for other reason
## 3479 100002056 Address No interview for other reason
## 3480 100002057 Address No interview for other reason
## 3481 100002058 Address No interview for other reason
## 3482 100002060 Address No interview for other reason
## 3483 100002063 Address No interview for other reason
## 3484 100002064 Address No interview for other reason
## 3485 100002065 Address No interview for other reason
## 3486 100002070 Address No interview for other reason
## 3487 100002071 Address No interview for other reason
## 3488 100002073 Address No interview for other reason
## 3489 100002074 Address No interview for other reason
## 3490 100002078 Address No interview for other reason
## 3491 100002084 Address No interview for other reason
## 3492 100002086 Address No interview for other reason
## 3493 100002087 Address No interview for other reason
## 3494 100002088 Address No interview for other reason
## 3495 100002091 Address No interview for other reason
## 3496 100002092 Address No interview for other reason
## 3497 100002093 Address No interview for other reason
## 3498 100002094 Address No interview for other reason
## 3499 100002096 Address No interview for other reason
## 3500 100002097 Address No interview for other reason
## 3501 100002099 Address No interview for other reason
## 3502 100002101 Address No interview for other reason
## 3503 100002102 Address No interview for other reason
## 3504 100002103 Address No interview for other reason
## 3505 100002104 Address No interview for other reason
## 3506 100002108 Address No interview for other reason
## 3507 100002109 Address No interview for other reason
## 3508 100002110 Address No interview for other reason
## 3509 100002111 Address No interview for other reason
## 3510 100002114 Address No interview for other reason
## 3511 100002115 Address No interview for other reason
## 3512 100002116 Address No interview for other reason
## 3513 100002119 Address No interview for other reason
## 3514 100002120 Address No interview for other reason
## 3515 100002124 Address No interview for other reason
## 3516 100002126 Address No interview for other reason
## 3517 100002127 Address No interview for other reason
## 3518 100002128 Address No interview for other reason
## 3519 100002129 Address No interview for other reason
## 3520 100002130 Address No interview for other reason
## 3521 100002133 Address No interview for other reason
## 3522 100002134 Address No interview for other reason
## 3523 100002135 Address No interview for other reason
## 3524 100002138 Address No interview for other reason
## 3525 100002139 Address No interview for other reason
## 3526 100002144 Address No interview for other reason
## 3527 100002145 Address No interview for other reason
## 3528 100002147 Address No interview for other reason
## 3529 100002148 Address No interview for other reason
## 3530 100002149 Address No interview for other reason
## 3531 100002150 Address No interview for other reason
## 3532 100002151 Address No interview for other reason
## 3533 100002153 Address No interview for other reason
## 3534 100002157 Address No interview for other reason
## 3535 100002158 Address No interview for other reason
## 3536 100002160 Address No interview for other reason
## 3537 100002163 Address No interview for other reason
## 3538 100002165 Address No interview for other reason
## 3539 100002167 Address No interview for other reason
## 3540 100002168 Address No interview for other reason
## 3541 100002169 Address No interview for other reason
## 3542 100002170 Address No interview for other reason
## 3543 100002171 Address No interview for other reason
## 3544 100002172 Address No interview for other reason
## 3545 100002173 Address No interview for other reason
## 3546 100002174 Address No interview for other reason
## 3547 100002177 Address No interview for other reason
## 3548 100002179 Address No interview for other reason
## 3549 100002180 Address No interview for other reason
## 3550 100002181 Address No interview for other reason
## 3551 100002182 Address No interview for other reason
## 3552 100002183 Address No interview for other reason
## 3553 100002184 Address No interview for other reason
## 3554 100002185 Address No interview for other reason
## 3555 100002189 Address No interview for other reason
## 3556 100002190 Address No interview for other reason
## 3557 100002191 Address No interview for other reason
## 3558 100002192 Address No interview for other reason
## 3559 100002193 Address No interview for other reason
## 3560 100002197 Address No interview for other reason
## 3561 100002198 Address No interview for other reason
## 3562 100002201 Address No interview for other reason
## 3563 100002209 Address No interview for other reason
## 3564 100002211 Address No interview for other reason
## 3565 100002212 Address No interview for other reason
## 3566 100002214 Address No interview for other reason
## 3567 100002215 Address No interview for other reason
## 3568 100002216 Address No interview for other reason
## 3569 100002217 Address No interview for other reason
## 3570 100002218 Address No interview for other reason
## 3571 100002219 Address No interview for other reason
## 3572 100002220 Address No interview for other reason
## 3573 100002223 Address No interview for other reason
## 3574 100002224 Address No interview for other reason
## 3575 100002225 Address No interview for other reason
## 3576 100002230 Address No interview for other reason
## 3577 100002232 Address No interview for other reason
## 3578 100002234 Address No interview for other reason
## 3579 100002235 Address No interview for other reason
## 3580 100002236 Address No interview for other reason
## 3581 100002237 Address No interview for other reason
## 3582 100002238 Address No interview for other reason
## 3583 100002239 Address No interview for other reason
## 3584 100002240 Address No interview for other reason
## 3585 100002242 Address No interview for other reason
## 3586 100002246 Address No interview for other reason
## 3587 100002247 Address No interview for other reason
## 3588 100002248 Address No interview for other reason
## 3589 100002255 Address No interview for other reason
## 3590 100002257 Address No interview for other reason
## 3591 100002259 Address No interview for other reason
## 3592 100002260 Address No interview for other reason
## 3593 100002262 Address No interview for other reason
## 3594 100002263 Address No interview for other reason
## 3595 100002266 Address No interview for other reason
## 3596 100002267 Address No interview for other reason
## 3597 100002268 Address No interview for other reason
## 3598 100002271 Address No interview for other reason
## 3599 100002274 Address No interview for other reason
## 3600 100002277 Address No interview for other reason
## 3601 100002279 Address No interview for other reason
## 3602 100002281 Address No interview for other reason
## 3603 100002283 Address No interview for other reason
## 3604 100002284 Address No interview for other reason
## 3605 100002287 Address No interview for other reason
## 3606 100002288 Address No interview for other reason
## 3607 100002290 Address No interview for other reason
## 3608 100002291 Address No interview for other reason
## 3609 100002292 Address No interview for other reason
## 3610 100002294 Address No interview for other reason
## 3611 100002296 Address No interview for other reason
## 3612 100002297 Address No interview for other reason
## 3613 100002298 Address No interview for other reason
## 3614 100002301 Address No interview for other reason
## 3615 100002303 Address No interview for other reason
## 3616 100002304 Address No interview for other reason
## 3617 100002308 Address No interview for other reason
## 3618 100002309 Address No interview for other reason
## 3619 100002311 Address No interview for other reason
## 3620 100002312 Address No interview for other reason
## 3621 100002314 Address No interview for other reason
## 3622 100002315 Address No interview for other reason
## 3623 100002316 Address No interview for other reason
## 3624 100002317 Address No interview for other reason
## 3625 100002318 Address No interview for other reason
## 3626 100002321 Address No interview for other reason
## 3627 100002322 Address No interview for other reason
## 3628 100002323 Address No interview for other reason
## 3629 100002324 Address No interview for other reason
## 3630 100002326 Address No interview for other reason
## 3631 100002327 Address No interview for other reason
## 3632 100002329 Address No interview for other reason
## 3633 100002330 Address No interview for other reason
## 3634 100002331 Address No interview for other reason
## 3635 100002332 Address No interview for other reason
## 3636 100002333 Address No interview for other reason
## 3637 100002335 Address No interview for other reason
## 3638 100002337 Address No interview for other reason
## 3639 100002340 Address No interview for other reason
## 3640 100002342 Address No interview for other reason
## 3641 100002343 Address No interview for other reason
## 3642 100002344 Address No interview for other reason
## 3643 100002346 Address No interview for other reason
## 3644 100002349 Address No interview for other reason
## 3645 100002350 Address No interview for other reason
## 3646 100002352 Address No interview for other reason
## 3647 100002353 Address No interview for other reason
## 3648 100002355 Address No interview for other reason
## 3649 100002359 Address No interview for other reason
## 3650 100002362 Address No interview for other reason
## 3651 100002365 Address No interview for other reason
## 3652 100002373 Address No interview for other reason
## 3653 100002375 Address No interview for other reason
## 3654 100002376 Address No interview for other reason
## 3655 100002377 Address No interview for other reason
## 3656 100002378 Address No interview for other reason
## 3657 100002382 Address No interview for other reason
## 3658 100002384 Address No interview for other reason
## 3659 100002388 Address No interview for other reason
## 3660 100002389 Address No interview for other reason
## 3661 100002391 Address No interview for other reason
## 3662 100002392 Address No interview for other reason
## 3663 100002394 Address No interview for other reason
## 3664 100002395 Address No interview for other reason
## 3665 100002397 Address No interview for other reason
## 3666 100002399 Address No interview for other reason
## 3667 100002401 Address No interview for other reason
## 3668 100002402 Address No interview for other reason
## 3669 100002403 Address No interview for other reason
## 3670 100002404 Address No interview for other reason
## 3671 100002405 Address No interview for other reason
## 3672 100002406 Address No interview for other reason
## 3673 100002409 Address No interview for other reason
## 3674 100002411 Address No interview for other reason
## 3675 100002413 Address No interview for other reason
## 3676 100002414 Address No interview for other reason
## 3677 100002415 Address No interview for other reason
## 3678 100002416 Address No interview for other reason
## 3679 100002417 Address No interview for other reason
## 3680 100002419 Address No interview for other reason
## 3681 100002421 Address No interview for other reason
## 3682 100002423 Address No interview for other reason
## 3683 100002426 Address No interview for other reason
## 3684 100002427 Address No interview for other reason
## 3685 100002428 Address No interview for other reason
## 3686 100002429 Address No interview for other reason
## 3687 100002431 Address No interview for other reason
## 3688 100002432 Address No interview for other reason
## 3689 100002434 Address No interview for other reason
## 3690 100002435 Address No interview for other reason
## 3691 100002436 Address No interview for other reason
## 3692 100002437 Address No interview for other reason
## 3693 100002443 Address No interview for other reason
## 3694 100002445 Address No interview for other reason
## 3695 100002446 Address No interview for other reason
## 3696 100002447 Address No interview for other reason
## 3697 100002448 Address No interview for other reason
## 3698 100002449 Address No interview for other reason
## 3699 100002450 Address No interview for other reason
## 3700 100002451 Address No interview for other reason
## 3701 100002454 Address No interview for other reason
## 3702 100002456 Address No interview for other reason
## 3703 100002458 Address No interview for other reason
## 3704 100002459 Address No interview for other reason
## 3705 100002461 Address No interview for other reason
## 3706 100002463 Address No interview for other reason
## 3707 100002464 Address No interview for other reason
## 3708 100002465 Address No interview for other reason
## 3709 100002466 Address No interview for other reason
## 3710 100002469 Address No interview for other reason
## 3711 100002470 Address No interview for other reason
## 3712 100002471 Address No interview for other reason
## 3713 100002472 Address No interview for other reason
## 3714 100002473 Address No interview for other reason
## 3715 100002475 Address No interview for other reason
## 3716 100002477 Address No interview for other reason
## 3717 100002480 Address No interview for other reason
## 3718 100002481 Address No interview for other reason
## 3719 100002482 Address No interview for other reason
## 3720 100002483 Address No interview for other reason
## 3721 100002485 Address No interview for other reason
## 3722 100002487 Address No interview for other reason
## 3723 100002488 Address No interview for other reason
## 3724 100002489 Address No interview for other reason
## 3725 100002491 Address No interview for other reason
## 3726 100002492 Address No interview for other reason
## 3727 100002497 Address No interview for other reason
## 3728 100002498 Address No interview for other reason
## 3729 100002502 Address No interview for other reason
## 3730 100002503 Address No interview for other reason
## 3731 100002506 Address No interview for other reason
## 3732 100002508 Address No interview for other reason
## 3733 100002509 Address No interview for other reason
## 3734 100002510 Address No interview for other reason
## 3735 100002512 Address No interview for other reason
## 3736 100002514 Address No interview for other reason
## 3737 100002515 Address No interview for other reason
## 3738 100002517 Address No interview for other reason
## 3739 100002519 Address No interview for other reason
## 3740 100002520 Address No interview for other reason
## 3741 100002521 Address No interview for other reason
## 3742 100002522 Address No interview for other reason
## 3743 100002527 Address No interview for other reason
## 3744 100002528 Address No interview for other reason
## 3745 100002529 Address No interview for other reason
## 3746 100002531 Address No interview for other reason
## 3747 100002532 Address No interview for other reason
## 3748 100002533 Address No interview for other reason
## 3749 100002534 Address No interview for other reason
## 3750 100002535 Address No interview for other reason
## 3751 100002536 Address No interview for other reason
## 3752 100002537 Address No interview for other reason
## 3753 100002538 Address No interview for other reason
## 3754 100002539 Address No interview for other reason
## 3755 100002544 Address No interview for other reason
## 3756 100002545 Address No interview for other reason
## 3757 100002547 Address No interview for other reason
## 3758 100002549 Address No interview for other reason
## 3759 100002550 Address No interview for other reason
## 3760 100002551 Address No interview for other reason
## 3761 100002552 Address No interview for other reason
## 3762 100002553 Address No interview for other reason
## 3763 100002558 Address No interview for other reason
## 3764 100002562 Address No interview for other reason
## 3765 100002563 Address No interview for other reason
## 3766 100002565 Address No interview for other reason
## 3767 100002566 Address No interview for other reason
## 3768 100002567 Address No interview for other reason
## 3769 100002568 Address No interview for other reason
## 3770 100002569 Address No interview for other reason
## 3771 100002571 Address No interview for other reason
## 3772 100002575 Address No interview for other reason
## 3773 100002578 Address No interview for other reason
## 3774 100002580 Address No interview for other reason
## 3775 100002581 Address No interview for other reason
## 3776 100002582 Address No interview for other reason
## 3777 100002586 Address No interview for other reason
## 3778 100002587 Address No interview for other reason
## 3779 100002589 Address No interview for other reason
## 3780 100002591 Address No interview for other reason
## 3781 100002592 Address No interview for other reason
## 3782 100002593 Address No interview for other reason
## 3783 100002596 Address No interview for other reason
## 3784 100002597 Address No interview for other reason
## 3785 100002598 Address No interview for other reason
## 3786 100002600 Address No interview for other reason
## 3787 100002601 Address No interview for other reason
## 3788 100002603 Address No interview for other reason
## 3789 100002607 Address No interview for other reason
## 3790 100002608 Address No interview for other reason
## 3791 100002609 Address No interview for other reason
## 3792 100002610 Address No interview for other reason
## 3793 100002611 Address No interview for other reason
## 3794 100002612 Address No interview for other reason
## 3795 100002615 Address No interview for other reason
## 3796 100002616 Address No interview for other reason
## 3797 100002619 Address No interview for other reason
## 3798 100002621 Address No interview for other reason
## 3799 100002622 Address No interview for other reason
## 3800 100002625 Address No interview for other reason
## 3801 100002627 Address No interview for other reason
## 3802 100002628 Address No interview for other reason
## 3803 100002629 Address No interview for other reason
## 3804 100002635 Address No interview for other reason
## 3805 100002637 Address No interview for other reason
## 3806 100002639 Address No interview for other reason
## 3807 100002640 Address No interview for other reason
## 3808 100002641 Address No interview for other reason
## 3809 100002642 Address No interview for other reason
## 3810 100002643 Address No interview for other reason
## 3811 100002644 Address No interview for other reason
## 3812 100002646 Address No interview for other reason
## 3813 100002648 Address No interview for other reason
## 3814 100002649 Address No interview for other reason
## 3815 100002652 Address No interview for other reason
## 3816 100002653 Address No interview for other reason
## 3817 100002654 Address No interview for other reason
## 3818 100002657 Address No interview for other reason
## 3819 100002658 Address No interview for other reason
## 3820 100002659 Address No interview for other reason
## 3821 100002662 Address No interview for other reason
## 3822 100002663 Address No interview for other reason
## 3823 100002664 Address No interview for other reason
## 3824 100002665 Address No interview for other reason
## 3825 100002667 Address No interview for other reason
## 3826 100002669 Address No interview for other reason
## 3827 100002670 Address No interview for other reason
## 3828 100002671 Address No interview for other reason
## 3829 100002675 Address No interview for other reason
## 3830 100002677 Address No interview for other reason
## 3831 100002678 Address No interview for other reason
## 3832 100002679 Address No interview for other reason
## 3833 100002682 Address No interview for other reason
## 3834 100002683 Address No interview for other reason
## 3835 100002684 Address No interview for other reason
## 3836 100002685 Address No interview for other reason
## 3837 100002688 Address No interview for other reason
## 3838 100002689 Address No interview for other reason
## 3839 100002690 Address No interview for other reason
## 3840 100002691 Address No interview for other reason
## 3841 100002693 Address No interview for other reason
## 3842 100002694 Address No interview for other reason
## 3843 100002695 Address No interview for other reason
## 3844 100002697 Address No interview for other reason
## 3845 100002698 Address No interview for other reason
## 3846 100002699 Address No interview for other reason
## 3847 100002700 Address No interview for other reason
## 3848 100002701 Address No interview for other reason
## 3849 100002703 Address No interview for other reason
## 3850 100002706 Address No interview for other reason
## 3851 100002707 Address No interview for other reason
## 3852 100002708 Address No interview for other reason
## 3853 100002709 Address No interview for other reason
## 3854 100002711 Address No interview for other reason
## 3855 100002713 Address No interview for other reason
## 3856 100002714 Address No interview for other reason
## 3857 100002718 Address No interview for other reason
## 3858 100002719 Address No interview for other reason
## 3859 100002720 Address No interview for other reason
## 3860 100002724 Address No interview for other reason
## 3861 100002725 Address No interview for other reason
## 3862 100002726 Address No interview for other reason
## 3863 100002730 Address No interview for other reason
## 3864 100002731 Address No interview for other reason
## 3865 100002733 Address No interview for other reason
## 3866 100002734 Address No interview for other reason
## 3867 100002736 Address No interview for other reason
## 3868 100002737 Address No interview for other reason
## 3869 100002738 Address No interview for other reason
## 3870 100002739 Address No interview for other reason
## 3871 100002740 Address No interview for other reason
## 3872 100002741 Address No interview for other reason
## 3873 100002742 Address No interview for other reason
## 3874 100002744 Address No interview for other reason
## 3875 100002746 Address No interview for other reason
## 3876 100002747 Address No interview for other reason
## 3877 100002748 Address No interview for other reason
## 3878 100002750 Address No interview for other reason
## 3879 100002751 Address No interview for other reason
## 3880 100002753 Address No interview for other reason
## 3881 100002754 Address No interview for other reason
## 3882 100002755 Address No interview for other reason
## 3883 100002757 Address No interview for other reason
## 3884 100002758 Address No interview for other reason
## 3885 100002759 Address No interview for other reason
## 3886 100002761 Address No interview for other reason
## 3887 100002763 Address No interview for other reason
## 3888 100002765 Address No interview for other reason
## 3889 100002766 Address No interview for other reason
## 3890 100002767 Address No interview for other reason
## 3891 100002768 Address No interview for other reason
## 3892 100002769 Address No interview for other reason
## 3893 100002770 Address No interview for other reason
## 3894 100002773 Address No interview for other reason
## 3895 100002775 Address No interview for other reason
## 3896 100002778 Address No interview for other reason
## 3897 100002781 Address No interview for other reason
## 3898 100002782 Address No interview for other reason
## 3899 100002783 Address No interview for other reason
## 3900 100002784 Address No interview for other reason
## 3901 100002786 Address No interview for other reason
## 3902 100002788 Address No interview for other reason
## 3903 100002789 Address No interview for other reason
## 3904 100002791 Address No interview for other reason
## 3905 100002792 Address No interview for other reason
## 3906 100002793 Address No interview for other reason
## 3907 100002795 Address No interview for other reason
## 3908 100002796 Address No interview for other reason
## 3909 100002798 Address No interview for other reason
## 3910 100002803 Address No interview for other reason
## 3911 100002806 Address No interview for other reason
## 3912 100002807 Address No interview for other reason
## 3913 100002809 Address No interview for other reason
## 3914 100002810 Address No interview for other reason
## 3915 100002812 Address No interview for other reason
## 3916 100002813 Address No interview for other reason
## 3917 100002814 Address No interview for other reason
## 3918 100002818 Address No interview for other reason
## 3919 100002820 Address No interview for other reason
## 3920 100002821 Address No interview for other reason
## 3921 100002822 Address No interview for other reason
## 3922 100002825 Address No interview for other reason
## 3923 100002828 Address No interview for other reason
## 3924 100002829 Address No interview for other reason
## 3925 100002830 Address No interview for other reason
## 3926 100002835 Address No interview for other reason
## 3927 100002837 Address No interview for other reason
## 3928 100002839 Address No interview for other reason
## 3929 100002841 Address No interview for other reason
## 3930 100002842 Address No interview for other reason
## 3931 100002843 Address No interview for other reason
## 3932 100002844 Address No interview for other reason
## 3933 100002846 Address No interview for other reason
## 3934 100002847 Address No interview for other reason
## 3935 100002849 Address No interview for other reason
## 3936 100002851 Address No interview for other reason
## 3937 100002854 Address No interview for other reason
## 3938 100002855 Address No interview for other reason
## 3939 100002856 Address No interview for other reason
## 3940 100002858 Address No interview for other reason
## 3941 100002860 Address No interview for other reason
## 3942 100002861 Address No interview for other reason
## 3943 100002862 Address No interview for other reason
## 3944 100002864 Address No interview for other reason
## 3945 100002867 Address No interview for other reason
## 3946 100002870 Address No interview for other reason
## 3947 100002871 Address No interview for other reason
## 3948 100002872 Address No interview for other reason
## 3949 100002875 Address No interview for other reason
## 3950 100002876 Address No interview for other reason
## 3951 100002877 Address No interview for other reason
## 3952 100002879 Address No interview for other reason
## 3953 100002880 Address No interview for other reason
## 3954 100002881 Address No interview for other reason
## 3955 100002882 Address No interview for other reason
## 3956 100002883 Address No interview for other reason
## 3957 100002884 Address No interview for other reason
## 3958 100002885 Address No interview for other reason
## 3959 100002886 Address No interview for other reason
## 3960 100002887 Address No interview for other reason
## 3961 100002888 Address No interview for other reason
## 3962 100002890 Address No interview for other reason
## 3963 100002891 Address No interview for other reason
## 3964 100002892 Address No interview for other reason
## 3965 100002894 Address No interview for other reason
## 3966 100002895 Address No interview for other reason
## 3967 100002896 Address No interview for other reason
## 3968 100002898 Address No interview for other reason
## 3969 100002899 Address No interview for other reason
## 3970 100002900 Address No interview for other reason
## 3971 100002903 Address No interview for other reason
## 3972 100002904 Address No interview for other reason
## 3973 100002905 Address No interview for other reason
## 3974 100002907 Address No interview for other reason
## 3975 100002909 Address No interview for other reason
## 3976 100002910 Address No interview for other reason
## 3977 100002911 Address No interview for other reason
## 3978 100002915 Address No interview for other reason
## 3979 100002916 Address No interview for other reason
## 3980 100002918 Address No interview for other reason
## 3981 100002919 Address No interview for other reason
## 3982 100002922 Address No interview for other reason
## 3983 100002925 Address No interview for other reason
## 3984 100002926 Address No interview for other reason
## 3985 100002928 Address No interview for other reason
## 3986 100002929 Address No interview for other reason
## 3987 100002931 Address No interview for other reason
## 3988 100002932 Address No interview for other reason
## 3989 100002933 Address No interview for other reason
## 3990 100002938 Address No interview for other reason
## 3991 100002939 Address No interview for other reason
## 3992 100002940 Address No interview for other reason
## 3993 100002942 Address No interview for other reason
## 3994 100002943 Address No interview for other reason
## 3995 100002945 Address No interview for other reason
## 3996 100002947 Address No interview for other reason
## 3997 100002948 Address No interview for other reason
## 3998 100002949 Address No interview for other reason
## 3999 100002951 Address No interview for other reason
## 4000 100002952 Address No interview for other reason
## 4001 100002954 Address No interview for other reason
## 4002 100002956 Address No interview for other reason
## 4003 100002957 Address No interview for other reason
## 4004 100002958 Address No interview for other reason
## 4005 100002959 Address No interview for other reason
## 4006 100002960 Address No interview for other reason
## 4007 100002966 Address No interview for other reason
## 4008 100002967 Address No interview for other reason
## 4009 100002968 Address No interview for other reason
## 4010 100002969 Address No interview for other reason
## 4011 100002971 Address No interview for other reason
## 4012 100002973 Address No interview for other reason
## 4013 100002975 Address No interview for other reason
## 4014 100002977 Address No interview for other reason
## 4015 100002978 Address No interview for other reason
## 4016 100002979 Address No interview for other reason
## 4017 100002981 Address No interview for other reason
## 4018 100002982 Address No interview for other reason
## 4019 100002983 Address No interview for other reason
## 4020 100002985 Address No interview for other reason
## 4021 100002988 Address No interview for other reason
## 4022 100002989 Address No interview for other reason
## 4023 100002990 Address No interview for other reason
## 4024 100002993 Address No interview for other reason
## 4025 100002994 Address No interview for other reason
## 4026 100002995 Address No interview for other reason
## 4027 100002996 Address No interview for other reason
## 4028 100002997 Address No interview for other reason
## 4029 100002999 Address No interview for other reason
## 4030 100003006 Address No interview for other reason
## 4031 100003007 Address No interview for other reason
## 4032 100003008 Address No interview for other reason
## 4033 100003009 Address No interview for other reason
## 4034 100003011 Address No interview for other reason
## 4035 100003012 Address No interview for other reason
## 4036 100003016 Address No interview for other reason
## 4037 100003021 Address No interview for other reason
## 4038 100003023 Address No interview for other reason
## 4039 100003024 Address No interview for other reason
## 4040 100003026 Address No interview for other reason
## 4041 100003027 Address No interview for other reason
## 4042 100003028 Address No interview for other reason
## 4043 100003029 Address No interview for other reason
## 4044 100003030 Address No interview for other reason
## 4045 100003032 Address No interview for other reason
## 4046 100003033 Address No interview for other reason
## 4047 100003034 Address No interview for other reason
## 4048 100003035 Address No interview for other reason
## 4049 100003037 Address No interview for other reason
## 4050 100003039 Address No interview for other reason
## 4051 100003040 Address No interview for other reason
## 4052 100003043 Address No interview for other reason
## 4053 100003048 Address No interview for other reason
## 4054 100003049 Address No interview for other reason
## 4055 100003050 Address No interview for other reason
## 4056 100003051 Address No interview for other reason
## 4057 100003053 Address No interview for other reason
## 4058 100003055 Address No interview for other reason
## 4059 100003057 Address No interview for other reason
## 4060 100003059 Address No interview for other reason
## 4061 100003060 Address No interview for other reason
## 4062 100003061 Address No interview for other reason
## 4063 100003062 Address No interview for other reason
## 4064 100003063 Address No interview for other reason
## 4065 100003065 Address No interview for other reason
## 4066 100003066 Address No interview for other reason
## 4067 100003067 Address No interview for other reason
## 4068 100003068 Address No interview for other reason
## 4069 100003070 Address No interview for other reason
## 4070 100003080 Address No interview for other reason
## 4071 100003081 Address No interview for other reason
## 4072 100003082 Address No interview for other reason
## 4073 100003083 Address No interview for other reason
## 4074 100003085 Address No interview for other reason
## 4075 100003086 Address No interview for other reason
## 4076 100003089 Address No interview for other reason
## 4077 100003091 Address No interview for other reason
## 4078 100003095 Address No interview for other reason
## 4079 100003096 Address No interview for other reason
## 4080 100003097 Address No interview for other reason
## 4081 100003100 Address No interview for other reason
## 4082 100003102 Address No interview for other reason
## 4083 100003104 Address No interview for other reason
## 4084 100003105 Address No interview for other reason
## 4085 100003106 Address No interview for other reason
## 4086 100003107 Address No interview for other reason
## 4087 100003110 Address No interview for other reason
## 4088 100003111 Address No interview for other reason
## 4089 100003117 Address No interview for other reason
## 4090 100003120 Address No interview for other reason
## 4091 100003121 Address No interview for other reason
## 4092 100003122 Address No interview for other reason
## 4093 100003123 Address No interview for other reason
## 4094 100003125 Address No interview for other reason
## 4095 100003126 Address No interview for other reason
## 4096 100003127 Address No interview for other reason
## 4097 100003129 Address No interview for other reason
## 4098 100003131 Address No interview for other reason
## 4099 100003132 Address No interview for other reason
## 4100 100003133 Address No interview for other reason
## 4101 100003134 Address No interview for other reason
## 4102 100003135 Address No interview for other reason
## 4103 100003137 Address No interview for other reason
## 4104 100003139 Address No interview for other reason
## 4105 100003144 Address No interview for other reason
## 4106 100003147 Address No interview for other reason
## 4107 100003148 Address No interview for other reason
## 4108 100003149 Address No interview for other reason
## 4109 100003153 Address No interview for other reason
## 4110 100003155 Address No interview for other reason
## 4111 100003156 Address No interview for other reason
## 4112 100003157 Address No interview for other reason
## 4113 100003158 Address No interview for other reason
## 4114 100003160 Address No interview for other reason
## 4115 100003164 Address No interview for other reason
## 4116 100003168 Address No interview for other reason
## 4117 100003169 Address No interview for other reason
## 4118 100003170 Address No interview for other reason
## 4119 100003171 Address No interview for other reason
## 4120 100003172 Address No interview for other reason
## 4121 100003173 Address No interview for other reason
## 4122 100003174 Address No interview for other reason
## 4123 100003176 Address No interview for other reason
## 4124 100003178 Address No interview for other reason
## 4125 100003179 Address No interview for other reason
## 4126 100003182 Address No interview for other reason
## 4127 100003185 Address No interview for other reason
## 4128 100003186 Address No interview for other reason
## 4129 100003187 Address No interview for other reason
## 4130 100003190 Address No interview for other reason
## 4131 100003191 Address No interview for other reason
## 4132 100003193 Address No interview for other reason
## 4133 100003195 Address No interview for other reason
## 4134 100003198 Address No interview for other reason
## 4135 100003199 Address No interview for other reason
## 4136 100003200 Address No interview for other reason
## 4137 100003202 Address No interview for other reason
## 4138 100003203 Address No interview for other reason
## 4139 100003204 Address No interview for other reason
## 4140 100003205 Address No interview for other reason
## 4141 100003207 Address No interview for other reason
## 4142 100003209 Address No interview for other reason
## 4143 100003210 Address No interview for other reason
## 4144 100003211 Address No interview for other reason
## 4145 100003213 Address No interview for other reason
## 4146 100003214 Address No interview for other reason
## 4147 100003215 Address No interview for other reason
## 4148 100003218 Address No interview for other reason
## 4149 100003219 Address No interview for other reason
## 4150 100003220 Address No interview for other reason
## 4151 100003226 Address No interview for other reason
## 4152 100003229 Address No interview for other reason
## 4153 100003232 Address No interview for other reason
## 4154 100003233 Address No interview for other reason
## 4155 100003234 Address No interview for other reason
## 4156 100003235 Address No interview for other reason
## 4157 100003236 Address No interview for other reason
## 4158 100003237 Address No interview for other reason
## 4159 100003239 Address No interview for other reason
## 4160 100003240 Address No interview for other reason
## 4161 100003241 Address No interview for other reason
## 4162 100003242 Address No interview for other reason
## 4163 100003243 Address No interview for other reason
## 4164 100003244 Address No interview for other reason
## 4165 100003245 Address No interview for other reason
## 4166 100003247 Address No interview for other reason
## 4167 100003248 Address No interview for other reason
## 4168 100003249 Address No interview for other reason
## 4169 100003252 Address No interview for other reason
## 4170 100003254 Address No interview for other reason
## 4171 100003256 Address No interview for other reason
## 4172 100003257 Address No interview for other reason
## 4173 100003258 Address No interview for other reason
## 4174 100003259 Address No interview for other reason
## 4175 100003260 Address No interview for other reason
## 4176 100003262 Address No interview for other reason
## 4177 100003264 Address No interview for other reason
## 4178 100003265 Address No interview for other reason
## 4179 100003266 Address No interview for other reason
## 4180 100003268 Address No interview for other reason
## 4181 100003271 Address No interview for other reason
## 4182 100003272 Address No interview for other reason
## 4183 100003274 Address No interview for other reason
## 4184 100003275 Address No interview for other reason
## 4185 100003276 Address No interview for other reason
## 4186 100003277 Address No interview for other reason
## 4187 100003278 Address No interview for other reason
## 4188 100003279 Address No interview for other reason
## 4189 100003280 Address No interview for other reason
## 4190 100003281 Address No interview for other reason
## 4191 100003282 Address No interview for other reason
## 4192 100003284 Address No interview for other reason
## 4193 100003285 Address No interview for other reason
## 4194 100003286 Address No interview for other reason
## 4195 100003287 Address No interview for other reason
## 4196 100003289 Address No interview for other reason
## 4197 100003292 Address No interview for other reason
## 4198 100003293 Address No interview for other reason
## 4199 100003294 Address No interview for other reason
## 4200 100003295 Address No interview for other reason
## 4201 100003296 Address No interview for other reason
## 4202 100003299 Address No interview for other reason
## 4203 100003300 Address No interview for other reason
## 4204 100003303 Address No interview for other reason
## 4205 100003304 Address No interview for other reason
## 4206 100003308 Address No interview for other reason
## 4207 100003310 Address No interview for other reason
## 4208 100003314 Address No interview for other reason
## 4209 100003315 Address No interview for other reason
## 4210 100003316 Address No interview for other reason
## 4211 100003317 Address No interview for other reason
## 4212 100003318 Address No interview for other reason
## 4213 100003320 Address No interview for other reason
## 4214 100003321 Address No interview for other reason
## 4215 100003322 Address No interview for other reason
## 4216 100003324 Address No interview for other reason
## 4217 100003325 Address No interview for other reason
## 4218 100003327 Address No interview for other reason
## 4219 100003328 Address No interview for other reason
## 4220 100003330 Address No interview for other reason
## 4221 100003331 Address No interview for other reason
## 4222 100003334 Address No interview for other reason
## 4223 100003336 Address No interview for other reason
## 4224 100003338 Address No interview for other reason
## 4225 100003340 Address No interview for other reason
## 4226 100003341 Address No interview for other reason
## 4227 100003342 Address No interview for other reason
## 4228 100003343 Address No interview for other reason
## 4229 100003347 Address No interview for other reason
## 4230 100003348 Address No interview for other reason
## 4231 100003349 Address No interview for other reason
## 4232 100003350 Address No interview for other reason
## 4233 100003353 Address No interview for other reason
## 4234 100003354 Address No interview for other reason
## 4235 100003355 Address No interview for other reason
## 4236 100003356 Address No interview for other reason
## 4237 100003357 Address No interview for other reason
## 4238 100003358 Address No interview for other reason
## 4239 100003360 Address No interview for other reason
## 4240 100003361 Address No interview for other reason
## 4241 100003363 Address No interview for other reason
## 4242 100003364 Address No interview for other reason
## 4243 100003366 Address No interview for other reason
## 4244 100003367 Address No interview for other reason
## 4245 100003368 Address No interview for other reason
## 4246 100003369 Address No interview for other reason
## 4247 100003372 Address No interview for other reason
## 4248 100003373 Address No interview for other reason
## 4249 100003374 Address No interview for other reason
## 4250 100003375 Address No interview for other reason
## 4251 100003377 Address No interview for other reason
## 4252 100003378 Address No interview for other reason
## 4253 100003379 Address No interview for other reason
## 4254 100003380 Address No interview for other reason
## 4255 100003381 Address No interview for other reason
## 4256 100003383 Address No interview for other reason
## 4257 100003384 Address No interview for other reason
## 4258 100003388 Address No interview for other reason
## 4259 100003392 Address No interview for other reason
## 4260 100003393 Address No interview for other reason
## 4261 100003396 Address No interview for other reason
## 4262 100003398 Address No interview for other reason
## 4263 100003399 Address No interview for other reason
## 4264 100003400 Address No interview for other reason
## 4265 100003401 Address No interview for other reason
## 4266 100003402 Address No interview for other reason
## 4267 100003403 Address No interview for other reason
## 4268 100003404 Address No interview for other reason
## 4269 100003405 Address No interview for other reason
## 4270 100003407 Address No interview for other reason
## 4271 100003409 Address No interview for other reason
## 4272 100003411 Address No interview for other reason
## 4273 100003413 Address No interview for other reason
## 4274 100003414 Address No interview for other reason
## 4275 100003415 Address No interview for other reason
## 4276 100003416 Address No interview for other reason
## 4277 100003418 Address No interview for other reason
## 4278 100003419 Address No interview for other reason
## 4279 100003421 Address No interview for other reason
## 4280 100003424 Address No interview for other reason
## 4281 100003425 Address No interview for other reason
## 4282 100003426 Address No interview for other reason
## 4283 100003428 Address No interview for other reason
## 4284 100003429 Address No interview for other reason
## 4285 100003430 Address No interview for other reason
## 4286 100003434 Address No interview for other reason
## 4287 100003436 Address No interview for other reason
## 4288 100003438 Address No interview for other reason
## 4289 100003439 Address No interview for other reason
## 4290 100003440 Address No interview for other reason
## 4291 100003442 Address No interview for other reason
## 4292 100003443 Address No interview for other reason
## 4293 100003444 Address No interview for other reason
## 4294 100003445 Address No interview for other reason
## 4295 100003448 Address No interview for other reason
## 4296 100003449 Address No interview for other reason
## 4297 100003453 Address No interview for other reason
## 4298 100003457 Address No interview for other reason
## 4299 100003458 Address No interview for other reason
## 4300 100003459 Address No interview for other reason
## 4301 100003460 Address No interview for other reason
## 4302 100003461 Address No interview for other reason
## 4303 100003469 Address No interview for other reason
## 4304 100003470 Address No interview for other reason
## 4305 100003471 Address No interview for other reason
## 4306 100003474 Address No interview for other reason
## 4307 100003477 Address No interview for other reason
## 4308 100003478 Address No interview for other reason
## 4309 100003479 Address No interview for other reason
## 4310 100003480 Address No interview for other reason
## 4311 100003482 Address No interview for other reason
## 4312 100003483 Address No interview for other reason
## 4313 100003486 Address No interview for other reason
## 4314 100003489 Address No interview for other reason
## 4315 100003490 Address No interview for other reason
## 4316 100003492 Address No interview for other reason
## 4317 100003493 Address No interview for other reason
## 4318 100003494 Address No interview for other reason
## 4319 100003495 Address No interview for other reason
## 4320 100003499 Address No interview for other reason
## 4321 100003500 Address No interview for other reason
## 4322 100003504 Address No interview for other reason
## 4323 100003506 Address No interview for other reason
## 4324 100003510 Address No interview for other reason
## 4325 100003511 Address No interview for other reason
## 4326 100003513 Address No interview for other reason
## 4327 100003514 Address No interview for other reason
## 4328 100003515 Address No interview for other reason
## 4329 100003516 Address No interview for other reason
## 4330 100003517 Address No interview for other reason
## 4331 100003518 Address No interview for other reason
## 4332 100003520 Address No interview for other reason
## 4333 100003521 Address No interview for other reason
## 4334 100003522 Address No interview for other reason
## 4335 100003523 Address No interview for other reason
## 4336 100003525 Address No interview for other reason
## 4337 100003526 Address No interview for other reason
## 4338 100003528 Address No interview for other reason
## 4339 100003531 Address No interview for other reason
## 4340 100003532 Address No interview for other reason
## 4341 100003533 Address No interview for other reason
## 4342 100003536 Address No interview for other reason
## 4343 100003537 Address No interview for other reason
## 4344 100003539 Address No interview for other reason
## 4345 100003540 Address No interview for other reason
## 4346 100003542 Address No interview for other reason
## 4347 100003543 Address No interview for other reason
## 4348 100003544 Address No interview for other reason
## 4349 100003545 Address No interview for other reason
## 4350 100003548 Address No interview for other reason
## 4351 100003549 Address No interview for other reason
## 4352 100003550 Address No interview for other reason
## 4353 100003552 Address No interview for other reason
## 4354 100003554 Address No interview for other reason
## 4355 100003555 Address No interview for other reason
## 4356 100003556 Address No interview for other reason
## 4357 100003558 Address No interview for other reason
## 4358 100003560 Address No interview for other reason
## 4359 100003561 Address No interview for other reason
## 4360 100003563 Address No interview for other reason
## 4361 100003564 Address No interview for other reason
## 4362 100003567 Address No interview for other reason
## 4363 100003568 Address No interview for other reason
## 4364 100003571 Address No interview for other reason
## 4365 100003572 Address No interview for other reason
## 4366 100003573 Address No interview for other reason
## 4367 100003575 Address No interview for other reason
## 4368 100003578 Address No interview for other reason
## 4369 100003579 Address No interview for other reason
## 4370 100003580 Address No interview for other reason
## 4371 100003582 Address No interview for other reason
## 4372 100003583 Address No interview for other reason
## 4373 100003585 Address No interview for other reason
## 4374 100003588 Address No interview for other reason
## 4375 100003589 Address No interview for other reason
## 4376 100003590 Address No interview for other reason
## 4377 100003591 Address No interview for other reason
## 4378 100003592 Address No interview for other reason
## 4379 100003593 Address No interview for other reason
## 4380 100003596 Address No interview for other reason
## 4381 100003598 Address No interview for other reason
## 4382 100003601 Address No interview for other reason
## 4383 100003602 Address No interview for other reason
## 4384 100003604 Address No interview for other reason
## 4385 100003606 Address No interview for other reason
## 4386 100003607 Address No interview for other reason
## 4387 100003608 Address No interview for other reason
## 4388 100003609 Address No interview for other reason
## 4389 100003611 Address No interview for other reason
## 4390 100003613 Address No interview for other reason
## 4391 100003614 Address No interview for other reason
## 4392 100003615 Address No interview for other reason
## 4393 100003616 Address No interview for other reason
## 4394 100003618 Address No interview for other reason
## 4395 100003620 Address No interview for other reason
## 4396 100003621 Address No interview for other reason
## 4397 100003624 Address No interview for other reason
## 4398 100003625 Address No interview for other reason
## 4399 100003629 Address No interview for other reason
## 4400 100003630 Address No interview for other reason
## 4401 100003634 Address No interview for other reason
## 4402 100003638 Address No interview for other reason
## 4403 100003639 Address No interview for other reason
## 4404 100003640 Address No interview for other reason
## 4405 100003642 Address No interview for other reason
## 4406 100003644 Address No interview for other reason
## 4407 100003645 Address No interview for other reason
## 4408 100003646 Address No interview for other reason
## 4409 100003648 Address No interview for other reason
## 4410 100003649 Address No interview for other reason
## 4411 100003650 Address No interview for other reason
## 4412 100003651 Address No interview for other reason
## 4413 100003654 Address No interview for other reason
## 4414 100003655 Address No interview for other reason
## 4415 100003656 Address No interview for other reason
## 4416 100003657 Address No interview for other reason
## 4417 100003658 Address No interview for other reason
## 4418 100003660 Address No interview for other reason
## 4419 100003663 Address No interview for other reason
## 4420 100003664 Address No interview for other reason
## 4421 100003665 Address No interview for other reason
## 4422 100003666 Address No interview for other reason
## 4423 100003668 Address No interview for other reason
## 4424 100003670 Address No interview for other reason
## 4425 100003671 Address No interview for other reason
## 4426 100003673 Address No interview for other reason
## 4427 100003674 Address No interview for other reason
## 4428 100003676 Address No interview for other reason
## 4429 100003677 Address No interview for other reason
## 4430 100003678 Address No interview for other reason
## 4431 100003679 Address No interview for other reason
## 4432 100003680 Address No interview for other reason
## 4433 100003681 Address No interview for other reason
## 4434 100003682 Address No interview for other reason
## 4435 100003683 Address No interview for other reason
## 4436 100003684 Address No interview for other reason
## 4437 100003685 Address No interview for other reason
## 4438 100003686 Address No interview for other reason
## 4439 100003687 Address No interview for other reason
## 4440 100003688 Address No interview for other reason
## 4441 100003689 Address No interview for other reason
## 4442 100003690 Address No interview for other reason
## 4443 100003691 Address No interview for other reason
## 4444 100003692 Address No interview for other reason
## 4445 100003695 Address No interview for other reason
## 4446 100003697 Address No interview for other reason
## 4447 100003698 Address No interview for other reason
## 4448 100003700 Address No interview for other reason
## 4449 100003701 Address No interview for other reason
## 4450 100003702 Address No interview for other reason
## 4451 100003704 Address No interview for other reason
## 4452 100003705 Address No interview for other reason
## 4453 100003706 Address No interview for other reason
## 4454 100003707 Address No interview for other reason
## 4455 100003708 Address No interview for other reason
## 4456 100003709 Address No interview for other reason
## 4457 100003712 Address No interview for other reason
## 4458 100003713 Address No interview for other reason
## 4459 100003714 Address No interview for other reason
## 4460 100003716 Address No interview for other reason
## 4461 100003717 Address No interview for other reason
## 4462 100003718 Address No interview for other reason
## 4463 100003722 Address No interview for other reason
## 4464 100003723 Address No interview for other reason
## 4465 100003728 Address No interview for other reason
## 4466 100003731 Address No interview for other reason
## 4467 100003732 Address No interview for other reason
## 4468 100003734 Address No interview for other reason
## 4469 100003735 Address No interview for other reason
## 4470 100003739 Address No interview for other reason
## 4471 100003743 Address No interview for other reason
## 4472 100003744 Address No interview for other reason
## 4473 100003745 Address No interview for other reason
## 4474 100003750 Address No interview for other reason
## 4475 100003752 Address No interview for other reason
## 4476 100003753 Address No interview for other reason
## 4477 100003754 Address No interview for other reason
## 4478 100003755 Address No interview for other reason
## 4479 100003757 Address No interview for other reason
## 4480 100003760 Address No interview for other reason
## 4481 100003761 Address No interview for other reason
## 4482 100003762 Address No interview for other reason
## 4483 100003769 Address No interview for other reason
## 4484 100003770 Address No interview for other reason
## 4485 100003772 Address No interview for other reason
## 4486 100003775 Address No interview for other reason
## 4487 100003776 Address No interview for other reason
## 4488 100003777 Address No interview for other reason
## 4489 100003778 Address No interview for other reason
## 4490 100003779 Address No interview for other reason
## 4491 100003785 Address No interview for other reason
## 4492 100003787 Address No interview for other reason
## 4493 100003789 Address No interview for other reason
## 4494 100003790 Address No interview for other reason
## 4495 100003792 Address No interview for other reason
## 4496 100003793 Address No interview for other reason
## 4497 100003796 Address No interview for other reason
## 4498 100003797 Address No interview for other reason
## 4499 100003798 Address No interview for other reason
## 4500 100003799 Address No interview for other reason
## 4501 100003801 Address No interview for other reason
## 4502 100003803 Address No interview for other reason
## 4503 100003804 Address No interview for other reason
## 4504 100003805 Address No interview for other reason
## 4505 100003806 Address No interview for other reason
## 4506 100003807 Address No interview for other reason
## 4507 100003809 Address No interview for other reason
## 4508 100003812 Address No interview for other reason
## 4509 100003813 Address No interview for other reason
## 4510 100003814 Address No interview for other reason
## 4511 100003819 Address No interview for other reason
## 4512 100003821 Address No interview for other reason
## 4513 100003822 Address No interview for other reason
## 4514 100003823 Address No interview for other reason
## 4515 100003824 Address No interview for other reason
## 4516 100003825 Address No interview for other reason
## 4517 100003827 Address No interview for other reason
## 4518 100003828 Address No interview for other reason
## 4519 100003829 Address No interview for other reason
## 4520 100003830 Address No interview for other reason
## 4521 100003831 Address No interview for other reason
## 4522 100003832 Address No interview for other reason
## 4523 100003833 Address No interview for other reason
## 4524 100003834 Address No interview for other reason
## 4525 100003835 Address No interview for other reason
## 4526 100003836 Address No interview for other reason
## 4527 100003837 Address No interview for other reason
## 4528 100003841 Address No interview for other reason
## 4529 100003843 Address No interview for other reason
## 4530 100003844 Address No interview for other reason
## 4531 100003846 Address No interview for other reason
## 4532 100003847 Address No interview for other reason
## 4533 100003848 Address No interview for other reason
## 4534 100003850 Address No interview for other reason
## 4535 100003851 Address No interview for other reason
## 4536 100003852 Address No interview for other reason
## 4537 100003853 Address No interview for other reason
## 4538 100003854 Address No interview for other reason
## 4539 100003855 Address No interview for other reason
## 4540 100003856 Address No interview for other reason
## 4541 100003857 Address No interview for other reason
## 4542 100003859 Address No interview for other reason
## 4543 100003862 Address No interview for other reason
## 4544 100003865 Address No interview for other reason
## 4545 100003866 Address No interview for other reason
## 4546 100003867 Address No interview for other reason
## 4547 100003868 Address No interview for other reason
## 4548 100003869 Address No interview for other reason
## 4549 100003872 Address No interview for other reason
## 4550 100003875 Address No interview for other reason
## 4551 100003876 Address No interview for other reason
## 4552 100003877 Address No interview for other reason
## 4553 100003878 Address No interview for other reason
## 4554 100003879 Address No interview for other reason
## 4555 100003880 Address No interview for other reason
## 4556 100003881 Address No interview for other reason
## 4557 100003883 Address No interview for other reason
## 4558 100003884 Address No interview for other reason
## 4559 100003885 Address No interview for other reason
## 4560 100003886 Address No interview for other reason
## 4561 100003887 Address No interview for other reason
## 4562 100003889 Address No interview for other reason
## 4563 100003890 Address No interview for other reason
## 4564 100003893 Address No interview for other reason
## 4565 100003895 Address No interview for other reason
## 4566 100003896 Address No interview for other reason
## 4567 100003899 Address No interview for other reason
## 4568 100003900 Address No interview for other reason
## 4569 100003902 Address No interview for other reason
## 4570 100003905 Address No interview for other reason
## 4571 100003906 Address No interview for other reason
## 4572 100003907 Address No interview for other reason
## 4573 100003908 Address No interview for other reason
## 4574 100003909 Address No interview for other reason
## 4575 100003911 Address No interview for other reason
## 4576 100003912 Address No interview for other reason
## 4577 100003914 Address No interview for other reason
## 4578 100003915 Address No interview for other reason
## 4579 100003916 Address No interview for other reason
## 4580 100003918 Address No interview for other reason
## 4581 100003919 Address No interview for other reason
## 4582 100003920 Address No interview for other reason
## 4583 100003921 Address No interview for other reason
## 4584 100003922 Address No interview for other reason
## 4585 100003924 Address No interview for other reason
## 4586 100003926 Address No interview for other reason
## 4587 100003929 Address No interview for other reason
## 4588 100003931 Address No interview for other reason
## 4589 100003933 Address No interview for other reason
## 4590 100003934 Address No interview for other reason
## 4591 100003935 Address No interview for other reason
## 4592 100003938 Address No interview for other reason
## 4593 100003939 Address No interview for other reason
## 4594 100003940 Address No interview for other reason
## 4595 100003941 Address No interview for other reason
## 4596 100003945 Address No interview for other reason
## 4597 100003947 Address No interview for other reason
## 4598 100003949 Address No interview for other reason
## 4599 100003953 Address No interview for other reason
## 4600 100003954 Address No interview for other reason
## 4601 100003955 Address No interview for other reason
## 4602 100003958 Address No interview for other reason
## 4603 100003960 Address No interview for other reason
## 4604 100003963 Address No interview for other reason
## 4605 100003964 Address No interview for other reason
## 4606 100003965 Address No interview for other reason
## 4607 100003966 Address No interview for other reason
## 4608 100003968 Address No interview for other reason
## 4609 100003971 Address No interview for other reason
## 4610 100003974 Address No interview for other reason
## 4611 100003975 Address No interview for other reason
## 4612 100003978 Address No interview for other reason
## 4613 100003982 Address No interview for other reason
## 4614 100003984 Address No interview for other reason
## 4615 100003985 Address No interview for other reason
## 4616 100003989 Address No interview for other reason
## 4617 100003990 Address No interview for other reason
## 4618 100003992 Address No interview for other reason
## 4619 100003994 Address No interview for other reason
## 4620 100003996 Address No interview for other reason
## 4621 100003997 Address No interview for other reason
## 4622 100003998 Address No interview for other reason
## 4623 100003999 Address No interview for other reason
## 4624 100004000 Address No interview for other reason
## 4625 100004002 Address No interview for other reason
## 4626 100004003 Address No interview for other reason
## 4627 100004005 Address No interview for other reason
## 4628 100004007 Address No interview for other reason
## 4629 100004008 Address No interview for other reason
## 4630 100004009 Address No interview for other reason
## 4631 100004010 Address No interview for other reason
## 4632 100004012 Address No interview for other reason
## 4633 100004013 Address No interview for other reason
## 4634 100004014 Address No interview for other reason
## 4635 100004015 Address No interview for other reason
## 4636 100004017 Address No interview for other reason
## 4637 100004018 Address No interview for other reason
## 4638 100004020 Address No interview for other reason
## 4639 100004022 Address No interview for other reason
## 4640 100004024 Address No interview for other reason
## 4641 100004025 Address No interview for other reason
## 4642 100004026 Address No interview for other reason
## 4643 100004028 Address No interview for other reason
## 4644 100004031 Address No interview for other reason
## 4645 100004032 Address No interview for other reason
## 4646 100004033 Address No interview for other reason
## 4647 100004034 Address No interview for other reason
## 4648 100004035 Address No interview for other reason
## 4649 100004036 Address No interview for other reason
## 4650 100004037 Address No interview for other reason
## 4651 100004039 Address No interview for other reason
## 4652 100004041 Address No interview for other reason
## 4653 100004042 Address No interview for other reason
## 4654 100004043 Address No interview for other reason
## 4655 100004044 Address No interview for other reason
## 4656 100004046 Address No interview for other reason
## 4657 100004052 Address No interview for other reason
## 4658 100004053 Address No interview for other reason
## 4659 100004055 Address No interview for other reason
## 4660 100004056 Address No interview for other reason
## 4661 100004057 Address No interview for other reason
## 4662 100004058 Address No interview for other reason
## 4663 100004059 Address No interview for other reason
## 4664 100004061 Address No interview for other reason
## 4665 100004062 Address No interview for other reason
## 4666 100004063 Address No interview for other reason
## 4667 100004064 Address No interview for other reason
## 4668 100004065 Address No interview for other reason
## 4669 100004066 Address No interview for other reason
## 4670 100004068 Address No interview for other reason
## 4671 100004071 Address No interview for other reason
## 4672 100004073 Address No interview for other reason
## 4673 100004074 Address No interview for other reason
## 4674 100004075 Address No interview for other reason
## 4675 100004076 Address No interview for other reason
## 4676 100004079 Address No interview for other reason
## 4677 100004080 Address No interview for other reason
## 4678 100004081 Address No interview for other reason
## 4679 100004084 Address No interview for other reason
## 4680 100004085 Address No interview for other reason
## 4681 100004086 Address No interview for other reason
## 4682 100004087 Address No interview for other reason
## 4683 100004088 Address No interview for other reason
## 4684 100004090 Address No interview for other reason
## 4685 100004091 Address No interview for other reason
## 4686 100004093 Address No interview for other reason
## 4687 100004095 Address No interview for other reason
## 4688 100004096 Address No interview for other reason
## 4689 100004097 Address No interview for other reason
## 4690 100004100 Address No interview for other reason
## 4691 100004101 Address No interview for other reason
## 4692 100004104 Address No interview for other reason
## 4693 100004105 Address No interview for other reason
## 4694 100004109 Address No interview for other reason
## 4695 100004110 Address No interview for other reason
## 4696 100004112 Address No interview for other reason
## 4697 100004113 Address No interview for other reason
## 4698 100004114 Address No interview for other reason
## 4699 100004115 Address No interview for other reason
## 4700 100004118 Address No interview for other reason
## 4701 100004120 Address No interview for other reason
## 4702 100004122 Address No interview for other reason
## 4703 100004123 Address No interview for other reason
## 4704 100004124 Address No interview for other reason
## 4705 100004125 Address No interview for other reason
## 4706 100004126 Address No interview for other reason
## 4707 100004128 Address No interview for other reason
## 4708 100004130 Address No interview for other reason
## 4709 100004131 Address No interview for other reason
## 4710 100004132 Address No interview for other reason
## 4711 100004133 Address No interview for other reason
## 4712 100004134 Address No interview for other reason
## 4713 100004137 Address No interview for other reason
## 4714 100004138 Address No interview for other reason
## 4715 100004139 Address No interview for other reason
## 4716 100004140 Address No interview for other reason
## 4717 100004141 Address No interview for other reason
## 4718 100004142 Address No interview for other reason
## 4719 100004143 Address No interview for other reason
## 4720 100004146 Address No interview for other reason
## 4721 100004148 Address No interview for other reason
## 4722 100004149 Address No interview for other reason
## 4723 100004151 Address No interview for other reason
## 4724 100004153 Address No interview for other reason
## 4725 100004154 Address No interview for other reason
## 4726 100004155 Address No interview for other reason
## 4727 100004156 Address No interview for other reason
## 4728 100004157 Address No interview for other reason
## 4729 100004162 Address No interview for other reason
## 4730 100004164 Address No interview for other reason
## 4731 100004168 Address No interview for other reason
## 4732 100004169 Address No interview for other reason
## 4733 100004170 Address No interview for other reason
## 4734 100004171 Address No interview for other reason
## 4735 100004172 Address No interview for other reason
## 4736 100004174 Address No interview for other reason
## 4737 100004176 Address No interview for other reason
## 4738 100004178 Address No interview for other reason
## 4739 100004179 Address No interview for other reason
## 4740 100004180 Address No interview for other reason
## 4741 100004181 Address No interview for other reason
## 4742 100004184 Address No interview for other reason
## 4743 100004186 Address No interview for other reason
## 4744 100004188 Address No interview for other reason
## 4745 100004189 Address No interview for other reason
## 4746 100004190 Address No interview for other reason
## 4747 100004192 Address No interview for other reason
## 4748 100004195 Address No interview for other reason
## 4749 100004197 Address No interview for other reason
## 4750 100004198 Address No interview for other reason
## 4751 100004199 Address No interview for other reason
## 4752 100004200 Address No interview for other reason
## 4753 100004201 Address No interview for other reason
## 4754 100004203 Address No interview for other reason
## 4755 100004205 Address No interview for other reason
## 4756 100004207 Address No interview for other reason
## 4757 100004208 Address No interview for other reason
## 4758 100004209 Address No interview for other reason
## 4759 100004211 Address No interview for other reason
## 4760 100004212 Address No interview for other reason
## 4761 100004213 Address No interview for other reason
## 4762 100004215 Address No interview for other reason
## 4763 100004217 Address No interview for other reason
## 4764 100004218 Address No interview for other reason
## 4765 100004221 Address No interview for other reason
## 4766 100004226 Address No interview for other reason
## 4767 100004227 Address No interview for other reason
## 4768 100004228 Address No interview for other reason
## 4769 100004231 Address No interview for other reason
## 4770 100004233 Address No interview for other reason
## 4771 100004234 Address No interview for other reason
## 4772 100004235 Address No interview for other reason
## 4773 100004237 Address No interview for other reason
## 4774 100004238 Address No interview for other reason
## 4775 100004239 Address No interview for other reason
## 4776 100004240 Address No interview for other reason
## 4777 100004241 Address No interview for other reason
## 4778 100004242 Address No interview for other reason
## 4779 100004243 Address No interview for other reason
## 4780 100004250 Address No interview for other reason
## 4781 100004251 Address No interview for other reason
## 4782 100004253 Address No interview for other reason
## 4783 100004255 Address No interview for other reason
## 4784 100004256 Address No interview for other reason
## 4785 100004257 Address No interview for other reason
## 4786 100004258 Address No interview for other reason
## 4787 100004259 Address No interview for other reason
## 4788 100004261 Address No interview for other reason
## 4789 100004262 Address No interview for other reason
## 4790 100004263 Address No interview for other reason
## 4791 100004266 Address No interview for other reason
## 4792 100004267 Address No interview for other reason
## 4793 100004268 Address No interview for other reason
## 4794 100004269 Address No interview for other reason
## 4795 100004270 Address No interview for other reason
## 4796 100004271 Address No interview for other reason
## 4797 100004272 Address No interview for other reason
## 4798 100004276 Address No interview for other reason
## 4799 100004278 Address No interview for other reason
## 4800 100004279 Address No interview for other reason
## 4801 100004280 Address No interview for other reason
## 4802 100004281 Address No interview for other reason
## 4803 100004283 Address No interview for other reason
## 4804 100004284 Address No interview for other reason
## 4805 100004286 Address No interview for other reason
## 4806 100004287 Address No interview for other reason
## 4807 100004288 Address No interview for other reason
## 4808 100004290 Address No interview for other reason
## 4809 100004292 Address No interview for other reason
## 4810 100004293 Address No interview for other reason
## 4811 100004294 Address No interview for other reason
## 4812 100004295 Address No interview for other reason
## 4813 100004299 Address No interview for other reason
## 4814 100004301 Address No interview for other reason
## 4815 100004303 Address No interview for other reason
## 4816 100004304 Address No interview for other reason
## 4817 100004305 Address No interview for other reason
## 4818 100004307 Address No interview for other reason
## 4819 100004308 Address No interview for other reason
## 4820 100004309 Address No interview for other reason
## 4821 100004310 Address No interview for other reason
## 4822 100004314 Address No interview for other reason
## 4823 100004315 Address No interview for other reason
## 4824 100004316 Address No interview for other reason
## 4825 100004319 Address No interview for other reason
## 4826 100004321 Address No interview for other reason
## 4827 100004322 Address No interview for other reason
## 4828 100004323 Address No interview for other reason
## 4829 100004324 Address No interview for other reason
## 4830 100004325 Address No interview for other reason
## 4831 100004326 Address No interview for other reason
## 4832 100004327 Address No interview for other reason
## 4833 100004328 Address No interview for other reason
## 4834 100004329 Address No interview for other reason
## 4835 100004331 Address No interview for other reason
## 4836 100004332 Address No interview for other reason
## 4837 100004333 Address No interview for other reason
## 4838 100004334 Address No interview for other reason
## 4839 100004335 Address No interview for other reason
## 4840 100004338 Address No interview for other reason
## 4841 100004339 Address No interview for other reason
## 4842 100004340 Address No interview for other reason
## 4843 100004341 Address No interview for other reason
## 4844 100004342 Address No interview for other reason
## 4845 100004345 Address No interview for other reason
## 4846 100004347 Address No interview for other reason
## 4847 100004349 Address No interview for other reason
## 4848 100004350 Address No interview for other reason
## 4849 100004351 Address No interview for other reason
## 4850 100004353 Address No interview for other reason
## 4851 100004354 Address No interview for other reason
## 4852 100004355 Address No interview for other reason
## 4853 100004357 Address No interview for other reason
## 4854 100004358 Address No interview for other reason
## 4855 100004359 Address No interview for other reason
## 4856 100004360 Address No interview for other reason
## 4857 100004362 Address No interview for other reason
## 4858 100004363 Address No interview for other reason
## 4859 100004365 Address No interview for other reason
## 4860 100004368 Address No interview for other reason
## 4861 100004369 Address No interview for other reason
## 4862 100004370 Address No interview for other reason
## 4863 100004371 Address No interview for other reason
## 4864 100004373 Address No interview for other reason
## 4865 100004375 Address No interview for other reason
## 4866 100004377 Address No interview for other reason
## 4867 100004378 Address No interview for other reason
## 4868 100004380 Address No interview for other reason
## 4869 100004382 Address No interview for other reason
## 4870 100004383 Address No interview for other reason
## 4871 100004385 Address No interview for other reason
## 4872 100004387 Address No interview for other reason
## 4873 100004392 Address No interview for other reason
## 4874 100004393 Address No interview for other reason
## 4875 100004395 Address No interview for other reason
## 4876 100004396 Address No interview for other reason
## 4877 100004397 Address No interview for other reason
## 4878 100004400 Address No interview for other reason
## 4879 100004402 Address No interview for other reason
## 4880 100004403 Address No interview for other reason
## 4881 100004404 Address No interview for other reason
## 4882 100004407 Address No interview for other reason
## 4883 100004408 Address No interview for other reason
## 4884 100004409 Address No interview for other reason
## 4885 100004410 Address No interview for other reason
## 4886 100004412 Address No interview for other reason
## 4887 100004413 Address No interview for other reason
## 4888 100004415 Address No interview for other reason
## 4889 100004416 Address No interview for other reason
## 4890 100004418 Address No interview for other reason
## 4891 100004421 Address No interview for other reason
## 4892 100004422 Address No interview for other reason
## 4893 100004423 Address No interview for other reason
## 4894 100004430 Address No interview for other reason
## 4895 100004431 Address No interview for other reason
## 4896 100004434 Address No interview for other reason
## 4897 100004435 Address No interview for other reason
## 4898 100004438 Address No interview for other reason
## 4899 100004439 Address No interview for other reason
## 4900 100004445 Address No interview for other reason
## 4901 100004447 Address No interview for other reason
## 4902 100004449 Address No interview for other reason
## 4903 100004451 Address No interview for other reason
## 4904 100004452 Address No interview for other reason
## 4905 100004453 Address No interview for other reason
## 4906 100004455 Address No interview for other reason
## 4907 100004456 Address No interview for other reason
## 4908 100004458 Address No interview for other reason
## 4909 100004459 Address No interview for other reason
## 4910 100004460 Address No interview for other reason
## 4911 100004464 Address No interview for other reason
## 4912 100004470 Address No interview for other reason
## 4913 100004471 Address No interview for other reason
## 4914 100004472 Address No interview for other reason
## 4915 100004476 Address No interview for other reason
## 4916 100004478 Address No interview for other reason
## 4917 100004480 Address No interview for other reason
## 4918 100004482 Address No interview for other reason
## 4919 100004483 Address No interview for other reason
## 4920 100004484 Address No interview for other reason
## 4921 100004485 Address No interview for other reason
## 4922 100004489 Address No interview for other reason
## 4923 100004490 Address No interview for other reason
## 4924 100004491 Address No interview for other reason
## 4925 100004492 Address No interview for other reason
## 4926 100004493 Address No interview for other reason
## 4927 100004494 Address No interview for other reason
## 4928 100004497 Address No interview for other reason
## 4929 100004499 Address No interview for other reason
## 4930 100004503 Address No interview for other reason
## 4931 100004505 Address No interview for other reason
## 4932 100004506 Address No interview for other reason
## 4933 100004507 Address No interview for other reason
## 4934 100004508 Address No interview for other reason
## 4935 100004514 Address No interview for other reason
## 4936 100004515 Address No interview for other reason
## 4937 100004523 Address No interview for other reason
## 4938 100004524 Address No interview for other reason
## 4939 100004525 Address No interview for other reason
## 4940 100004526 Address No interview for other reason
## 4941 100004527 Address No interview for other reason
## 4942 100004528 Address No interview for other reason
## 4943 100004530 Address No interview for other reason
## 4944 100004532 Address No interview for other reason
## 4945 100004533 Address No interview for other reason
## 4946 100004534 Address No interview for other reason
## 4947 100004535 Address No interview for other reason
## 4948 100004536 Address No interview for other reason
## 4949 100004540 Address No interview for other reason
## 4950 100004541 Address No interview for other reason
## 4951 100004543 Address No interview for other reason
## 4952 100004544 Address No interview for other reason
## 4953 100004545 Address No interview for other reason
## 4954 100004546 Address No interview for other reason
## 4955 100004548 Address No interview for other reason
## 4956 100004551 Address No interview for other reason
## 4957 100004553 Address No interview for other reason
## 4958 100004555 Address No interview for other reason
## 4959 100004557 Address No interview for other reason
## 4960 100004560 Address No interview for other reason
## 4961 100004565 Address No interview for other reason
## 4962 100004567 Address No interview for other reason
## 4963 100004570 Address No interview for other reason
## 4964 100004571 Address No interview for other reason
## 4965 100004572 Address No interview for other reason
## 4966 100004573 Address No interview for other reason
## 4967 100004574 Address No interview for other reason
## 4968 100004575 Address No interview for other reason
## 4969 100004577 Address No interview for other reason
## 4970 100004578 Address No interview for other reason
## 4971 100004584 Address No interview for other reason
## 4972 100004587 Address No interview for other reason
## 4973 100004588 Address No interview for other reason
## 4974 100004591 Address No interview for other reason
## 4975 100004592 Address No interview for other reason
## 4976 100004593 Address No interview for other reason
## 4977 100004594 Address No interview for other reason
## 4978 100004596 Address No interview for other reason
## 4979 100004597 Address No interview for other reason
## 4980 100004598 Address No interview for other reason
## 4981 100004602 Address No interview for other reason
## 4982 100004603 Address No interview for other reason
## 4983 100004604 Address No interview for other reason
## 4984 100004606 Address No interview for other reason
## 4985 100004607 Address No interview for other reason
## 4986 100004609 Address No interview for other reason
## 4987 100004610 Address No interview for other reason
## 4988 100004611 Address No interview for other reason
## 4989 100004613 Address No interview for other reason
## 4990 100004615 Address No interview for other reason
## 4991 100004616 Address No interview for other reason
## 4992 100004617 Address No interview for other reason
## 4993 100004620 Address No interview for other reason
## 4994 100004621 Address No interview for other reason
## 4995 100004622 Address No interview for other reason
## 4996 100004623 Address No interview for other reason
## 4997 100004626 Address No interview for other reason
## 4998 100004627 Address No interview for other reason
## 4999 100004630 Address No interview for other reason
## 5000 100004631 Address No interview for other reason
## 5001 100004632 Address No interview for other reason
## 5002 100004633 Address No interview for other reason
## 5003 100004636 Address No interview for other reason
## 5004 100004637 Address No interview for other reason
## 5005 100004639 Address No interview for other reason
## 5006 100004641 Address No interview for other reason
## 5007 100004643 Address No interview for other reason
## 5008 100004645 Address No interview for other reason
## 5009 100004646 Address No interview for other reason
## 5010 100004647 Address No interview for other reason
## 5011 100004648 Address No interview for other reason
## 5012 100004649 Address No interview for other reason
## 5013 100004650 Address No interview for other reason
## 5014 100004654 Address No interview for other reason
## 5015 100004656 Address No interview for other reason
## 5016 100004657 Address No interview for other reason
## 5017 100004658 Address No interview for other reason
## 5018 100004659 Address No interview for other reason
## 5019 100004660 Address No interview for other reason
## 5020 100004662 Address No interview for other reason
## 5021 100004663 Address No interview for other reason
## 5022 100004664 Address No interview for other reason
## 5023 100004665 Address No interview for other reason
## 5024 100004666 Address No interview for other reason
## 5025 100004670 Address No interview for other reason
## 5026 100004673 Address No interview for other reason
## 5027 100004674 Address No interview for other reason
## 5028 100004675 Address No interview for other reason
## 5029 100004676 Address No interview for other reason
## 5030 100004677 Address No interview for other reason
## 5031 100004678 Address No interview for other reason
## 5032 100004680 Address No interview for other reason
## 5033 100004681 Address No interview for other reason
## 5034 100004682 Address No interview for other reason
## 5035 100004683 Address No interview for other reason
## 5036 100004690 Address No interview for other reason
## 5037 100004693 Address No interview for other reason
## 5038 100004695 Address No interview for other reason
## 5039 100004696 Address No interview for other reason
## 5040 100004697 Address No interview for other reason
## 5041 100004699 Address No interview for other reason
## 5042 100004704 Address No interview for other reason
## 5043 100004705 Address No interview for other reason
## 5044 100004706 Address No interview for other reason
## 5045 100004707 Address No interview for other reason
## 5046 100004708 Address No interview for other reason
## 5047 100004709 Address No interview for other reason
## 5048 100004711 Address No interview for other reason
## 5049 100004712 Address No interview for other reason
## 5050 100004716 Address No interview for other reason
## 5051 100004717 Address No interview for other reason
## 5052 100004718 Address No interview for other reason
## 5053 100004719 Address No interview for other reason
## 5054 100004720 Address No interview for other reason
## 5055 100004721 Address No interview for other reason
## 5056 100004722 Address No interview for other reason
## 5057 100004723 Address No interview for other reason
## 5058 100004724 Address No interview for other reason
## 5059 100004725 Address No interview for other reason
## 5060 100004726 Address No interview for other reason
## 5061 100004727 Address No interview for other reason
## 5062 100004728 Address No interview for other reason
## 5063 100004730 Address No interview for other reason
## 5064 100004732 Address No interview for other reason
## 5065 100004733 Address No interview for other reason
## 5066 100004734 Address No interview for other reason
## 5067 100004735 Address No interview for other reason
## 5068 100004737 Address No interview for other reason
## 5069 100004740 Address No interview for other reason
## 5070 100004741 Address No interview for other reason
## 5071 100004743 Address No interview for other reason
## 5072 100004744 Address No interview for other reason
## 5073 100004745 Address No interview for other reason
## 5074 100004746 Address No interview for other reason
## 5075 100004747 Address No interview for other reason
## 5076 100004748 Address No interview for other reason
## 5077 100004750 Address No interview for other reason
## 5078 100004752 Address No interview for other reason
## 5079 100004755 Address No interview for other reason
## 5080 100004756 Address No interview for other reason
## 5081 100004757 Address No interview for other reason
## 5082 100004758 Address No interview for other reason
## 5083 100004759 Address No interview for other reason
## 5084 100004760 Address No interview for other reason
## 5085 100004761 Address No interview for other reason
## 5086 100004762 Address No interview for other reason
## 5087 100004764 Address No interview for other reason
## 5088 100004765 Address No interview for other reason
## 5089 100004766 Address No interview for other reason
## 5090 100004767 Address No interview for other reason
## 5091 100004768 Address No interview for other reason
## 5092 100004770 Address No interview for other reason
## 5093 100004772 Address No interview for other reason
## 5094 100004774 Address No interview for other reason
## 5095 100004775 Address No interview for other reason
## 5096 100004777 Address No interview for other reason
## 5097 100004778 Address No interview for other reason
## 5098 100004779 Address No interview for other reason
## 5099 100004782 Address No interview for other reason
## 5100 100004783 Address No interview for other reason
## 5101 100004784 Address No interview for other reason
## 5102 100004790 Address No interview for other reason
## 5103 100004791 Address No interview for other reason
## 5104 100004792 Address No interview for other reason
## 5105 100004796 Address No interview for other reason
## 5106 100004798 Address No interview for other reason
## 5107 100004799 Address No interview for other reason
## 5108 100004800 Address No interview for other reason
## 5109 100004802 Address No interview for other reason
## 5110 100004804 Address No interview for other reason
## 5111 100004805 Address No interview for other reason
## 5112 100004806 Address No interview for other reason
## 5113 100004807 Address No interview for other reason
## 5114 100004808 Address No interview for other reason
## 5115 100004812 Address No interview for other reason
## 5116 100004813 Address No interview for other reason
## 5117 100004814 Address No interview for other reason
## 5118 100004815 Address No interview for other reason
## 5119 100004816 Address No interview for other reason
## 5120 100004818 Address No interview for other reason
## 5121 100004819 Address No interview for other reason
## 5122 100004822 Address No interview for other reason
## 5123 100004823 Address No interview for other reason
## 5124 100004825 Address No interview for other reason
## 5125 100004826 Address No interview for other reason
## 5126 100004827 Address No interview for other reason
## 5127 100004829 Address No interview for other reason
## 5128 100004830 Address No interview for other reason
## 5129 100004831 Address No interview for other reason
## 5130 100004833 Address No interview for other reason
## 5131 100004835 Address No interview for other reason
## 5132 100004836 Address No interview for other reason
## 5133 100004838 Address No interview for other reason
## 5134 100004839 Address No interview for other reason
## 5135 100004840 Address No interview for other reason
## 5136 100004841 Address No interview for other reason
## 5137 100004842 Address No interview for other reason
## 5138 100004845 Address No interview for other reason
## 5139 100004847 Address No interview for other reason
## 5140 100004849 Address No interview for other reason
## 5141 100004851 Address No interview for other reason
## 5142 100004853 Address No interview for other reason
## 5143 100004855 Address No interview for other reason
## 5144 100004858 Address No interview for other reason
## 5145 100004859 Address No interview for other reason
## 5146 100004860 Address No interview for other reason
## 5147 100004861 Address No interview for other reason
## 5148 100004862 Address No interview for other reason
## 5149 100004863 Address No interview for other reason
## 5150 100004864 Address No interview for other reason
## 5151 100004865 Address No interview for other reason
## 5152 100004866 Address No interview for other reason
## 5153 100004868 Address No interview for other reason
## 5154 100004869 Address No interview for other reason
## 5155 100004870 Address No interview for other reason
## 5156 100004874 Address No interview for other reason
## 5157 100004876 Address No interview for other reason
## 5158 100004877 Address No interview for other reason
## 5159 100004878 Address No interview for other reason
## 5160 100004880 Address No interview for other reason
## 5161 100004881 Address No interview for other reason
## 5162 100004882 Address No interview for other reason
## 5163 100004883 Address No interview for other reason
## 5164 100004884 Address No interview for other reason
## 5165 100004885 Address No interview for other reason
## 5166 100004887 Address No interview for other reason
## 5167 100004888 Address No interview for other reason
## 5168 100004890 Address No interview for other reason
## 5169 100004891 Address No interview for other reason
## 5170 100004892 Address No interview for other reason
## 5171 100004893 Address No interview for other reason
## 5172 100004894 Address No interview for other reason
## 5173 100004895 Address No interview for other reason
## 5174 100004898 Address No interview for other reason
## 5175 100004899 Address No interview for other reason
## 5176 100004900 Address No interview for other reason
## 5177 100004902 Address No interview for other reason
## 5178 100004903 Address No interview for other reason
## 5179 100004906 Address No interview for other reason
## 5180 100004907 Address No interview for other reason
## 5181 100004908 Address No interview for other reason
## 5182 100004913 Address No interview for other reason
## 5183 100004914 Address No interview for other reason
## 5184 100004916 Address No interview for other reason
## 5185 100004921 Address No interview for other reason
## 5186 100004922 Address No interview for other reason
## 5187 100004927 Address No interview for other reason
## 5188 100004928 Address No interview for other reason
## 5189 100004930 Address No interview for other reason
## 5190 100004931 Address No interview for other reason
## 5191 100004934 Address No interview for other reason
## 5192 100004935 Address No interview for other reason
## 5193 100004936 Address No interview for other reason
## 5194 100004938 Address No interview for other reason
## 5195 100004940 Address No interview for other reason
## 5196 100004941 Address No interview for other reason
## 5197 100004942 Address No interview for other reason
## 5198 100004943 Address No interview for other reason
## 5199 100004945 Address No interview for other reason
## 5200 100004948 Address No interview for other reason
## 5201 100004949 Address No interview for other reason
## 5202 100004952 Address No interview for other reason
## 5203 100004953 Address No interview for other reason
## 5204 100004954 Address No interview for other reason
## 5205 100004957 Address No interview for other reason
## 5206 100004958 Address No interview for other reason
## 5207 100004961 Address No interview for other reason
## 5208 100004963 Address No interview for other reason
## 5209 100004964 Address No interview for other reason
## 5210 100004966 Address No interview for other reason
## 5211 100004967 Address No interview for other reason
## 5212 100004968 Address No interview for other reason
## 5213 100004969 Address No interview for other reason
## 5214 100004970 Address No interview for other reason
## 5215 100004971 Address No interview for other reason
## 5216 100004972 Address No interview for other reason
## 5217 100004973 Address No interview for other reason
## 5218 100004974 Address No interview for other reason
## 5219 100004975 Address No interview for other reason
## 5220 100004977 Address No interview for other reason
## 5221 100004978 Address No interview for other reason
## 5222 100004979 Address No interview for other reason
## 5223 100004981 Address No interview for other reason
## 5224 100004984 Address No interview for other reason
## 5225 100004985 Address No interview for other reason
## 5226 100004986 Address No interview for other reason
## 5227 100004988 Address No interview for other reason
## 5228 100004989 Address No interview for other reason
## 5229 100004990 Address No interview for other reason
## 5230 100004991 Address No interview for other reason
## 5231 100004994 Address No interview for other reason
## 5232 100004995 Address No interview for other reason
## 5233 100004997 Address No interview for other reason
## 5234 100004999 Address No interview for other reason
## 5235 100005001 Address No interview for other reason
## 5236 100005003 Address No interview for other reason
## 5237 100005005 Address No interview for other reason
## 5238 100005008 Address No interview for other reason
## 5239 100005009 Address No interview for other reason
## 5240 100005010 Address No interview for other reason
## 5241 100005011 Address No interview for other reason
## 5242 100005012 Address No interview for other reason
## 5243 100005013 Address No interview for other reason
## 5244 100005015 Address No interview for other reason
## 5245 100005016 Address No interview for other reason
## 5246 100005018 Address No interview for other reason
## 5247 100005019 Address No interview for other reason
## 5248 100005020 Address No interview for other reason
## 5249 100005021 Address No interview for other reason
## 5250 100005022 Address No interview for other reason
## 5251 100005023 Address No interview for other reason
## 5252 100005024 Address No interview for other reason
## 5253 100005025 Address No interview for other reason
## 5254 100005026 Address No interview for other reason
## 5255 100005027 Address No interview for other reason
## 5256 100005030 Address No interview for other reason
## 5257 100005032 Address No interview for other reason
## 5258 100005033 Address No interview for other reason
## 5259 100005034 Address No interview for other reason
## 5260 100005036 Address No interview for other reason
## 5261 100005037 Address No interview for other reason
## 5262 100005042 Address No interview for other reason
## 5263 100005044 Address No interview for other reason
## 5264 100005046 Address No interview for other reason
## 5265 100005048 Address No interview for other reason
## 5266 100005052 Address No interview for other reason
## 5267 100005053 Address No interview for other reason
## 5268 100005054 Address No interview for other reason
## 5269 100005055 Address No interview for other reason
## 5270 100005056 Address No interview for other reason
## 5271 100005058 Address No interview for other reason
## 5272 100005059 Address No interview for other reason
## 5273 100005060 Address No interview for other reason
## 5274 100005061 Address No interview for other reason
## 5275 100005062 Address No interview for other reason
## 5276 100005065 Address No interview for other reason
## 5277 100005066 Address No interview for other reason
## 5278 100005067 Address No interview for other reason
## 5279 100005068 Address No interview for other reason
## 5280 100005069 Address No interview for other reason
## 5281 100005070 Address No interview for other reason
## 5282 100005071 Address No interview for other reason
## 5283 100005074 Address No interview for other reason
## 5284 100005075 Address No interview for other reason
## 5285 100005076 Address No interview for other reason
## 5286 100005077 Address No interview for other reason
## 5287 100005078 Address No interview for other reason
## 5288 100005080 Address No interview for other reason
## 5289 100005081 Address No interview for other reason
## 5290 100005083 Address No interview for other reason
## 5291 100005084 Address No interview for other reason
## 5292 100005087 Address No interview for other reason
## 5293 100005088 Address No interview for other reason
## 5294 100005091 Address No interview for other reason
## 5295 100005092 Address No interview for other reason
## 5296 100005093 Address No interview for other reason
## 5297 100005094 Address No interview for other reason
## 5298 100005095 Address No interview for other reason
## 5299 100005099 Address No interview for other reason
## 5300 100005100 Address No interview for other reason
## 5301 100005101 Address No interview for other reason
## 5302 100005102 Address No interview for other reason
## 5303 100005103 Address No interview for other reason
## 5304 100005105 Address No interview for other reason
## 5305 100005106 Address No interview for other reason
## 5306 100005108 Address No interview for other reason
## 5307 100005111 Address No interview for other reason
## 5308 100005114 Address No interview for other reason
## 5309 100005116 Address No interview for other reason
## 5310 100005117 Address No interview for other reason
## 5311 100005120 Address No interview for other reason
## 5312 100005121 Address No interview for other reason
## 5313 100005122 Address No interview for other reason
## 5314 100005124 Address No interview for other reason
## 5315 100005126 Address No interview for other reason
## 5316 100005127 Address No interview for other reason
## 5317 100005128 Address No interview for other reason
## 5318 100005129 Address No interview for other reason
## 5319 100005130 Address No interview for other reason
## 5320 100005131 Address No interview for other reason
## 5321 100005132 Address No interview for other reason
## 5322 100005133 Address No interview for other reason
## 5323 100005135 Address No interview for other reason
## 5324 100005136 Address No interview for other reason
## 5325 100005138 Address No interview for other reason
## 5326 100005139 Address No interview for other reason
## 5327 100005141 Address No interview for other reason
## 5328 100005143 Address No interview for other reason
## 5329 100005145 Address No interview for other reason
## 5330 100005146 Address No interview for other reason
## 5331 100005148 Address No interview for other reason
## 5332 100005149 Address No interview for other reason
## 5333 100005150 Address No interview for other reason
## 5334 100005151 Address No interview for other reason
## 5335 100005154 Address No interview for other reason
## 5336 100005155 Address No interview for other reason
## 5337 100005159 Address No interview for other reason
## 5338 100005162 Address No interview for other reason
## 5339 100005163 Address No interview for other reason
## 5340 100005164 Address No interview for other reason
## 5341 100005165 Address No interview for other reason
## 5342 100005173 Address No interview for other reason
## 5343 100005174 Address No interview for other reason
## 5344 100005176 Address No interview for other reason
## 5345 100005178 Address No interview for other reason
## 5346 100005180 Address No interview for other reason
## 5347 100005184 Address No interview for other reason
## 5348 100005185 Address No interview for other reason
## 5349 100005186 Address No interview for other reason
## 5350 100005188 Address No interview for other reason
## 5351 100005191 Address No interview for other reason
## 5352 100005192 Address No interview for other reason
## 5353 100005194 Address No interview for other reason
## 5354 100005195 Address No interview for other reason
## 5355 100005196 Address No interview for other reason
## 5356 100005197 Address No interview for other reason
## 5357 100005198 Address No interview for other reason
## 5358 100005199 Address No interview for other reason
## 5359 100005200 Address No interview for other reason
## 5360 100005201 Address No interview for other reason
## 5361 100005202 Address No interview for other reason
## 5362 100005207 Address No interview for other reason
## 5363 100005208 Address No interview for other reason
## 5364 100005211 Address No interview for other reason
## 5365 100005214 Address No interview for other reason
## 5366 100005215 Address No interview for other reason
## 5367 100005216 Address No interview for other reason
## 5368 100005218 Address No interview for other reason
## 5369 100005220 Address No interview for other reason
## 5370 100005221 Address No interview for other reason
## 5371 100005222 Address No interview for other reason
## 5372 100005224 Address No interview for other reason
## 5373 100005225 Address No interview for other reason
## 5374 100005229 Address No interview for other reason
## 5375 100005232 Address No interview for other reason
## 5376 100005234 Address No interview for other reason
## 5377 100005236 Address No interview for other reason
## 5378 100005239 Address No interview for other reason
## 5379 100005241 Address No interview for other reason
## 5380 100005242 Address No interview for other reason
## 5381 100005243 Address No interview for other reason
## 5382 100005248 Address No interview for other reason
## 5383 100005249 Address No interview for other reason
## 5384 100005251 Address No interview for other reason
## 5385 100005252 Address No interview for other reason
## 5386 100005254 Address No interview for other reason
## 5387 100005255 Address No interview for other reason
## 5388 100005256 Address No interview for other reason
## 5389 100005257 Address No interview for other reason
## 5390 100005259 Address No interview for other reason
## 5391 100005260 Address No interview for other reason
## 5392 100005261 Address No interview for other reason
## 5393 100005262 Address No interview for other reason
## 5394 100005263 Address No interview for other reason
## 5395 100005264 Address No interview for other reason
## 5396 100005266 Address No interview for other reason
## 5397 100005268 Address No interview for other reason
## 5398 100005269 Address No interview for other reason
## 5399 100005270 Address No interview for other reason
## 5400 100005272 Address No interview for other reason
## 5401 100005273 Address No interview for other reason
## 5402 100005276 Address No interview for other reason
## 5403 100005277 Address No interview for other reason
## 5404 100005278 Address No interview for other reason
## 5405 100005280 Address No interview for other reason
## 5406 100005281 Address No interview for other reason
## 5407 100005285 Address No interview for other reason
## 5408 100005286 Address No interview for other reason
## 5409 100005287 Address No interview for other reason
## 5410 100005288 Address No interview for other reason
## 5411 100005291 Address No interview for other reason
## 5412 100005292 Address No interview for other reason
## 5413 100005293 Address No interview for other reason
## 5414 100005296 Address No interview for other reason
## 5415 100005298 Address No interview for other reason
## 5416 100005299 Address No interview for other reason
## 5417 100005300 Address No interview for other reason
## 5418 100005301 Address No interview for other reason
## 5419 100005302 Address No interview for other reason
## 5420 100005303 Address No interview for other reason
## 5421 100005304 Address No interview for other reason
## 5422 100005305 Address No interview for other reason
## 5423 100005306 Address No interview for other reason
## 5424 100005309 Address No interview for other reason
## 5425 100005310 Address No interview for other reason
## 5426 100005312 Address No interview for other reason
## 5427 100005315 Address No interview for other reason
## 5428 100005317 Address No interview for other reason
## 5429 100005318 Address No interview for other reason
## 5430 100005319 Address No interview for other reason
## 5431 100005321 Address No interview for other reason
## 5432 100005322 Address No interview for other reason
## 5433 100005323 Address No interview for other reason
## 5434 100005326 Address No interview for other reason
## 5435 100005327 Address No interview for other reason
## 5436 100005328 Address No interview for other reason
## 5437 100005329 Address No interview for other reason
## 5438 100005330 Address No interview for other reason
## 5439 100005331 Address No interview for other reason
## 5440 100005332 Address No interview for other reason
## 5441 100005333 Address No interview for other reason
## 5442 100005335 Address No interview for other reason
## 5443 100005336 Address No interview for other reason
## 5444 100005339 Address No interview for other reason
## 5445 100005340 Address No interview for other reason
## 5446 100005341 Address No interview for other reason
## 5447 100005342 Address No interview for other reason
## 5448 100005345 Address No interview for other reason
## 5449 100005346 Address No interview for other reason
## 5450 100005347 Address No interview for other reason
## 5451 100005349 Address No interview for other reason
## 5452 100005350 Address No interview for other reason
## 5453 100005351 Address No interview for other reason
## 5454 100005354 Address No interview for other reason
## 5455 100005355 Address No interview for other reason
## 5456 100005356 Address No interview for other reason
## 5457 100005359 Address No interview for other reason
## 5458 100005360 Address No interview for other reason
## 5459 100005362 Address No interview for other reason
## 5460 100005364 Address No interview for other reason
## 5461 100005365 Address No interview for other reason
## 5462 100005366 Address No interview for other reason
## 5463 100005367 Address No interview for other reason
## 5464 100005368 Address No interview for other reason
## 5465 100005369 Address No interview for other reason
## 5466 100005370 Address No interview for other reason
## 5467 100005371 Address No interview for other reason
## 5468 100005372 Address No interview for other reason
## 5469 100005373 Address No interview for other reason
## 5470 100005374 Address No interview for other reason
## 5471 100005375 Address No interview for other reason
## 5472 100005378 Address No interview for other reason
## 5473 100005379 Address No interview for other reason
## 5474 100005381 Address No interview for other reason
## 5475 100005382 Address No interview for other reason
## 5476 100005383 Address No interview for other reason
## 5477 100005386 Address No interview for other reason
## 5478 100005388 Address No interview for other reason
## 5479 100005390 Address No interview for other reason
## 5480 100005391 Address No interview for other reason
## 5481 100005392 Address No interview for other reason
## 5482 100005393 Address No interview for other reason
## 5483 100005397 Address No interview for other reason
## 5484 100005399 Address No interview for other reason
## 5485 100005402 Address No interview for other reason
## 5486 100005404 Address No interview for other reason
## 5487 100005409 Address No interview for other reason
## 5488 100005411 Address No interview for other reason
## 5489 100005412 Address No interview for other reason
## 5490 100005414 Address No interview for other reason
## 5491 100005415 Address No interview for other reason
## 5492 100005417 Address No interview for other reason
## 5493 100005421 Address No interview for other reason
## 5494 100005422 Address No interview for other reason
## 5495 100005424 Address No interview for other reason
## 5496 100005429 Address No interview for other reason
## 5497 100005430 Address No interview for other reason
## 5498 100005431 Address No interview for other reason
## 5499 100005432 Address No interview for other reason
## 5500 100005433 Address No interview for other reason
## 5501 100005434 Address No interview for other reason
## 5502 100005435 Address No interview for other reason
## 5503 100005437 Address No interview for other reason
## 5504 100005438 Address No interview for other reason
## 5505 100005439 Address No interview for other reason
## 5506 100005440 Address No interview for other reason
## 5507 100005441 Address No interview for other reason
## 5508 100005442 Address No interview for other reason
## 5509 100005444 Address No interview for other reason
## 5510 100005445 Address No interview for other reason
## 5511 100005447 Address No interview for other reason
## 5512 100005449 Address No interview for other reason
## 5513 100005453 Address No interview for other reason
## 5514 100005454 Address No interview for other reason
## 5515 100005458 Address No interview for other reason
## 5516 100005461 Address No interview for other reason
## 5517 100005462 Address No interview for other reason
## 5518 100005463 Address No interview for other reason
## 5519 100005465 Address No interview for other reason
## 5520 100005466 Address No interview for other reason
## 5521 100005467 Address No interview for other reason
## 5522 100005468 Address No interview for other reason
## 5523 100005469 Address No interview for other reason
## 5524 100005471 Address No interview for other reason
## 5525 100005473 Address No interview for other reason
## 5526 100005476 Address No interview for other reason
## 5527 100005477 Address No interview for other reason
## 5528 100005479 Address No interview for other reason
## 5529 100005483 Address No interview for other reason
## 5530 100005484 Address No interview for other reason
## 5531 100005485 Address No interview for other reason
## 5532 100005487 Address No interview for other reason
## 5533 100005488 Address No interview for other reason
## 5534 100005490 Address No interview for other reason
## 5535 100005491 Address No interview for other reason
## 5536 100005493 Address No interview for other reason
## 5537 100005495 Address No interview for other reason
## 5538 100005497 Address No interview for other reason
## 5539 100005498 Address No interview for other reason
## 5540 100005499 Address No interview for other reason
## 5541 100005504 Address No interview for other reason
## 5542 100005505 Address No interview for other reason
## 5543 100005506 Address No interview for other reason
## 5544 100005508 Address No interview for other reason
## 5545 100005509 Address No interview for other reason
## 5546 100005510 Address No interview for other reason
## 5547 100005512 Address No interview for other reason
## 5548 100005513 Address No interview for other reason
## 5549 100005515 Address No interview for other reason
## 5550 100005517 Address No interview for other reason
## 5551 100005518 Address No interview for other reason
## 5552 100005522 Address No interview for other reason
## 5553 100005523 Address No interview for other reason
## 5554 100005524 Address No interview for other reason
## 5555 100005525 Address No interview for other reason
## 5556 100005526 Address No interview for other reason
## 5557 100005529 Address No interview for other reason
## 5558 100005530 Address No interview for other reason
## 5559 100005531 Address No interview for other reason
## 5560 100005532 Address No interview for other reason
## 5561 100005533 Address No interview for other reason
## 5562 100005534 Address No interview for other reason
## 5563 100005538 Address No interview for other reason
## 5564 100005541 Address No interview for other reason
## 5565 100005542 Address No interview for other reason
## 5566 100005543 Address No interview for other reason
## 5567 100005545 Address No interview for other reason
## 5568 100005546 Address No interview for other reason
## 5569 100005549 Address No interview for other reason
## 5570 100005550 Address No interview for other reason
## 5571 100005551 Address No interview for other reason
## 5572 100005554 Address No interview for other reason
## 5573 100005556 Address No interview for other reason
## 5574 100005559 Address No interview for other reason
## 5575 100005561 Address No interview for other reason
## 5576 100005563 Address No interview for other reason
## 5577 100005564 Address No interview for other reason
## 5578 100005565 Address No interview for other reason
## 5579 100005568 Address No interview for other reason
## 5580 100005573 Address No interview for other reason
## 5581 100005574 Address No interview for other reason
## 5582 100005575 Address No interview for other reason
## 5583 100005576 Address No interview for other reason
## 5584 100005577 Address No interview for other reason
## 5585 100005578 Address No interview for other reason
## 5586 100005579 Address No interview for other reason
## 5587 100005580 Address No interview for other reason
## 5588 100005581 Address No interview for other reason
## 5589 100005582 Address No interview for other reason
## 5590 100005583 Address No interview for other reason
## 5591 100005584 Address No interview for other reason
## 5592 100005585 Address No interview for other reason
## 5593 100005586 Address No interview for other reason
## 5594 100005587 Address No interview for other reason
## 5595 100005588 Address No interview for other reason
## 5596 100005589 Address No interview for other reason
## 5597 100005595 Address No interview for other reason
## 5598 100005596 Address No interview for other reason
## 5599 100005598 Address No interview for other reason
## 5600 100005600 Address No interview for other reason
## telnum agea_1
## 1 Present <NA>
## 2 Present <NA>
## 3 Present <NA>
## 4 Present <NA>
## 5 Present <NA>
## 6 Present <NA>
## 7 Present <NA>
## 8 Present <NA>
## 9 Present <NA>
## 10 Refused <NA>
## 11 Present <NA>
## 12 Present <NA>
## 13 <NA> <NA>
## 14 Present <NA>
## 15 Refused <NA>
## 16 Refused <NA>
## 17 Refused 60 or over
## 18 Present <NA>
## 19 Present <NA>
## 20 Present <NA>
## 21 Present <NA>
## 22 Present <NA>
## 23 Present <NA>
## 24 Present <NA>
## 25 Refused <NA>
## 26 Present <NA>
## 27 Refused 40 to 59
## 28 Refused 60 or over
## 29 Present <NA>
## 30 Present <NA>
## 31 Present <NA>
## 32 Present <NA>
## 33 Present Under 20
## 34 Present <NA>
## 35 Present Don't know, never saw R, no selected R
## 36 No phone <NA>
## 37 Present 60 or over
## 38 Present <NA>
## 39 Present <NA>
## 40 Present 20 to 39
## 41 Present <NA>
## 42 Present <NA>
## 43 Present <NA>
## 44 Present <NA>
## 45 Present Don't know, never saw R, no selected R
## 46 Present <NA>
## 47 Present <NA>
## 48 Present Don't know, never saw R, no selected R
## 49 Present 20 to 39
## 50 Present <NA>
## 51 Present <NA>
## 52 Present <NA>
## 53 Present <NA>
## 54 Present <NA>
## 55 Present <NA>
## 56 Refused <NA>
## 57 Present <NA>
## 58 Present 20 to 39
## 59 Present <NA>
## 60 Present <NA>
## 61 Present <NA>
## 62 Present <NA>
## 63 Present <NA>
## 64 Refused <NA>
## 65 Present <NA>
## 66 Present <NA>
## 67 Present <NA>
## 68 Refused <NA>
## 69 Refused <NA>
## 70 Present 40 to 59
## 71 Present <NA>
## 72 Refused 40 to 59
## 73 Present <NA>
## 74 Present <NA>
## 75 Present <NA>
## 76 Present <NA>
## 77 Present <NA>
## 78 Present <NA>
## 79 Refused <NA>
## 80 Present <NA>
## 81 Present <NA>
## 82 Present <NA>
## 83 Present <NA>
## 84 Present 40 to 59
## 85 Present <NA>
## 86 Present <NA>
## 87 Present <NA>
## 88 Present <NA>
## 89 Present <NA>
## 90 Present <NA>
## 91 Refused <NA>
## 92 Present <NA>
## 93 Present 40 to 59
## 94 Present <NA>
## 95 Present <NA>
## 96 Refused <NA>
## 97 Present <NA>
## 98 No phone <NA>
## 99 Present <NA>
## 100 Present <NA>
## 101 Present <NA>
## 102 Present <NA>
## 103 Present <NA>
## 104 Refused 40 to 59
## 105 Present <NA>
## 106 Present <NA>
## 107 Present <NA>
## 108 Present 20 to 39
## 109 Present <NA>
## 110 Present <NA>
## 111 Present 60 or over
## 112 Present <NA>
## 113 Present <NA>
## 114 Present <NA>
## 115 Present <NA>
## 116 Present <NA>
## 117 Present <NA>
## 118 Present <NA>
## 119 Present 40 to 59
## 120 Present 40 to 59
## 121 Present <NA>
## 122 Present <NA>
## 123 Present <NA>
## 124 Present <NA>
## 125 Present <NA>
## 126 Present <NA>
## 127 Present <NA>
## 128 Present 40 to 59
## 129 Present <NA>
## 130 Present <NA>
## 131 Present <NA>
## 132 Present <NA>
## 133 Present <NA>
## 134 Present <NA>
## 135 Present <NA>
## 136 Present <NA>
## 137 Present 20 to 39
## 138 Present <NA>
## 139 Present <NA>
## 140 Present <NA>
## 141 Present <NA>
## 142 Refused <NA>
## 143 Present <NA>
## 144 Present <NA>
## 145 Present <NA>
## 146 Refused <NA>
## 147 Present <NA>
## 148 Present <NA>
## 149 Present <NA>
## 150 Present <NA>
## 151 Present <NA>
## 152 Present <NA>
## 153 Present <NA>
## 154 Present 20 to 39
## 155 Present <NA>
## 156 Present <NA>
## 157 Present <NA>
## 158 Present <NA>
## 159 Present 40 to 59
## 160 Present <NA>
## 161 Present 40 to 59
## 162 Present <NA>
## 163 Present <NA>
## 164 Refused <NA>
## 165 Present <NA>
## 166 Present <NA>
## 167 Present <NA>
## 168 Present <NA>
## 169 Present <NA>
## 170 Present <NA>
## 171 Refused <NA>
## 172 <NA> <NA>
## 173 Refused <NA>
## 174 No phone <NA>
## 175 Present <NA>
## 176 Refused <NA>
## 177 Present <NA>
## 178 Present <NA>
## 179 Present 60 or over
## 180 Present <NA>
## 181 Present <NA>
## 182 Present <NA>
## 183 Present Under 20
## 184 Present <NA>
## 185 Present <NA>
## 186 Present <NA>
## 187 Present <NA>
## 188 Present <NA>
## 189 Present <NA>
## 190 Present Don't know, never saw R, no selected R
## 191 Present <NA>
## 192 Present <NA>
## 193 Present <NA>
## 194 Present <NA>
## 195 Present <NA>
## 196 Present <NA>
## 197 Present <NA>
## 198 Present <NA>
## 199 Present <NA>
## 200 Present <NA>
## 201 Present <NA>
## 202 Present 60 or over
## 203 Present <NA>
## 204 Present <NA>
## 205 Present <NA>
## 206 Present <NA>
## 207 Present <NA>
## 208 Refused <NA>
## 209 Present <NA>
## 210 Present <NA>
## 211 Present <NA>
## 212 Present Under 20
## 213 Present 20 to 39
## 214 Refused <NA>
## 215 Present <NA>
## 216 Present 40 to 59
## 217 Present <NA>
## 218 Present <NA>
## 219 Present Don't know, never saw R, no selected R
## 220 Present <NA>
## 221 Present <NA>
## 222 Present <NA>
## 223 Present <NA>
## 224 Present <NA>
## 225 Present <NA>
## 226 Present <NA>
## 227 Present <NA>
## 228 Present 60 or over
## 229 Present <NA>
## 230 Present 20 to 39
## 231 Present <NA>
## 232 Present <NA>
## 233 Present <NA>
## 234 Present <NA>
## 235 <NA> <NA>
## 236 Present <NA>
## 237 Refused <NA>
## 238 Refused <NA>
## 239 Present <NA>
## 240 Refused <NA>
## 241 Present <NA>
## 242 Present <NA>
## 243 Present <NA>
## 244 Present <NA>
## 245 Present <NA>
## 246 Present <NA>
## 247 Present <NA>
## 248 Present <NA>
## 249 Present <NA>
## 250 Present <NA>
## 251 Present <NA>
## 252 Present <NA>
## 253 Present <NA>
## 254 Present <NA>
## 255 Present <NA>
## 256 Present <NA>
## 257 Present <NA>
## 258 Refused <NA>
## 259 Present <NA>
## 260 Present <NA>
## 261 No phone <NA>
## 262 Present <NA>
## 263 Refused <NA>
## 264 Present <NA>
## 265 Present <NA>
## 266 Present <NA>
## 267 Present <NA>
## 268 Present 40 to 59
## 269 Present <NA>
## 270 Present <NA>
## 271 Refused <NA>
## 272 Present <NA>
## 273 Present <NA>
## 274 Present <NA>
## 275 Present 40 to 59
## 276 Refused <NA>
## 277 Present <NA>
## 278 Present <NA>
## 279 Present <NA>
## 280 Present <NA>
## 281 Present <NA>
## 282 Present <NA>
## 283 Present 60 or over
## 284 Present <NA>
## 285 Present 20 to 39
## 286 Present <NA>
## 287 Present Don't know, never saw R, no selected R
## 288 Present 40 to 59
## 289 Present <NA>
## 290 Present <NA>
## 291 Present <NA>
## 292 Present <NA>
## 293 Present <NA>
## 294 Refused 40 to 59
## 295 Present <NA>
## 296 Present <NA>
## 297 Present 40 to 59
## 298 Present <NA>
## 299 Present <NA>
## 300 Present <NA>
## 301 Present <NA>
## 302 Present <NA>
## 303 Present <NA>
## 304 Present 60 or over
## 305 Present <NA>
## 306 Present <NA>
## 307 Present <NA>
## 308 Present <NA>
## 309 Present 60 or over
## 310 Present 60 or over
## 311 Present 40 to 59
## 312 Present <NA>
## 313 Present <NA>
## 314 Present <NA>
## 315 Present 20 to 39
## 316 Present <NA>
## 317 Present <NA>
## 318 Present <NA>
## 319 Present <NA>
## 320 Present <NA>
## 321 Present <NA>
## 322 Present <NA>
## 323 Present <NA>
## 324 Present <NA>
## 325 Present <NA>
## 326 Present Don't know, never saw R, no selected R
## 327 Present <NA>
## 328 Present <NA>
## 329 Present <NA>
## 330 Refused <NA>
## 331 Present <NA>
## 332 Present <NA>
## 333 Present 60 or over
## 334 Present 40 to 59
## 335 Present 20 to 39
## 336 Present 60 or over
## 337 Present 40 to 59
## 338 Present <NA>
## 339 Present <NA>
## 340 Present <NA>
## 341 Present <NA>
## 342 Present <NA>
## 343 Present <NA>
## 344 Present 40 to 59
## 345 Present <NA>
## 346 Present <NA>
## 347 Refused <NA>
## 348 Present <NA>
## 349 Present <NA>
## 350 Present <NA>
## 351 Present <NA>
## 352 Refused <NA>
## 353 Present <NA>
## 354 Present 40 to 59
## 355 Present <NA>
## 356 Present <NA>
## 357 Present <NA>
## 358 Present <NA>
## 359 Present <NA>
## 360 Present 60 or over
## 361 Present <NA>
## 362 Present <NA>
## 363 Refused <NA>
## 364 Present <NA>
## 365 Present <NA>
## 366 Present <NA>
## 367 Present 20 to 39
## 368 Present <NA>
## 369 Present <NA>
## 370 Present <NA>
## 371 Present <NA>
## 372 Present <NA>
## 373 Present <NA>
## 374 Present <NA>
## 375 Present <NA>
## 376 Present <NA>
## 377 Present <NA>
## 378 Present <NA>
## 379 Present 60 or over
## 380 No phone <NA>
## 381 Present <NA>
## 382 Refused <NA>
## 383 Present <NA>
## 384 Refused <NA>
## 385 Present 40 to 59
## 386 Present <NA>
## 387 Present <NA>
## 388 Present <NA>
## 389 Present <NA>
## 390 Present <NA>
## 391 Present <NA>
## 392 Present <NA>
## 393 Present <NA>
## 394 Present <NA>
## 395 Present <NA>
## 396 Present <NA>
## 397 No phone <NA>
## 398 Present <NA>
## 399 Present <NA>
## 400 Present <NA>
## 401 Present <NA>
## 402 Present <NA>
## 403 Present <NA>
## 404 Present <NA>
## 405 Present <NA>
## 406 Present <NA>
## 407 Present 60 or over
## 408 No phone <NA>
## 409 Present <NA>
## 410 Present <NA>
## 411 Refused 60 or over
## 412 Present <NA>
## 413 Present <NA>
## 414 Present <NA>
## 415 Present <NA>
## 416 Present Don't know, never saw R, no selected R
## 417 Present <NA>
## 418 Present 60 or over
## 419 Refused <NA>
## 420 Present <NA>
## 421 Present Don't know, never saw R, no selected R
## 422 Present <NA>
## 423 Present <NA>
## 424 Present <NA>
## 425 Present <NA>
## 426 Present <NA>
## 427 Present <NA>
## 428 Present <NA>
## 429 Present 60 or over
## 430 Refused <NA>
## 431 Present <NA>
## 432 Present 60 or over
## 433 Present <NA>
## 434 Present <NA>
## 435 Present <NA>
## 436 Present <NA>
## 437 Present <NA>
## 438 Present <NA>
## 439 Present 60 or over
## 440 Present <NA>
## 441 Present <NA>
## 442 Present <NA>
## 443 Present <NA>
## 444 Present 60 or over
## 445 Present <NA>
## 446 Present <NA>
## 447 Present <NA>
## 448 Present <NA>
## 449 No phone <NA>
## 450 Present <NA>
## 451 Present <NA>
## 452 Present 40 to 59
## 453 Present <NA>
## 454 Present <NA>
## 455 Present <NA>
## 456 Present <NA>
## 457 Present <NA>
## 458 Present <NA>
## 459 Present <NA>
## 460 Present <NA>
## 461 Present <NA>
## 462 Refused <NA>
## 463 Present <NA>
## 464 Present <NA>
## 465 Present 20 to 39
## 466 Present <NA>
## 467 Present <NA>
## 468 Present <NA>
## 469 Present <NA>
## 470 Present <NA>
## 471 Present <NA>
## 472 Present <NA>
## 473 Present <NA>
## 474 Present <NA>
## 475 Present <NA>
## 476 Present <NA>
## 477 Present 60 or over
## 478 Present <NA>
## 479 Present <NA>
## 480 Present <NA>
## 481 Present <NA>
## 482 Present <NA>
## 483 Present <NA>
## 484 Present <NA>
## 485 Present <NA>
## 486 Present <NA>
## 487 Present <NA>
## 488 Present <NA>
## 489 Present <NA>
## 490 Refused <NA>
## 491 Present <NA>
## 492 Present <NA>
## 493 Refused 40 to 59
## 494 Present <NA>
## 495 Present <NA>
## 496 Present <NA>
## 497 Present <NA>
## 498 Present <NA>
## 499 Present Don't know, never saw R, no selected R
## 500 Present <NA>
## 501 Present <NA>
## 502 Present <NA>
## 503 Refused 40 to 59
## 504 Present <NA>
## 505 Present <NA>
## 506 Present <NA>
## 507 Present <NA>
## 508 Present <NA>
## 509 Present <NA>
## 510 Refused <NA>
## 511 Present <NA>
## 512 Present <NA>
## 513 No phone <NA>
## 514 Refused <NA>
## 515 Present <NA>
## 516 Present <NA>
## 517 Present <NA>
## 518 Refused <NA>
## 519 Present 40 to 59
## 520 Present <NA>
## 521 Present <NA>
## 522 Present <NA>
## 523 Present <NA>
## 524 Refused <NA>
## 525 Present <NA>
## 526 Present <NA>
## 527 Present <NA>
## 528 Present <NA>
## 529 Present <NA>
## 530 Present <NA>
## 531 Present <NA>
## 532 Present <NA>
## 533 Present <NA>
## 534 Present <NA>
## 535 Present <NA>
## 536 Present <NA>
## 537 Present <NA>
## 538 Present <NA>
## 539 Present <NA>
## 540 Present <NA>
## 541 Present <NA>
## 542 Present <NA>
## 543 Present <NA>
## 544 Present <NA>
## 545 Present <NA>
## 546 Present <NA>
## 547 Present <NA>
## 548 Present <NA>
## 549 Refused <NA>
## 550 Present <NA>
## 551 Present <NA>
## 552 Present <NA>
## 553 Present <NA>
## 554 Present <NA>
## 555 Present <NA>
## 556 Present <NA>
## 557 Present <NA>
## 558 Present <NA>
## 559 Present <NA>
## 560 Present <NA>
## 561 Refused <NA>
## 562 Present <NA>
## 563 Present 20 to 39
## 564 Present 20 to 39
## 565 Present <NA>
## 566 Present <NA>
## 567 Present <NA>
## 568 Present <NA>
## 569 Present <NA>
## 570 Present <NA>
## 571 Present <NA>
## 572 Present <NA>
## 573 Present <NA>
## 574 Present <NA>
## 575 Present 20 to 39
## 576 Present <NA>
## 577 Present <NA>
## 578 Present 20 to 39
## 579 Refused <NA>
## 580 Present <NA>
## 581 Refused <NA>
## 582 Present <NA>
## 583 Present 40 to 59
## 584 Present <NA>
## 585 Present <NA>
## 586 Present <NA>
## 587 Present 60 or over
## 588 Present <NA>
## 589 Present 20 to 39
## 590 Present 40 to 59
## 591 Present <NA>
## 592 Present <NA>
## 593 Present 60 or over
## 594 Refused <NA>
## 595 Present <NA>
## 596 Present <NA>
## 597 Present <NA>
## 598 Present <NA>
## 599 Present <NA>
## 600 Present <NA>
## 601 Present <NA>
## 602 Present <NA>
## 603 Present <NA>
## 604 Present <NA>
## 605 Present <NA>
## 606 Present <NA>
## 607 Present <NA>
## 608 No phone <NA>
## 609 Present <NA>
## 610 Present <NA>
## 611 Present <NA>
## 612 Present <NA>
## 613 Present <NA>
## 614 Present <NA>
## 615 Present <NA>
## 616 Present 60 or over
## 617 Present <NA>
## 618 Present <NA>
## 619 Refused <NA>
## 620 Present <NA>
## 621 Present <NA>
## 622 Present <NA>
## 623 Present <NA>
## 624 Present <NA>
## 625 Present <NA>
## 626 Present <NA>
## 627 Present <NA>
## 628 Present <NA>
## 629 Present <NA>
## 630 Present <NA>
## 631 Present <NA>
## 632 Present <NA>
## 633 Present <NA>
## 634 Present <NA>
## 635 Present <NA>
## 636 Present <NA>
## 637 Present Don't know, never saw R, no selected R
## 638 Present <NA>
## 639 Present <NA>
## 640 Present <NA>
## 641 Refused 40 to 59
## 642 Present <NA>
## 643 Present 40 to 59
## 644 Present <NA>
## 645 Present <NA>
## 646 Refused <NA>
## 647 Present <NA>
## 648 Present <NA>
## 649 Present <NA>
## 650 Present <NA>
## 651 Present <NA>
## 652 Present 40 to 59
## 653 Present <NA>
## 654 Present <NA>
## 655 Present <NA>
## 656 Present <NA>
## 657 Present <NA>
## 658 Present <NA>
## 659 Present <NA>
## 660 Present 40 to 59
## 661 Present <NA>
## 662 Present <NA>
## 663 Present 20 to 39
## 664 Present <NA>
## 665 Present <NA>
## 666 Present <NA>
## 667 Refused <NA>
## 668 Present <NA>
## 669 Present <NA>
## 670 Present <NA>
## 671 Present <NA>
## 672 Present <NA>
## 673 Present 60 or over
## 674 No phone <NA>
## 675 Present 60 or over
## 676 Present <NA>
## 677 Present <NA>
## 678 Present <NA>
## 679 Present <NA>
## 680 Present <NA>
## 681 Present <NA>
## 682 Present Don't know, never saw R, no selected R
## 683 Present <NA>
## 684 Present <NA>
## 685 Present <NA>
## 686 Present <NA>
## 687 Present <NA>
## 688 Present 20 to 39
## 689 Present <NA>
## 690 Present <NA>
## 691 Present <NA>
## 692 Present <NA>
## 693 Present <NA>
## 694 Refused <NA>
## 695 Present <NA>
## 696 Present 40 to 59
## 697 Present <NA>
## 698 Present <NA>
## 699 Present <NA>
## 700 Present <NA>
## 701 Present <NA>
## 702 Present <NA>
## 703 Present <NA>
## 704 Present 20 to 39
## 705 Present <NA>
## 706 Present <NA>
## 707 Present <NA>
## 708 Present <NA>
## 709 Present <NA>
## 710 Refused <NA>
## 711 Present <NA>
## 712 Present <NA>
## 713 Present 40 to 59
## 714 Present <NA>
## 715 Present <NA>
## 716 Present 40 to 59
## 717 Refused <NA>
## 718 Present <NA>
## 719 Present <NA>
## 720 Present <NA>
## 721 Present <NA>
## 722 Present <NA>
## 723 Present <NA>
## 724 Refused <NA>
## 725 Present <NA>
## 726 Present <NA>
## 727 Present <NA>
## 728 Present 20 to 39
## 729 Present <NA>
## 730 Present <NA>
## 731 Present <NA>
## 732 Present <NA>
## 733 Present <NA>
## 734 Present <NA>
## 735 Present <NA>
## 736 Present <NA>
## 737 Present <NA>
## 738 Present <NA>
## 739 Present <NA>
## 740 Present <NA>
## 741 Present <NA>
## 742 Present <NA>
## 743 Present <NA>
## 744 Present <NA>
## 745 Present <NA>
## 746 Present <NA>
## 747 Present <NA>
## 748 Present <NA>
## 749 Refused <NA>
## 750 Present <NA>
## 751 Present 40 to 59
## 752 Refused 40 to 59
## 753 Present 20 to 39
## 754 Present <NA>
## 755 Present <NA>
## 756 Present <NA>
## 757 Refused <NA>
## 758 Present <NA>
## 759 Present <NA>
## 760 Present <NA>
## 761 Present <NA>
## 762 Present Don't know, never saw R, no selected R
## 763 Present <NA>
## 764 Present <NA>
## 765 Present <NA>
## 766 Present <NA>
## 767 Present <NA>
## 768 Present <NA>
## 769 Present <NA>
## 770 Present <NA>
## 771 Present <NA>
## 772 Present <NA>
## 773 Present <NA>
## 774 Present <NA>
## 775 Present <NA>
## 776 Refused <NA>
## 777 Present <NA>
## 778 Present <NA>
## 779 Present 20 to 39
## 780 Present <NA>
## 781 Present <NA>
## 782 Present <NA>
## 783 Present <NA>
## 784 Present <NA>
## 785 Present <NA>
## 786 Present <NA>
## 787 Present <NA>
## 788 Present 40 to 59
## 789 Present <NA>
## 790 Present <NA>
## 791 Present <NA>
## 792 Present 40 to 59
## 793 Present <NA>
## 794 Present <NA>
## 795 Present <NA>
## 796 Present <NA>
## 797 Present <NA>
## 798 Present <NA>
## 799 Present <NA>
## 800 Refused <NA>
## 801 Present <NA>
## 802 Present <NA>
## 803 Present <NA>
## 804 Present <NA>
## 805 Present 20 to 39
## 806 Present <NA>
## 807 Present <NA>
## 808 Present <NA>
## 809 Present 20 to 39
## 810 Present <NA>
## 811 Present <NA>
## 812 Present <NA>
## 813 <NA> 40 to 59
## 814 Present <NA>
## 815 Present <NA>
## 816 Present <NA>
## 817 Present <NA>
## 818 Present <NA>
## 819 Present <NA>
## 820 Present 20 to 39
## 821 Present <NA>
## 822 Present <NA>
## 823 Present <NA>
## 824 Present <NA>
## 825 Present <NA>
## 826 Present <NA>
## 827 Present <NA>
## 828 Present <NA>
## 829 Present <NA>
## 830 Present <NA>
## 831 Present 20 to 39
## 832 Present <NA>
## 833 Present <NA>
## 834 Present <NA>
## 835 Present <NA>
## 836 Present <NA>
## 837 Present <NA>
## 838 Refused Don't know, never saw R, no selected R
## 839 Present 40 to 59
## 840 Present <NA>
## 841 Present <NA>
## 842 Present <NA>
## 843 Present <NA>
## 844 Present <NA>
## 845 Present <NA>
## 846 Present <NA>
## 847 No phone 60 or over
## 848 Present <NA>
## 849 Refused 60 or over
## 850 Present <NA>
## 851 Present <NA>
## 852 Present <NA>
## 853 Refused 20 to 39
## 854 Present 60 or over
## 855 Present Don't know, never saw R, no selected R
## 856 Present <NA>
## 857 Present <NA>
## 858 Present <NA>
## 859 Present <NA>
## 860 Present <NA>
## 861 Present <NA>
## 862 Refused <NA>
## 863 Present <NA>
## 864 Present <NA>
## 865 Present <NA>
## 866 Present <NA>
## 867 Present <NA>
## 868 Present <NA>
## 869 Present <NA>
## 870 Present <NA>
## 871 Present <NA>
## 872 Present 60 or over
## 873 Present <NA>
## 874 Present <NA>
## 875 Present 20 to 39
## 876 Present 60 or over
## 877 Refused <NA>
## 878 Refused 20 to 39
## 879 Present <NA>
## 880 Present <NA>
## 881 Refused 20 to 39
## 882 Refused Don't know, never saw R, no selected R
## 883 Present <NA>
## 884 Present 20 to 39
## 885 Present <NA>
## 886 Present <NA>
## 887 Present <NA>
## 888 Present <NA>
## 889 Present <NA>
## 890 Present <NA>
## 891 Present <NA>
## 892 Present 40 to 59
## 893 Present <NA>
## 894 Present Don't know, never saw R, no selected R
## 895 Present <NA>
## 896 Present <NA>
## 897 Present <NA>
## 898 Present <NA>
## 899 Present <NA>
## 900 <NA> <NA>
## 901 Present <NA>
## 902 Refused <NA>
## 903 Present <NA>
## 904 Refused <NA>
## 905 Present <NA>
## 906 Present <NA>
## 907 Present <NA>
## 908 Present <NA>
## 909 Present <NA>
## 910 Present <NA>
## 911 Present <NA>
## 912 Present <NA>
## 913 Present <NA>
## 914 Present <NA>
## 915 Refused <NA>
## 916 Present <NA>
## 917 Present <NA>
## 918 Present 60 or over
## 919 Present <NA>
## 920 Present <NA>
## 921 Present <NA>
## 922 Present <NA>
## 923 Present <NA>
## 924 Present 60 or over
## 925 Present <NA>
## 926 Present <NA>
## 927 Present <NA>
## 928 Present <NA>
## 929 Present 60 or over
## 930 Present <NA>
## 931 Present <NA>
## 932 Present <NA>
## 933 Present <NA>
## 934 Present <NA>
## 935 Present <NA>
## 936 Present <NA>
## 937 Present <NA>
## 938 Present <NA>
## 939 Refused <NA>
## 940 Present <NA>
## 941 Present <NA>
## 942 Present 40 to 59
## 943 Refused <NA>
## 944 Present <NA>
## 945 Present <NA>
## 946 Present Under 20
## 947 Present <NA>
## 948 Present <NA>
## 949 Present Don't know, never saw R, no selected R
## 950 Refused <NA>
## 951 Present <NA>
## 952 Present <NA>
## 953 Present <NA>
## 954 Refused 40 to 59
## 955 Present <NA>
## 956 Present <NA>
## 957 Present <NA>
## 958 Present <NA>
## 959 Present <NA>
## 960 Present <NA>
## 961 Present 40 to 59
## 962 Present <NA>
## 963 Present Under 20
## 964 Present <NA>
## 965 Present <NA>
## 966 Present <NA>
## 967 Present <NA>
## 968 Present <NA>
## 969 Present <NA>
## 970 Present <NA>
## 971 Present <NA>
## 972 Present <NA>
## 973 Present <NA>
## 974 Present <NA>
## 975 Present <NA>
## 976 Refused <NA>
## 977 Present <NA>
## 978 Present <NA>
## 979 Present <NA>
## 980 Present <NA>
## 981 Present <NA>
## 982 Present <NA>
## 983 Present <NA>
## 984 Present <NA>
## 985 Present <NA>
## 986 Present <NA>
## 987 Present 20 to 39
## 988 Present <NA>
## 989 Present <NA>
## 990 Present 60 or over
## 991 Present <NA>
## 992 Present <NA>
## 993 Present <NA>
## 994 Present <NA>
## 995 Present <NA>
## 996 Present <NA>
## 997 Present <NA>
## 998 Present <NA>
## 999 Present <NA>
## 1000 Present <NA>
## 1001 Present <NA>
## 1002 Present <NA>
## 1003 Present <NA>
## 1004 Present <NA>
## 1005 Present <NA>
## 1006 Refused <NA>
## 1007 Present 60 or over
## 1008 Present Under 20
## 1009 Present <NA>
## 1010 Present <NA>
## 1011 Present <NA>
## 1012 Present <NA>
## 1013 Present <NA>
## 1014 Present 40 to 59
## 1015 Present 20 to 39
## 1016 Present <NA>
## 1017 Refused 60 or over
## 1018 Present <NA>
## 1019 Present <NA>
## 1020 Present <NA>
## 1021 Present <NA>
## 1022 Present <NA>
## 1023 Present <NA>
## 1024 Present <NA>
## 1025 Present <NA>
## 1026 Present <NA>
## 1027 Present 40 to 59
## 1028 Present <NA>
## 1029 Present <NA>
## 1030 Present <NA>
## 1031 Refused <NA>
## 1032 Present <NA>
## 1033 Present <NA>
## 1034 Present <NA>
## 1035 Present <NA>
## 1036 Present 60 or over
## 1037 Present <NA>
## 1038 Present <NA>
## 1039 Present <NA>
## 1040 Present <NA>
## 1041 Refused Under 20
## 1042 Present <NA>
## 1043 Present <NA>
## 1044 Present <NA>
## 1045 Present <NA>
## 1046 Present <NA>
## 1047 Refused <NA>
## 1048 Present <NA>
## 1049 Present Don't know, never saw R, no selected R
## 1050 Present <NA>
## 1051 Present 40 to 59
## 1052 Present <NA>
## 1053 Present <NA>
## 1054 Present <NA>
## 1055 Present <NA>
## 1056 Present <NA>
## 1057 Present <NA>
## 1058 Present <NA>
## 1059 Present <NA>
## 1060 Present <NA>
## 1061 Refused <NA>
## 1062 Refused 40 to 59
## 1063 Refused <NA>
## 1064 Present <NA>
## 1065 Present <NA>
## 1066 Refused 40 to 59
## 1067 Present <NA>
## 1068 Present 40 to 59
## 1069 Present <NA>
## 1070 Present <NA>
## 1071 No phone <NA>
## 1072 Present <NA>
## 1073 Present <NA>
## 1074 Present <NA>
## 1075 Present <NA>
## 1076 Present <NA>
## 1077 Present <NA>
## 1078 Present 40 to 59
## 1079 Refused <NA>
## 1080 Present <NA>
## 1081 Present <NA>
## 1082 Present <NA>
## 1083 Present <NA>
## 1084 Present <NA>
## 1085 Refused Don't know, never saw R, no selected R
## 1086 Present <NA>
## 1087 Present <NA>
## 1088 Refused <NA>
## 1089 Present <NA>
## 1090 Present 20 to 39
## 1091 Present <NA>
## 1092 Present <NA>
## 1093 Present <NA>
## 1094 Present <NA>
## 1095 Present <NA>
## 1096 Present <NA>
## 1097 Refused 60 or over
## 1098 Present <NA>
## 1099 Present <NA>
## 1100 Present 20 to 39
## 1101 Present <NA>
## 1102 Present <NA>
## 1103 Present <NA>
## 1104 Present <NA>
## 1105 Present 60 or over
## 1106 Refused <NA>
## 1107 Present <NA>
## 1108 Present <NA>
## 1109 Present <NA>
## 1110 Present <NA>
## 1111 Refused 40 to 59
## 1112 Present <NA>
## 1113 Present <NA>
## 1114 Present <NA>
## 1115 Present <NA>
## 1116 Present <NA>
## 1117 Present <NA>
## 1118 Present 40 to 59
## 1119 Present <NA>
## 1120 Present <NA>
## 1121 Present <NA>
## 1122 Present <NA>
## 1123 Present <NA>
## 1124 Present <NA>
## 1125 Present 60 or over
## 1126 Present <NA>
## 1127 Present 20 to 39
## 1128 Present <NA>
## 1129 Present <NA>
## 1130 Present <NA>
## 1131 No phone <NA>
## 1132 Present <NA>
## 1133 Present <NA>
## 1134 Present <NA>
## 1135 Refused 60 or over
## 1136 Present <NA>
## 1137 Present 20 to 39
## 1138 Present <NA>
## 1139 Present 40 to 59
## 1140 Present <NA>
## 1141 No phone 60 or over
## 1142 Refused <NA>
## 1143 Present <NA>
## 1144 Present <NA>
## 1145 Present <NA>
## 1146 Refused <NA>
## 1147 No phone <NA>
## 1148 Present <NA>
## 1149 Present <NA>
## 1150 No phone <NA>
## 1151 Refused <NA>
## 1152 Refused <NA>
## 1153 Present 20 to 39
## 1154 Present <NA>
## 1155 Present <NA>
## 1156 Present <NA>
## 1157 Present <NA>
## 1158 Present <NA>
## 1159 Refused <NA>
## 1160 Present <NA>
## 1161 Present <NA>
## 1162 Refused <NA>
## 1163 Present <NA>
## 1164 Present <NA>
## 1165 Present <NA>
## 1166 Present <NA>
## 1167 Present <NA>
## 1168 Present <NA>
## 1169 Present <NA>
## 1170 Present <NA>
## 1171 Present <NA>
## 1172 Refused <NA>
## 1173 Present <NA>
## 1174 Refused <NA>
## 1175 Present <NA>
## 1176 Present 20 to 39
## 1177 Present <NA>
## 1178 Present 40 to 59
## 1179 Present <NA>
## 1180 Present <NA>
## 1181 Present <NA>
## 1182 Present <NA>
## 1183 Present <NA>
## 1184 Present <NA>
## 1185 Present <NA>
## 1186 Present <NA>
## 1187 Present <NA>
## 1188 Present <NA>
## 1189 Present <NA>
## 1190 Present <NA>
## 1191 Refused <NA>
## 1192 Refused <NA>
## 1193 Present <NA>
## 1194 Present <NA>
## 1195 Present <NA>
## 1196 Present <NA>
## 1197 Present <NA>
## 1198 Present <NA>
## 1199 Present <NA>
## 1200 Present <NA>
## 1201 Present 40 to 59
## 1202 Present <NA>
## 1203 Present <NA>
## 1204 Present <NA>
## 1205 Present <NA>
## 1206 Present <NA>
## 1207 Present <NA>
## 1208 Present 20 to 39
## 1209 Refused 40 to 59
## 1210 Present <NA>
## 1211 Present <NA>
## 1212 Present 40 to 59
## 1213 Present 20 to 39
## 1214 Refused <NA>
## 1215 Present <NA>
## 1216 Present <NA>
## 1217 Present <NA>
## 1218 Present <NA>
## 1219 Present <NA>
## 1220 Present <NA>
## 1221 Present <NA>
## 1222 Present <NA>
## 1223 Refused <NA>
## 1224 Present <NA>
## 1225 Present <NA>
## 1226 Present <NA>
## 1227 Present 60 or over
## 1228 Refused <NA>
## 1229 Present <NA>
## 1230 Present <NA>
## 1231 Refused <NA>
## 1232 Present <NA>
## 1233 Present <NA>
## 1234 Present <NA>
## 1235 Present <NA>
## 1236 Present <NA>
## 1237 Refused <NA>
## 1238 Present 60 or over
## 1239 Present 60 or over
## 1240 Present <NA>
## 1241 Present <NA>
## 1242 Present <NA>
## 1243 Present <NA>
## 1244 Present <NA>
## 1245 Present <NA>
## 1246 Present <NA>
## 1247 Present 60 or over
## 1248 Present <NA>
## 1249 Present <NA>
## 1250 Present 40 to 59
## 1251 Present 60 or over
## 1252 Present <NA>
## 1253 Present <NA>
## 1254 Present <NA>
## 1255 Refused <NA>
## 1256 Present <NA>
## 1257 Present <NA>
## 1258 Present <NA>
## 1259 Present 60 or over
## 1260 Present <NA>
## 1261 Present <NA>
## 1262 Present <NA>
## 1263 Refused <NA>
## 1264 Present <NA>
## 1265 Refused <NA>
## 1266 Present 40 to 59
## 1267 Present <NA>
## 1268 Present <NA>
## 1269 Present <NA>
## 1270 Present <NA>
## 1271 Present <NA>
## 1272 Present <NA>
## 1273 Present <NA>
## 1274 Present <NA>
## 1275 Present <NA>
## 1276 Present <NA>
## 1277 Refused <NA>
## 1278 Present <NA>
## 1279 Present <NA>
## 1280 Present <NA>
## 1281 Present <NA>
## 1282 Present <NA>
## 1283 Present <NA>
## 1284 Present <NA>
## 1285 Present <NA>
## 1286 Present 60 or over
## 1287 Present <NA>
## 1288 Refused <NA>
## 1289 Present <NA>
## 1290 Present <NA>
## 1291 Present <NA>
## 1292 Present 20 to 39
## 1293 Present <NA>
## 1294 Present <NA>
## 1295 Present <NA>
## 1296 Present <NA>
## 1297 Present <NA>
## 1298 Present <NA>
## 1299 Present <NA>
## 1300 Present <NA>
## 1301 Present 20 to 39
## 1302 Present 60 or over
## 1303 Present <NA>
## 1304 Present <NA>
## 1305 Present 60 or over
## 1306 Present <NA>
## 1307 Present <NA>
## 1308 Refused <NA>
## 1309 Present <NA>
## 1310 Present <NA>
## 1311 Refused <NA>
## 1312 Refused 40 to 59
## 1313 Present <NA>
## 1314 Present <NA>
## 1315 Present <NA>
## 1316 Present <NA>
## 1317 Present <NA>
## 1318 Present <NA>
## 1319 Present 60 or over
## 1320 Present <NA>
## 1321 Present 60 or over
## 1322 Present <NA>
## 1323 Present <NA>
## 1324 Present <NA>
## 1325 Present <NA>
## 1326 Present <NA>
## 1327 Present <NA>
## 1328 Present <NA>
## 1329 Present <NA>
## 1330 Refused 20 to 39
## 1331 Present <NA>
## 1332 Present <NA>
## 1333 Refused <NA>
## 1334 Present <NA>
## 1335 Present <NA>
## 1336 Present <NA>
## 1337 Present <NA>
## 1338 Refused 60 or over
## 1339 Present <NA>
## 1340 Present <NA>
## 1341 Present <NA>
## 1342 Present <NA>
## 1343 Present <NA>
## 1344 Present <NA>
## 1345 Refused <NA>
## 1346 Present 40 to 59
## 1347 Present 60 or over
## 1348 Present 60 or over
## 1349 Present <NA>
## 1350 Refused <NA>
## 1351 Present 60 or over
## 1352 Present <NA>
## 1353 Present <NA>
## 1354 Refused <NA>
## 1355 Present <NA>
## 1356 Present <NA>
## 1357 Present <NA>
## 1358 Present <NA>
## 1359 Present <NA>
## 1360 Present <NA>
## 1361 Present <NA>
## 1362 Present <NA>
## 1363 Present <NA>
## 1364 Present <NA>
## 1365 Present <NA>
## 1366 Present <NA>
## 1367 Present 20 to 39
## 1368 Present <NA>
## 1369 Present <NA>
## 1370 Present <NA>
## 1371 Present <NA>
## 1372 Present <NA>
## 1373 Present <NA>
## 1374 Present <NA>
## 1375 Present <NA>
## 1376 Present <NA>
## 1377 Present <NA>
## 1378 Present <NA>
## 1379 Present <NA>
## 1380 Present <NA>
## 1381 Present <NA>
## 1382 Present <NA>
## 1383 Present <NA>
## 1384 Present <NA>
## 1385 Present <NA>
## 1386 Present <NA>
## 1387 Present <NA>
## 1388 Present <NA>
## 1389 Present <NA>
## 1390 Present <NA>
## 1391 Present <NA>
## 1392 Present 60 or over
## 1393 Present <NA>
## 1394 Present 60 or over
## 1395 Present <NA>
## 1396 <NA> <NA>
## 1397 Present <NA>
## 1398 Present <NA>
## 1399 Present <NA>
## 1400 Refused <NA>
## 1401 Present <NA>
## 1402 Refused <NA>
## 1403 Present <NA>
## 1404 Present <NA>
## 1405 Present <NA>
## 1406 Present <NA>
## 1407 Refused <NA>
## 1408 Present <NA>
## 1409 Present <NA>
## 1410 Present <NA>
## 1411 Present <NA>
## 1412 Present <NA>
## 1413 Present <NA>
## 1414 Present <NA>
## 1415 Present <NA>
## 1416 Present 60 or over
## 1417 Refused 20 to 39
## 1418 Present <NA>
## 1419 Present 40 to 59
## 1420 Present <NA>
## 1421 Refused <NA>
## 1422 Present <NA>
## 1423 Present <NA>
## 1424 Present <NA>
## 1425 Present <NA>
## 1426 Present <NA>
## 1427 Present <NA>
## 1428 Present <NA>
## 1429 Present <NA>
## 1430 Present <NA>
## 1431 Present <NA>
## 1432 Present <NA>
## 1433 Present <NA>
## 1434 Present 40 to 59
## 1435 No phone <NA>
## 1436 Present <NA>
## 1437 Present <NA>
## 1438 Refused <NA>
## 1439 Refused 60 or over
## 1440 Present 20 to 39
## 1441 Present <NA>
## 1442 No phone <NA>
## 1443 Present <NA>
## 1444 Present <NA>
## 1445 Present <NA>
## 1446 Present <NA>
## 1447 Present <NA>
## 1448 Refused <NA>
## 1449 Present <NA>
## 1450 Present <NA>
## 1451 Present <NA>
## 1452 Present 60 or over
## 1453 No phone 60 or over
## 1454 Present <NA>
## 1455 Present <NA>
## 1456 Present <NA>
## 1457 Present <NA>
## 1458 Present <NA>
## 1459 Present <NA>
## 1460 Present <NA>
## 1461 Present <NA>
## 1462 Present <NA>
## 1463 Present <NA>
## 1464 Present <NA>
## 1465 Refused <NA>
## 1466 Present <NA>
## 1467 Present <NA>
## 1468 Present 20 to 39
## 1469 Present <NA>
## 1470 Refused <NA>
## 1471 Present <NA>
## 1472 Present <NA>
## 1473 Present <NA>
## 1474 Present <NA>
## 1475 Present <NA>
## 1476 Present <NA>
## 1477 Present 40 to 59
## 1478 Present <NA>
## 1479 Present <NA>
## 1480 Present <NA>
## 1481 Present <NA>
## 1482 Present <NA>
## 1483 Present <NA>
## 1484 Present <NA>
## 1485 Present <NA>
## 1486 Present <NA>
## 1487 Present <NA>
## 1488 Refused <NA>
## 1489 Refused <NA>
## 1490 Refused <NA>
## 1491 Present <NA>
## 1492 Present <NA>
## 1493 Present <NA>
## 1494 Present <NA>
## 1495 Present <NA>
## 1496 Refused <NA>
## 1497 Present <NA>
## 1498 Present <NA>
## 1499 Present <NA>
## 1500 Present <NA>
## 1501 Present 60 or over
## 1502 Present <NA>
## 1503 Present <NA>
## 1504 Present <NA>
## 1505 Present <NA>
## 1506 Refused 20 to 39
## 1507 Present <NA>
## 1508 Present <NA>
## 1509 Present <NA>
## 1510 Refused <NA>
## 1511 Present <NA>
## 1512 Present <NA>
## 1513 Present <NA>
## 1514 Refused <NA>
## 1515 Present <NA>
## 1516 Present <NA>
## 1517 Present <NA>
## 1518 Present <NA>
## 1519 Present <NA>
## 1520 Present <NA>
## 1521 Present 40 to 59
## 1522 Present <NA>
## 1523 Present <NA>
## 1524 Present <NA>
## 1525 Present <NA>
## 1526 Present <NA>
## 1527 Present <NA>
## 1528 Present <NA>
## 1529 Present 60 or over
## 1530 Present <NA>
## 1531 Present <NA>
## 1532 Present <NA>
## 1533 Present <NA>
## 1534 Present <NA>
## 1535 Present <NA>
## 1536 Present <NA>
## 1537 Present <NA>
## 1538 Present <NA>
## 1539 Present <NA>
## 1540 Present <NA>
## 1541 Present <NA>
## 1542 Present <NA>
## 1543 Present <NA>
## 1544 Present <NA>
## 1545 Present <NA>
## 1546 Present <NA>
## 1547 Present <NA>
## 1548 Present <NA>
## 1549 Present 20 to 39
## 1550 Present <NA>
## 1551 Present 20 to 39
## 1552 Present <NA>
## 1553 Present <NA>
## 1554 Present <NA>
## 1555 Present <NA>
## 1556 Present <NA>
## 1557 Present <NA>
## 1558 Present <NA>
## 1559 Present <NA>
## 1560 Present 40 to 59
## 1561 Present <NA>
## 1562 Refused 20 to 39
## 1563 Present <NA>
## 1564 Present <NA>
## 1565 Present <NA>
## 1566 Present 40 to 59
## 1567 Present <NA>
## 1568 Refused <NA>
## 1569 Present <NA>
## 1570 Present <NA>
## 1571 Present <NA>
## 1572 Present <NA>
## 1573 Present <NA>
## 1574 Present <NA>
## 1575 Present <NA>
## 1576 Present <NA>
## 1577 Present <NA>
## 1578 Present <NA>
## 1579 Present <NA>
## 1580 Present <NA>
## 1581 Refused <NA>
## 1582 Present 40 to 59
## 1583 Present <NA>
## 1584 Present <NA>
## 1585 Present <NA>
## 1586 Present 20 to 39
## 1587 Present <NA>
## 1588 Present <NA>
## 1589 Present <NA>
## 1590 Present <NA>
## 1591 Present <NA>
## 1592 Present <NA>
## 1593 Present <NA>
## 1594 Present <NA>
## 1595 Present 20 to 39
## 1596 Present <NA>
## 1597 Present 40 to 59
## 1598 Present <NA>
## 1599 Present Don't know, never saw R, no selected R
## 1600 Present 20 to 39
## 1601 Present <NA>
## 1602 Present <NA>
## 1603 Present <NA>
## 1604 Present 40 to 59
## 1605 Present <NA>
## 1606 Present <NA>
## 1607 Present <NA>
## 1608 Present <NA>
## 1609 Present <NA>
## 1610 Present <NA>
## 1611 Present <NA>
## 1612 Present <NA>
## 1613 Refused <NA>
## 1614 Present <NA>
## 1615 Present <NA>
## 1616 Present <NA>
## 1617 Present <NA>
## 1618 Present <NA>
## 1619 Present <NA>
## 1620 Present <NA>
## 1621 Present <NA>
## 1622 Present <NA>
## 1623 Present 40 to 59
## 1624 Present <NA>
## 1625 Present <NA>
## 1626 Present <NA>
## 1627 Present <NA>
## 1628 Refused <NA>
## 1629 Present <NA>
## 1630 Present <NA>
## 1631 Present <NA>
## 1632 Present <NA>
## 1633 Present <NA>
## 1634 Present <NA>
## 1635 Present <NA>
## 1636 Present <NA>
## 1637 Present <NA>
## 1638 Present <NA>
## 1639 Present <NA>
## 1640 Present <NA>
## 1641 Refused <NA>
## 1642 Present <NA>
## 1643 Present <NA>
## 1644 Present <NA>
## 1645 Present 40 to 59
## 1646 Present <NA>
## 1647 Present <NA>
## 1648 Present <NA>
## 1649 Present <NA>
## 1650 Present <NA>
## 1651 Present <NA>
## 1652 No phone <NA>
## 1653 Present <NA>
## 1654 Present <NA>
## 1655 Present <NA>
## 1656 Present <NA>
## 1657 Present <NA>
## 1658 Present <NA>
## 1659 Present <NA>
## 1660 Present 20 to 39
## 1661 Present <NA>
## 1662 Present 60 or over
## 1663 Present <NA>
## 1664 Present <NA>
## 1665 Present <NA>
## 1666 Present <NA>
## 1667 Present <NA>
## 1668 Present <NA>
## 1669 Present 20 to 39
## 1670 Present <NA>
## 1671 Present <NA>
## 1672 Refused <NA>
## 1673 Present <NA>
## 1674 Present <NA>
## 1675 Present <NA>
## 1676 Refused <NA>
## 1677 No phone <NA>
## 1678 Refused <NA>
## 1679 Present 20 to 39
## 1680 Present <NA>
## 1681 Present <NA>
## 1682 No phone <NA>
## 1683 Refused 20 to 39
## 1684 Present <NA>
## 1685 Present <NA>
## 1686 Present <NA>
## 1687 Present <NA>
## 1688 Present <NA>
## 1689 Refused <NA>
## 1690 Present <NA>
## 1691 Present <NA>
## 1692 Present <NA>
## 1693 Present <NA>
## 1694 Present <NA>
## 1695 Refused 20 to 39
## 1696 Present <NA>
## 1697 Present <NA>
## 1698 Present <NA>
## 1699 Present <NA>
## 1700 Present 40 to 59
## 1701 Present <NA>
## 1702 Present 60 or over
## 1703 Present <NA>
## 1704 Present <NA>
## 1705 Present <NA>
## 1706 Present <NA>
## 1707 Present <NA>
## 1708 Present <NA>
## 1709 Present 40 to 59
## 1710 Present <NA>
## 1711 No phone <NA>
## 1712 Present 40 to 59
## 1713 Present <NA>
## 1714 Present <NA>
## 1715 Present <NA>
## 1716 Present <NA>
## 1717 Present 60 or over
## 1718 Present <NA>
## 1719 Present <NA>
## 1720 Present <NA>
## 1721 Present <NA>
## 1722 Present <NA>
## 1723 Present <NA>
## 1724 Present <NA>
## 1725 Present <NA>
## 1726 Present 20 to 39
## 1727 Present <NA>
## 1728 Present <NA>
## 1729 Present <NA>
## 1730 Present <NA>
## 1731 Present <NA>
## 1732 Present <NA>
## 1733 Present <NA>
## 1734 Present <NA>
## 1735 Present <NA>
## 1736 Present <NA>
## 1737 Present <NA>
## 1738 Present <NA>
## 1739 Refused <NA>
## 1740 Present Don't know, never saw R, no selected R
## 1741 Present <NA>
## 1742 Present <NA>
## 1743 Present <NA>
## 1744 Present <NA>
## 1745 Present <NA>
## 1746 Present <NA>
## 1747 Present <NA>
## 1748 Present <NA>
## 1749 Present <NA>
## 1750 Refused <NA>
## 1751 Present Don't know, never saw R, no selected R
## 1752 Present <NA>
## 1753 Present <NA>
## 1754 Present <NA>
## 1755 Present <NA>
## 1756 No phone <NA>
## 1757 Present <NA>
## 1758 Present <NA>
## 1759 Present <NA>
## 1760 Present 40 to 59
## 1761 Present <NA>
## 1762 Present <NA>
## 1763 Present <NA>
## 1764 Present <NA>
## 1765 Refused 60 or over
## 1766 Present <NA>
## 1767 Present <NA>
## 1768 Present <NA>
## 1769 Present <NA>
## 1770 Present <NA>
## 1771 Present <NA>
## 1772 Present 40 to 59
## 1773 Present <NA>
## 1774 Present <NA>
## 1775 Present <NA>
## 1776 Present <NA>
## 1777 Present <NA>
## 1778 Present <NA>
## 1779 Present <NA>
## 1780 Present <NA>
## 1781 Present <NA>
## 1782 Present <NA>
## 1783 Present <NA>
## 1784 Present <NA>
## 1785 Present 40 to 59
## 1786 Present <NA>
## 1787 Present <NA>
## 1788 Present <NA>
## 1789 Present 40 to 59
## 1790 Present <NA>
## 1791 Present <NA>
## 1792 Present <NA>
## 1793 Present <NA>
## 1794 Present <NA>
## 1795 Present 60 or over
## 1796 Present <NA>
## 1797 Present <NA>
## 1798 Present <NA>
## 1799 Present 40 to 59
## 1800 Present <NA>
## 1801 Present <NA>
## 1802 Present <NA>
## 1803 Present <NA>
## 1804 Present <NA>
## 1805 Present <NA>
## 1806 Present <NA>
## 1807 Present <NA>
## 1808 Present <NA>
## 1809 Present <NA>
## 1810 Present <NA>
## 1811 Present <NA>
## 1812 Present <NA>
## 1813 Present <NA>
## 1814 Present 40 to 59
## 1815 Present <NA>
## 1816 Present <NA>
## 1817 Present <NA>
## 1818 Present <NA>
## 1819 Present <NA>
## 1820 Present <NA>
## 1821 Present <NA>
## 1822 Present <NA>
## 1823 Present <NA>
## 1824 Present <NA>
## 1825 Present <NA>
## 1826 Present <NA>
## 1827 Present <NA>
## 1828 Present <NA>
## 1829 Refused <NA>
## 1830 Present 40 to 59
## 1831 Present <NA>
## 1832 Present <NA>
## 1833 Present 20 to 39
## 1834 Present <NA>
## 1835 Present <NA>
## 1836 Present <NA>
## 1837 Present <NA>
## 1838 Present <NA>
## 1839 Present <NA>
## 1840 Present <NA>
## 1841 Present <NA>
## 1842 Present <NA>
## 1843 Present <NA>
## 1844 Present 40 to 59
## 1845 Present <NA>
## 1846 Present <NA>
## 1847 Present <NA>
## 1848 Present <NA>
## 1849 Present <NA>
## 1850 Refused <NA>
## 1851 Present <NA>
## 1852 Present 40 to 59
## 1853 Present <NA>
## 1854 Present <NA>
## 1855 Present <NA>
## 1856 Present <NA>
## 1857 Present <NA>
## 1858 Present <NA>
## 1859 Present <NA>
## 1860 Present <NA>
## 1861 No phone <NA>
## 1862 Present 40 to 59
## 1863 Present <NA>
## 1864 Present 40 to 59
## 1865 Present <NA>
## 1866 Present <NA>
## 1867 Refused <NA>
## 1868 Present <NA>
## 1869 Present <NA>
## 1870 Present <NA>
## 1871 Present <NA>
## 1872 Present <NA>
## 1873 Present <NA>
## 1874 Present <NA>
## 1875 Refused <NA>
## 1876 Present <NA>
## 1877 Present <NA>
## 1878 Present <NA>
## 1879 Present <NA>
## 1880 Present <NA>
## 1881 Refused <NA>
## 1882 Present <NA>
## 1883 Refused <NA>
## 1884 Present <NA>
## 1885 Present <NA>
## 1886 Present <NA>
## 1887 Present <NA>
## 1888 Present <NA>
## 1889 Present <NA>
## 1890 Present <NA>
## 1891 Present 20 to 39
## 1892 Present <NA>
## 1893 Present 60 or over
## 1894 Present 20 to 39
## 1895 Present <NA>
## 1896 Refused <NA>
## 1897 Refused <NA>
## 1898 Present <NA>
## 1899 Present <NA>
## 1900 Present 60 or over
## 1901 Present <NA>
## 1902 Present 60 or over
## 1903 Present <NA>
## 1904 Present <NA>
## 1905 Present <NA>
## 1906 Present <NA>
## 1907 Present <NA>
## 1908 Present <NA>
## 1909 Present <NA>
## 1910 Present <NA>
## 1911 Refused <NA>
## 1912 Present <NA>
## 1913 Present 20 to 39
## 1914 Present <NA>
## 1915 Present <NA>
## 1916 Present <NA>
## 1917 Present <NA>
## 1918 Present <NA>
## 1919 Present <NA>
## 1920 Present <NA>
## 1921 Present <NA>
## 1922 Present <NA>
## 1923 Present <NA>
## 1924 Present <NA>
## 1925 Present <NA>
## 1926 Present <NA>
## 1927 Present <NA>
## 1928 Present <NA>
## 1929 Present <NA>
## 1930 Present <NA>
## 1931 Present <NA>
## 1932 Present <NA>
## 1933 Present <NA>
## 1934 Present <NA>
## 1935 Present <NA>
## 1936 Present <NA>
## 1937 Present <NA>
## 1938 Present <NA>
## 1939 Present <NA>
## 1940 Present <NA>
## 1941 Present Don't know, never saw R, no selected R
## 1942 Present 40 to 59
## 1943 Refused <NA>
## 1944 Present <NA>
## 1945 Present <NA>
## 1946 Refused <NA>
## 1947 Present <NA>
## 1948 Present <NA>
## 1949 Present <NA>
## 1950 Present <NA>
## 1951 Present <NA>
## 1952 Present <NA>
## 1953 Present <NA>
## 1954 Refused 60 or over
## 1955 Present <NA>
## 1956 Present <NA>
## 1957 Present 40 to 59
## 1958 Present <NA>
## 1959 Present Under 20
## 1960 Present <NA>
## 1961 Present <NA>
## 1962 Refused <NA>
## 1963 Present 60 or over
## 1964 Present <NA>
## 1965 Present <NA>
## 1966 Present <NA>
## 1967 Present <NA>
## 1968 Present <NA>
## 1969 Present <NA>
## 1970 Present <NA>
## 1971 Present <NA>
## 1972 Refused <NA>
## 1973 Present <NA>
## 1974 Present <NA>
## 1975 Present <NA>
## 1976 Present <NA>
## 1977 No phone <NA>
## 1978 Present <NA>
## 1979 Present <NA>
## 1980 Present <NA>
## 1981 Present <NA>
## 1982 Present <NA>
## 1983 Refused <NA>
## 1984 Present <NA>
## 1985 Present <NA>
## 1986 Present <NA>
## 1987 Present <NA>
## 1988 Present <NA>
## 1989 Refused <NA>
## 1990 Present <NA>
## 1991 Present <NA>
## 1992 Present <NA>
## 1993 Present <NA>
## 1994 Present <NA>
## 1995 Refused 60 or over
## 1996 Present <NA>
## 1997 Present 60 or over
## 1998 Refused <NA>
## 1999 Present <NA>
## 2000 Present <NA>
## 2001 Present <NA>
## 2002 Present <NA>
## 2003 Present <NA>
## 2004 Present <NA>
## 2005 Present 40 to 59
## 2006 Present <NA>
## 2007 Present <NA>
## 2008 Refused <NA>
## 2009 Present <NA>
## 2010 Present <NA>
## 2011 Present <NA>
## 2012 Present 40 to 59
## 2013 Refused <NA>
## 2014 Present <NA>
## 2015 Present <NA>
## 2016 Present <NA>
## 2017 Present <NA>
## 2018 Present <NA>
## 2019 Present <NA>
## 2020 Present <NA>
## 2021 Present <NA>
## 2022 Refused <NA>
## 2023 Present <NA>
## 2024 Present <NA>
## 2025 Present <NA>
## 2026 Present <NA>
## 2027 Present <NA>
## 2028 Present <NA>
## 2029 Present <NA>
## 2030 Present <NA>
## 2031 Present <NA>
## 2032 Present <NA>
## 2033 Present <NA>
## 2034 Present <NA>
## 2035 Present <NA>
## 2036 Present <NA>
## 2037 Present <NA>
## 2038 Present <NA>
## 2039 Present <NA>
## 2040 Present <NA>
## 2041 Present <NA>
## 2042 Present Don't know, never saw R, no selected R
## 2043 Present <NA>
## 2044 Present <NA>
## 2045 Present <NA>
## 2046 Present <NA>
## 2047 Present <NA>
## 2048 Present Don't know, never saw R, no selected R
## 2049 Present <NA>
## 2050 Present <NA>
## 2051 Present <NA>
## 2052 Present <NA>
## 2053 Present <NA>
## 2054 Refused Don't know, never saw R, no selected R
## 2055 <NA> <NA>
## 2056 Present <NA>
## 2057 Present <NA>
## 2058 Present <NA>
## 2059 Present <NA>
## 2060 Present <NA>
## 2061 Present <NA>
## 2062 Present <NA>
## 2063 Present <NA>
## 2064 Present <NA>
## 2065 Refused <NA>
## 2066 Present <NA>
## 2067 Present <NA>
## 2068 Present Don't know, never saw R, no selected R
## 2069 Present <NA>
## 2070 Present <NA>
## 2071 Present <NA>
## 2072 Present <NA>
## 2073 Present <NA>
## 2074 Refused <NA>
## 2075 Present <NA>
## 2076 Present <NA>
## 2077 Refused 60 or over
## 2078 Present <NA>
## 2079 Present <NA>
## 2080 Present <NA>
## 2081 Present <NA>
## 2082 Present <NA>
## 2083 Refused 40 to 59
## 2084 Present <NA>
## 2085 Present <NA>
## 2086 Present <NA>
## 2087 Present 20 to 39
## 2088 Present <NA>
## 2089 Present <NA>
## 2090 Present <NA>
## 2091 Present <NA>
## 2092 Present <NA>
## 2093 Present <NA>
## 2094 Refused <NA>
## 2095 Present <NA>
## 2096 Present <NA>
## 2097 Present Don't know, never saw R, no selected R
## 2098 Present <NA>
## 2099 Present <NA>
## 2100 Present <NA>
## 2101 Present <NA>
## 2102 Present <NA>
## 2103 Present <NA>
## 2104 Present 20 to 39
## 2105 Present <NA>
## 2106 Present <NA>
## 2107 Present <NA>
## 2108 Present <NA>
## 2109 Present <NA>
## 2110 Present <NA>
## 2111 Present <NA>
## 2112 Present <NA>
## 2113 Present <NA>
## 2114 Present <NA>
## 2115 Present <NA>
## 2116 Present <NA>
## 2117 Present <NA>
## 2118 Present <NA>
## 2119 Present <NA>
## 2120 Present <NA>
## 2121 Present <NA>
## 2122 Present <NA>
## 2123 Present Don't know, never saw R, no selected R
## 2124 Present <NA>
## 2125 Present <NA>
## 2126 Present <NA>
## 2127 Present <NA>
## 2128 Refused <NA>
## 2129 Present <NA>
## 2130 Present <NA>
## 2131 Present <NA>
## 2132 Present <NA>
## 2133 Present <NA>
## 2134 Present <NA>
## 2135 Refused <NA>
## 2136 Present <NA>
## 2137 Present <NA>
## 2138 Present <NA>
## 2139 Present <NA>
## 2140 Present <NA>
## 2141 Present <NA>
## 2142 Present <NA>
## 2143 Present <NA>
## 2144 Present <NA>
## 2145 Present <NA>
## 2146 Refused <NA>
## 2147 Refused 60 or over
## 2148 Present 60 or over
## 2149 Present <NA>
## 2150 Present <NA>
## 2151 Present <NA>
## 2152 Present <NA>
## 2153 Present <NA>
## 2154 Present <NA>
## 2155 Present <NA>
## 2156 Present 40 to 59
## 2157 Present <NA>
## 2158 Present 20 to 39
## 2159 Present <NA>
## 2160 Present Don't know, never saw R, no selected R
## 2161 Refused <NA>
## 2162 Present <NA>
## 2163 Present <NA>
## 2164 Present <NA>
## 2165 Present <NA>
## 2166 Present <NA>
## 2167 Present 40 to 59
## 2168 Present <NA>
## 2169 Present <NA>
## 2170 Refused <NA>
## 2171 Refused <NA>
## 2172 Refused <NA>
## 2173 Present <NA>
## 2174 Present <NA>
## 2175 Present <NA>
## 2176 Present <NA>
## 2177 Present <NA>
## 2178 Present <NA>
## 2179 Present <NA>
## 2180 Present <NA>
## 2181 Present 20 to 39
## 2182 Present <NA>
## 2183 Present <NA>
## 2184 Present <NA>
## 2185 Present <NA>
## 2186 Present <NA>
## 2187 Present <NA>
## 2188 Present Don't know, never saw R, no selected R
## 2189 Present <NA>
## 2190 Present <NA>
## 2191 Refused <NA>
## 2192 Present <NA>
## 2193 Present <NA>
## 2194 Present <NA>
## 2195 Present <NA>
## 2196 Present <NA>
## 2197 Present <NA>
## 2198 Refused <NA>
## 2199 Refused <NA>
## 2200 Present <NA>
## 2201 Refused <NA>
## 2202 Present <NA>
## 2203 Present <NA>
## 2204 Present <NA>
## 2205 Present <NA>
## 2206 Present <NA>
## 2207 Present 40 to 59
## 2208 Present <NA>
## 2209 Present <NA>
## 2210 Present <NA>
## 2211 Present <NA>
## 2212 Present <NA>
## 2213 Present <NA>
## 2214 Present <NA>
## 2215 Present <NA>
## 2216 Present <NA>
## 2217 Present <NA>
## 2218 Present <NA>
## 2219 Refused <NA>
## 2220 Present <NA>
## 2221 Present <NA>
## 2222 Present <NA>
## 2223 Refused <NA>
## 2224 Present 40 to 59
## 2225 Present <NA>
## 2226 Present 40 to 59
## 2227 Present <NA>
## 2228 Present <NA>
## 2229 Refused <NA>
## 2230 Present <NA>
## 2231 Present 40 to 59
## 2232 Refused <NA>
## 2233 Present <NA>
## 2234 Present <NA>
## 2235 Present <NA>
## 2236 Present <NA>
## 2237 Present <NA>
## 2238 Present <NA>
## 2239 Refused <NA>
## 2240 Present <NA>
## 2241 Present <NA>
## 2242 Refused <NA>
## 2243 Refused 20 to 39
## 2244 Present <NA>
## 2245 Present <NA>
## 2246 No phone <NA>
## 2247 Present <NA>
## 2248 Present <NA>
## 2249 Present <NA>
## 2250 Present <NA>
## 2251 Present <NA>
## 2252 Present <NA>
## 2253 Present <NA>
## 2254 Present <NA>
## 2255 Present <NA>
## 2256 Present <NA>
## 2257 Present <NA>
## 2258 Present <NA>
## 2259 Present <NA>
## 2260 Present <NA>
## 2261 Present <NA>
## 2262 Refused <NA>
## 2263 Present <NA>
## 2264 Present <NA>
## 2265 Present <NA>
## 2266 <NA> <NA>
## 2267 <NA> <NA>
## 2268 <NA> <NA>
## 2269 <NA> <NA>
## 2270 <NA> <NA>
## 2271 <NA> <NA>
## 2272 <NA> 40 to 59
## 2273 <NA> 40 to 59
## 2274 <NA> <NA>
## 2275 <NA> 40 to 59
## 2276 <NA> 60 or over
## 2277 <NA> 60 or over
## 2278 <NA> 20 to 39
## 2279 <NA> <NA>
## 2280 <NA> <NA>
## 2281 <NA> 60 or over
## 2282 <NA> 40 to 59
## 2283 <NA> <NA>
## 2284 <NA> <NA>
## 2285 <NA> <NA>
## 2286 <NA> 60 or over
## 2287 <NA> <NA>
## 2288 <NA> <NA>
## 2289 <NA> 40 to 59
## 2290 <NA> 60 or over
## 2291 <NA> <NA>
## 2292 <NA> 20 to 39
## 2293 <NA> 60 or over
## 2294 <NA> <NA>
## 2295 <NA> 60 or over
## 2296 <NA> <NA>
## 2297 <NA> 40 to 59
## 2298 <NA> <NA>
## 2299 <NA> <NA>
## 2300 <NA> <NA>
## 2301 <NA> <NA>
## 2302 <NA> <NA>
## 2303 <NA> <NA>
## 2304 <NA> <NA>
## 2305 <NA> 40 to 59
## 2306 <NA> <NA>
## 2307 <NA> <NA>
## 2308 <NA> 60 or over
## 2309 <NA> 60 or over
## 2310 <NA> <NA>
## 2311 <NA> <NA>
## 2312 <NA> <NA>
## 2313 <NA> <NA>
## 2314 <NA> Don't know, never saw R, no selected R
## 2315 <NA> 40 to 59
## 2316 <NA> 20 to 39
## 2317 <NA> 20 to 39
## 2318 <NA> 40 to 59
## 2319 <NA> <NA>
## 2320 <NA> <NA>
## 2321 <NA> 20 to 39
## 2322 <NA> 40 to 59
## 2323 <NA> 20 to 39
## 2324 <NA> <NA>
## 2325 <NA> 20 to 39
## 2326 <NA> <NA>
## 2327 <NA> <NA>
## 2328 <NA> <NA>
## 2329 <NA> 20 to 39
## 2330 <NA> <NA>
## 2331 <NA> 20 to 39
## 2332 <NA> <NA>
## 2333 <NA> 40 to 59
## 2334 <NA> 60 or over
## 2335 <NA> 20 to 39
## 2336 <NA> 20 to 39
## 2337 <NA> Don't know, never saw R, no selected R
## 2338 <NA> 20 to 39
## 2339 <NA> <NA>
## 2340 <NA> <NA>
## 2341 <NA> <NA>
## 2342 <NA> 60 or over
## 2343 <NA> 60 or over
## 2344 <NA> <NA>
## 2345 <NA> <NA>
## 2346 <NA> <NA>
## 2347 <NA> 60 or over
## 2348 <NA> 20 to 39
## 2349 <NA> <NA>
## 2350 <NA> 20 to 39
## 2351 <NA> 40 to 59
## 2352 <NA> <NA>
## 2353 <NA> <NA>
## 2354 <NA> 40 to 59
## 2355 <NA> <NA>
## 2356 <NA> 40 to 59
## 2357 <NA> 60 or over
## 2358 <NA> <NA>
## 2359 <NA> <NA>
## 2360 <NA> <NA>
## 2361 <NA> <NA>
## 2362 <NA> 60 or over
## 2363 <NA> 60 or over
## 2364 <NA> 60 or over
## 2365 <NA> <NA>
## 2366 <NA> <NA>
## 2367 <NA> 60 or over
## 2368 <NA> 20 to 39
## 2369 <NA> <NA>
## 2370 <NA> 40 to 59
## 2371 <NA> 20 to 39
## 2372 <NA> 60 or over
## 2373 <NA> 60 or over
## 2374 <NA> 40 to 59
## 2375 <NA> <NA>
## 2376 <NA> 60 or over
## 2377 <NA> Don't know, never saw R, no selected R
## 2378 <NA> 60 or over
## 2379 <NA> <NA>
## 2380 <NA> Don't know, never saw R, no selected R
## 2381 <NA> 40 to 59
## 2382 <NA> <NA>
## 2383 <NA> <NA>
## 2384 <NA> 40 to 59
## 2385 <NA> 60 or over
## 2386 <NA> <NA>
## 2387 <NA> <NA>
## 2388 <NA> 60 or over
## 2389 <NA> <NA>
## 2390 <NA> <NA>
## 2391 <NA> <NA>
## 2392 <NA> 20 to 39
## 2393 <NA> <NA>
## 2394 <NA> <NA>
## 2395 <NA> 60 or over
## 2396 <NA> 40 to 59
## 2397 <NA> 40 to 59
## 2398 <NA> <NA>
## 2399 <NA> <NA>
## 2400 <NA> 40 to 59
## 2401 <NA> 60 or over
## 2402 <NA> 60 or over
## 2403 <NA> 20 to 39
## 2404 <NA> 60 or over
## 2405 <NA> <NA>
## 2406 <NA> 40 to 59
## 2407 <NA> 60 or over
## 2408 <NA> <NA>
## 2409 <NA> 20 to 39
## 2410 <NA> <NA>
## 2411 <NA> 20 to 39
## 2412 <NA> 40 to 59
## 2413 <NA> <NA>
## 2414 <NA> Don't know, never saw R, no selected R
## 2415 <NA> 40 to 59
## 2416 <NA> <NA>
## 2417 <NA> 20 to 39
## 2418 <NA> 20 to 39
## 2419 <NA> 20 to 39
## 2420 <NA> 60 or over
## 2421 <NA> <NA>
## 2422 <NA> 40 to 59
## 2423 <NA> <NA>
## 2424 <NA> <NA>
## 2425 <NA> 40 to 59
## 2426 <NA> 60 or over
## 2427 <NA> <NA>
## 2428 <NA> 40 to 59
## 2429 <NA> 20 to 39
## 2430 <NA> <NA>
## 2431 <NA> 40 to 59
## 2432 <NA> 40 to 59
## 2433 <NA> 60 or over
## 2434 <NA> 60 or over
## 2435 <NA> <NA>
## 2436 <NA> <NA>
## 2437 <NA> <NA>
## 2438 <NA> 60 or over
## 2439 <NA> 60 or over
## 2440 <NA> 20 to 39
## 2441 <NA> <NA>
## 2442 <NA> <NA>
## 2443 <NA> 60 or over
## 2444 <NA> <NA>
## 2445 <NA> <NA>
## 2446 <NA> 60 or over
## 2447 <NA> 60 or over
## 2448 <NA> 40 to 59
## 2449 <NA> 60 or over
## 2450 <NA> <NA>
## 2451 <NA> 20 to 39
## 2452 <NA> <NA>
## 2453 <NA> 60 or over
## 2454 <NA> <NA>
## 2455 <NA> <NA>
## 2456 <NA> 40 to 59
## 2457 <NA> <NA>
## 2458 <NA> <NA>
## 2459 <NA> <NA>
## 2460 <NA> 60 or over
## 2461 <NA> 40 to 59
## 2462 <NA> <NA>
## 2463 <NA> 20 to 39
## 2464 <NA> 20 to 39
## 2465 <NA> <NA>
## 2466 <NA> <NA>
## 2467 <NA> <NA>
## 2468 <NA> 20 to 39
## 2469 <NA> <NA>
## 2470 <NA> <NA>
## 2471 <NA> 60 or over
## 2472 <NA> <NA>
## 2473 <NA> 20 to 39
## 2474 <NA> 60 or over
## 2475 <NA> <NA>
## 2476 <NA> <NA>
## 2477 <NA> 20 to 39
## 2478 <NA> 40 to 59
## 2479 <NA> <NA>
## 2480 <NA> 60 or over
## 2481 <NA> 40 to 59
## 2482 <NA> <NA>
## 2483 <NA> <NA>
## 2484 <NA> 60 or over
## 2485 <NA> <NA>
## 2486 <NA> Don't know, never saw R, no selected R
## 2487 <NA> 20 to 39
## 2488 <NA> 60 or over
## 2489 <NA> Don't know, never saw R, no selected R
## 2490 <NA> <NA>
## 2491 <NA> <NA>
## 2492 <NA> <NA>
## 2493 <NA> <NA>
## 2494 <NA> 20 to 39
## 2495 <NA> 20 to 39
## 2496 <NA> <NA>
## 2497 <NA> 40 to 59
## 2498 <NA> 60 or over
## 2499 <NA> <NA>
## 2500 <NA> <NA>
## 2501 <NA> 20 to 39
## 2502 <NA> 20 to 39
## 2503 <NA> <NA>
## 2504 <NA> <NA>
## 2505 <NA> 60 or over
## 2506 <NA> <NA>
## 2507 <NA> <NA>
## 2508 <NA> <NA>
## 2509 <NA> 40 to 59
## 2510 <NA> 20 to 39
## 2511 <NA> 40 to 59
## 2512 <NA> <NA>
## 2513 <NA> <NA>
## 2514 <NA> <NA>
## 2515 <NA> <NA>
## 2516 <NA> <NA>
## 2517 <NA> 60 or over
## 2518 <NA> <NA>
## 2519 <NA> <NA>
## 2520 <NA> <NA>
## 2521 <NA> <NA>
## 2522 <NA> 20 to 39
## 2523 <NA> 40 to 59
## 2524 <NA> <NA>
## 2525 <NA> <NA>
## 2526 <NA> <NA>
## 2527 <NA> <NA>
## 2528 <NA> <NA>
## 2529 <NA> <NA>
## 2530 <NA> 60 or over
## 2531 <NA> <NA>
## 2532 <NA> <NA>
## 2533 <NA> <NA>
## 2534 <NA> <NA>
## 2535 <NA> 20 to 39
## 2536 <NA> 60 or over
## 2537 <NA> 20 to 39
## 2538 <NA> <NA>
## 2539 <NA> <NA>
## 2540 <NA> <NA>
## 2541 <NA> 60 or over
## 2542 <NA> <NA>
## 2543 <NA> <NA>
## 2544 <NA> <NA>
## 2545 <NA> 60 or over
## 2546 <NA> <NA>
## 2547 <NA> <NA>
## 2548 <NA> 40 to 59
## 2549 <NA> Under 20
## 2550 <NA> 60 or over
## 2551 <NA> <NA>
## 2552 <NA> 20 to 39
## 2553 <NA> <NA>
## 2554 <NA> 20 to 39
## 2555 <NA> 60 or over
## 2556 <NA> <NA>
## 2557 <NA> Under 20
## 2558 <NA> Don't know, never saw R, no selected R
## 2559 <NA> 40 to 59
## 2560 <NA> <NA>
## 2561 <NA> 60 or over
## 2562 <NA> 40 to 59
## 2563 <NA> 40 to 59
## 2564 <NA> <NA>
## 2565 <NA> 40 to 59
## 2566 <NA> <NA>
## 2567 <NA> 60 or over
## 2568 <NA> 20 to 39
## 2569 <NA> Don't know, never saw R, no selected R
## 2570 <NA> <NA>
## 2571 <NA> <NA>
## 2572 <NA> 40 to 59
## 2573 <NA> 20 to 39
## 2574 <NA> <NA>
## 2575 <NA> 20 to 39
## 2576 <NA> <NA>
## 2577 <NA> <NA>
## 2578 <NA> Don't know, never saw R, no selected R
## 2579 <NA> <NA>
## 2580 <NA> 40 to 59
## 2581 <NA> 40 to 59
## 2582 <NA> 40 to 59
## 2583 <NA> <NA>
## 2584 <NA> 60 or over
## 2585 <NA> <NA>
## 2586 <NA> <NA>
## 2587 <NA> <NA>
## 2588 <NA> <NA>
## 2589 <NA> 60 or over
## 2590 <NA> <NA>
## 2591 <NA> 60 or over
## 2592 <NA> <NA>
## 2593 <NA> <NA>
## 2594 <NA> Don't know, never saw R, no selected R
## 2595 <NA> <NA>
## 2596 <NA> <NA>
## 2597 <NA> <NA>
## 2598 <NA> <NA>
## 2599 <NA> 60 or over
## 2600 <NA> 60 or over
## 2601 <NA> <NA>
## 2602 <NA> 60 or over
## 2603 <NA> 60 or over
## 2604 <NA> 20 to 39
## 2605 <NA> 60 or over
## 2606 <NA> <NA>
## 2607 <NA> <NA>
## 2608 <NA> Don't know, never saw R, no selected R
## 2609 <NA> <NA>
## 2610 <NA> 60 or over
## 2611 <NA> <NA>
## 2612 <NA> <NA>
## 2613 <NA> 20 to 39
## 2614 <NA> <NA>
## 2615 <NA> <NA>
## 2616 <NA> 40 to 59
## 2617 <NA> 40 to 59
## 2618 <NA> <NA>
## 2619 <NA> <NA>
## 2620 <NA> Don't know, never saw R, no selected R
## 2621 <NA> <NA>
## 2622 <NA> 40 to 59
## 2623 <NA> 40 to 59
## 2624 <NA> 20 to 39
## 2625 <NA> 60 or over
## 2626 <NA> <NA>
## 2627 <NA> <NA>
## 2628 <NA> <NA>
## 2629 <NA> 60 or over
## 2630 <NA> <NA>
## 2631 <NA> 40 to 59
## 2632 <NA> <NA>
## 2633 <NA> 60 or over
## 2634 <NA> <NA>
## 2635 <NA> 60 or over
## 2636 <NA> 60 or over
## 2637 <NA> <NA>
## 2638 <NA> 20 to 39
## 2639 <NA> <NA>
## 2640 <NA> <NA>
## 2641 <NA> <NA>
## 2642 <NA> <NA>
## 2643 <NA> 20 to 39
## 2644 <NA> <NA>
## 2645 <NA> <NA>
## 2646 <NA> <NA>
## 2647 <NA> <NA>
## 2648 <NA> Don't know, never saw R, no selected R
## 2649 <NA> 60 or over
## 2650 <NA> <NA>
## 2651 <NA> 60 or over
## 2652 <NA> <NA>
## 2653 <NA> 20 to 39
## 2654 <NA> <NA>
## 2655 <NA> <NA>
## 2656 <NA> 40 to 59
## 2657 <NA> <NA>
## 2658 <NA> <NA>
## 2659 <NA> <NA>
## 2660 <NA> <NA>
## 2661 <NA> <NA>
## 2662 <NA> <NA>
## 2663 <NA> Don't know, never saw R, no selected R
## 2664 <NA> <NA>
## 2665 <NA> 40 to 59
## 2666 <NA> 40 to 59
## 2667 <NA> 60 or over
## 2668 <NA> <NA>
## 2669 <NA> <NA>
## 2670 <NA> <NA>
## 2671 <NA> 20 to 39
## 2672 <NA> <NA>
## 2673 <NA> <NA>
## 2674 <NA> 60 or over
## 2675 <NA> <NA>
## 2676 <NA> 60 or over
## 2677 <NA> 20 to 39
## 2678 <NA> <NA>
## 2679 <NA> 60 or over
## 2680 <NA> 40 to 59
## 2681 <NA> Don't know, never saw R, no selected R
## 2682 <NA> 40 to 59
## 2683 <NA> 40 to 59
## 2684 <NA> 20 to 39
## 2685 <NA> <NA>
## 2686 <NA> 40 to 59
## 2687 <NA> <NA>
## 2688 <NA> <NA>
## 2689 <NA> <NA>
## 2690 <NA> 20 to 39
## 2691 <NA> <NA>
## 2692 <NA> <NA>
## 2693 <NA> <NA>
## 2694 <NA> 40 to 59
## 2695 <NA> <NA>
## 2696 <NA> <NA>
## 2697 <NA> 20 to 39
## 2698 <NA> <NA>
## 2699 <NA> <NA>
## 2700 <NA> 40 to 59
## 2701 <NA> <NA>
## 2702 <NA> <NA>
## 2703 <NA> 40 to 59
## 2704 <NA> <NA>
## 2705 <NA> 60 or over
## 2706 <NA> 60 or over
## 2707 <NA> <NA>
## 2708 <NA> <NA>
## 2709 <NA> Don't know, never saw R, no selected R
## 2710 <NA> Don't know, never saw R, no selected R
## 2711 <NA> <NA>
## 2712 <NA> 60 or over
## 2713 <NA> 40 to 59
## 2714 <NA> 40 to 59
## 2715 <NA> 60 or over
## 2716 <NA> 60 or over
## 2717 <NA> 40 to 59
## 2718 <NA> <NA>
## 2719 <NA> 60 or over
## 2720 <NA> 40 to 59
## 2721 <NA> <NA>
## 2722 <NA> Don't know, never saw R, no selected R
## 2723 <NA> <NA>
## 2724 <NA> <NA>
## 2725 <NA> 40 to 59
## 2726 <NA> 60 or over
## 2727 <NA> <NA>
## 2728 <NA> 40 to 59
## 2729 <NA> <NA>
## 2730 <NA> <NA>
## 2731 <NA> <NA>
## 2732 <NA> 40 to 59
## 2733 <NA> 40 to 59
## 2734 <NA> 40 to 59
## 2735 <NA> <NA>
## 2736 <NA> 60 or over
## 2737 <NA> <NA>
## 2738 <NA> 60 or over
## 2739 <NA> 40 to 59
## 2740 <NA> <NA>
## 2741 <NA> <NA>
## 2742 <NA> <NA>
## 2743 <NA> 40 to 59
## 2744 <NA> 20 to 39
## 2745 <NA> 40 to 59
## 2746 <NA> <NA>
## 2747 <NA> <NA>
## 2748 <NA> 40 to 59
## 2749 <NA> 40 to 59
## 2750 <NA> 40 to 59
## 2751 <NA> 60 or over
## 2752 <NA> 40 to 59
## 2753 <NA> 60 or over
## 2754 <NA> <NA>
## 2755 <NA> <NA>
## 2756 <NA> 20 to 39
## 2757 <NA> <NA>
## 2758 <NA> 40 to 59
## 2759 <NA> 40 to 59
## 2760 <NA> 20 to 39
## 2761 <NA> <NA>
## 2762 <NA> 20 to 39
## 2763 <NA> 20 to 39
## 2764 <NA> <NA>
## 2765 <NA> 20 to 39
## 2766 <NA> 60 or over
## 2767 <NA> <NA>
## 2768 <NA> 20 to 39
## 2769 <NA> <NA>
## 2770 <NA> <NA>
## 2771 <NA> <NA>
## 2772 <NA> Don't know, never saw R, no selected R
## 2773 <NA> 40 to 59
## 2774 <NA> <NA>
## 2775 <NA> <NA>
## 2776 <NA> <NA>
## 2777 <NA> <NA>
## 2778 <NA> 40 to 59
## 2779 <NA> <NA>
## 2780 <NA> <NA>
## 2781 <NA> 20 to 39
## 2782 <NA> 60 or over
## 2783 <NA> <NA>
## 2784 <NA> <NA>
## 2785 <NA> 40 to 59
## 2786 <NA> <NA>
## 2787 <NA> <NA>
## 2788 <NA> Don't know, never saw R, no selected R
## 2789 <NA> <NA>
## 2790 <NA> <NA>
## 2791 <NA> 40 to 59
## 2792 <NA> 60 or over
## 2793 <NA> 40 to 59
## 2794 <NA> 40 to 59
## 2795 <NA> 20 to 39
## 2796 <NA> <NA>
## 2797 <NA> 20 to 39
## 2798 <NA> 20 to 39
## 2799 <NA> 20 to 39
## 2800 <NA> 20 to 39
## 2801 <NA> <NA>
## 2802 <NA> <NA>
## 2803 <NA> 40 to 59
## 2804 <NA> <NA>
## 2805 <NA> <NA>
## 2806 <NA> <NA>
## 2807 <NA> <NA>
## 2808 <NA> 40 to 59
## 2809 <NA> Under 20
## 2810 <NA> 20 to 39
## 2811 <NA> <NA>
## 2812 <NA> 60 or over
## 2813 <NA> <NA>
## 2814 <NA> 20 to 39
## 2815 <NA> 60 or over
## 2816 <NA> <NA>
## 2817 <NA> 60 or over
## 2818 <NA> <NA>
## 2819 <NA> <NA>
## 2820 <NA> <NA>
## 2821 <NA> <NA>
## 2822 <NA> <NA>
## 2823 <NA> <NA>
## 2824 <NA> <NA>
## 2825 <NA> 40 to 59
## 2826 <NA> 60 or over
## 2827 <NA> 40 to 59
## 2828 <NA> <NA>
## 2829 <NA> <NA>
## 2830 <NA> <NA>
## 2831 <NA> <NA>
## 2832 <NA> 40 to 59
## 2833 <NA> <NA>
## 2834 <NA> 20 to 39
## 2835 <NA> <NA>
## 2836 <NA> 60 or over
## 2837 <NA> 20 to 39
## 2838 <NA> 20 to 39
## 2839 <NA> 60 or over
## 2840 <NA> <NA>
## 2841 <NA> 20 to 39
## 2842 <NA> 60 or over
## 2843 <NA> <NA>
## 2844 <NA> 40 to 59
## 2845 <NA> Don't know, never saw R, no selected R
## 2846 <NA> 40 to 59
## 2847 <NA> 20 to 39
## 2848 <NA> <NA>
## 2849 <NA> <NA>
## 2850 <NA> 60 or over
## 2851 <NA> <NA>
## 2852 <NA> 60 or over
## 2853 <NA> 40 to 59
## 2854 <NA> <NA>
## 2855 <NA> <NA>
## 2856 <NA> <NA>
## 2857 <NA> <NA>
## 2858 <NA> <NA>
## 2859 <NA> 40 to 59
## 2860 <NA> <NA>
## 2861 <NA> 40 to 59
## 2862 <NA> <NA>
## 2863 <NA> 60 or over
## 2864 <NA> <NA>
## 2865 <NA> <NA>
## 2866 <NA> <NA>
## 2867 <NA> 60 or over
## 2868 <NA> 20 to 39
## 2869 <NA> <NA>
## 2870 <NA> <NA>
## 2871 <NA> <NA>
## 2872 <NA> <NA>
## 2873 <NA> 20 to 39
## 2874 <NA> <NA>
## 2875 <NA> 40 to 59
## 2876 <NA> 20 to 39
## 2877 <NA> 60 or over
## 2878 <NA> <NA>
## 2879 <NA> 20 to 39
## 2880 <NA> 20 to 39
## 2881 <NA> 60 or over
## 2882 <NA> 40 to 59
## 2883 <NA> 60 or over
## 2884 <NA> 40 to 59
## 2885 <NA> <NA>
## 2886 <NA> 40 to 59
## 2887 <NA> <NA>
## 2888 <NA> 40 to 59
## 2889 <NA> <NA>
## 2890 <NA> 20 to 39
## 2891 <NA> 40 to 59
## 2892 <NA> <NA>
## 2893 <NA> 20 to 39
## 2894 <NA> Don't know, never saw R, no selected R
## 2895 <NA> <NA>
## 2896 <NA> Don't know, never saw R, no selected R
## 2897 <NA> <NA>
## 2898 <NA> 20 to 39
## 2899 <NA> <NA>
## 2900 <NA> 20 to 39
## 2901 <NA> <NA>
## 2902 <NA> 20 to 39
## 2903 <NA> 60 or over
## 2904 <NA> 40 to 59
## 2905 <NA> 40 to 59
## 2906 <NA> <NA>
## 2907 <NA> <NA>
## 2908 <NA> <NA>
## 2909 <NA> 60 or over
## 2910 <NA> 60 or over
## 2911 <NA> <NA>
## 2912 <NA> Don't know, never saw R, no selected R
## 2913 <NA> <NA>
## 2914 <NA> <NA>
## 2915 <NA> 20 to 39
## 2916 <NA> <NA>
## 2917 <NA> <NA>
## 2918 <NA> 60 or over
## 2919 <NA> <NA>
## 2920 <NA> 40 to 59
## 2921 <NA> 60 or over
## 2922 <NA> 40 to 59
## 2923 <NA> <NA>
## 2924 <NA> <NA>
## 2925 <NA> <NA>
## 2926 <NA> 40 to 59
## 2927 <NA> <NA>
## 2928 <NA> 60 or over
## 2929 <NA> 20 to 39
## 2930 <NA> <NA>
## 2931 <NA> <NA>
## 2932 <NA> <NA>
## 2933 <NA> <NA>
## 2934 <NA> <NA>
## 2935 <NA> 60 or over
## 2936 <NA> <NA>
## 2937 <NA> 20 to 39
## 2938 <NA> <NA>
## 2939 <NA> <NA>
## 2940 <NA> <NA>
## 2941 <NA> Don't know, never saw R, no selected R
## 2942 <NA> Don't know, never saw R, no selected R
## 2943 <NA> <NA>
## 2944 <NA> <NA>
## 2945 <NA> <NA>
## 2946 <NA> Under 20
## 2947 <NA> 60 or over
## 2948 <NA> 60 or over
## 2949 <NA> <NA>
## 2950 <NA> <NA>
## 2951 <NA> 40 to 59
## 2952 <NA> <NA>
## 2953 <NA> <NA>
## 2954 <NA> Don't know, never saw R, no selected R
## 2955 <NA> 20 to 39
## 2956 <NA> <NA>
## 2957 <NA> 20 to 39
## 2958 <NA> 40 to 59
## 2959 <NA> <NA>
## 2960 <NA> <NA>
## 2961 <NA> 40 to 59
## 2962 <NA> 40 to 59
## 2963 <NA> <NA>
## 2964 <NA> <NA>
## 2965 <NA> 40 to 59
## 2966 <NA> <NA>
## 2967 <NA> <NA>
## 2968 <NA> 60 or over
## 2969 <NA> 60 or over
## 2970 <NA> 40 to 59
## 2971 <NA> 40 to 59
## 2972 <NA> <NA>
## 2973 <NA> <NA>
## 2974 <NA> 20 to 39
## 2975 <NA> <NA>
## 2976 <NA> 40 to 59
## 2977 <NA> 20 to 39
## 2978 <NA> <NA>
## 2979 <NA> <NA>
## 2980 <NA> <NA>
## 2981 <NA> <NA>
## 2982 <NA> <NA>
## 2983 <NA> <NA>
## 2984 <NA> <NA>
## 2985 <NA> <NA>
## 2986 <NA> <NA>
## 2987 <NA> <NA>
## 2988 <NA> <NA>
## 2989 <NA> <NA>
## 2990 <NA> 20 to 39
## 2991 <NA> 20 to 39
## 2992 <NA> 40 to 59
## 2993 <NA> 20 to 39
## 2994 <NA> 20 to 39
## 2995 <NA> 40 to 59
## 2996 <NA> <NA>
## 2997 <NA> <NA>
## 2998 <NA> 20 to 39
## 2999 <NA> <NA>
## 3000 <NA> <NA>
## 3001 <NA> 60 or over
## 3002 <NA> <NA>
## 3003 <NA> 40 to 59
## 3004 <NA> <NA>
## 3005 <NA> 60 or over
## 3006 <NA> <NA>
## 3007 <NA> <NA>
## 3008 <NA> 20 to 39
## 3009 <NA> 60 or over
## 3010 <NA> 20 to 39
## 3011 <NA> 60 or over
## 3012 <NA> <NA>
## 3013 <NA> 60 or over
## 3014 <NA> 40 to 59
## 3015 <NA> <NA>
## 3016 <NA> <NA>
## 3017 <NA> <NA>
## 3018 <NA> 40 to 59
## 3019 <NA> <NA>
## 3020 <NA> <NA>
## 3021 <NA> 40 to 59
## 3022 <NA> 20 to 39
## 3023 <NA> <NA>
## 3024 <NA> 40 to 59
## 3025 <NA> <NA>
## 3026 <NA> <NA>
## 3027 <NA> 20 to 39
## 3028 <NA> 40 to 59
## 3029 <NA> <NA>
## 3030 <NA> Don't know, never saw R, no selected R
## 3031 <NA> 20 to 39
## 3032 <NA> 40 to 59
## 3033 <NA> 20 to 39
## 3034 <NA> 60 or over
## 3035 <NA> 20 to 39
## 3036 <NA> <NA>
## 3037 <NA> 20 to 39
## 3038 <NA> <NA>
## 3039 <NA> <NA>
## 3040 <NA> 60 or over
## 3041 <NA> 60 or over
## 3042 <NA> 20 to 39
## 3043 <NA> 60 or over
## 3044 <NA> 20 to 39
## 3045 <NA> 40 to 59
## 3046 <NA> 20 to 39
## 3047 <NA> <NA>
## 3048 <NA> <NA>
## 3049 <NA> 20 to 39
## 3050 <NA> <NA>
## 3051 <NA> <NA>
## 3052 <NA> <NA>
## 3053 <NA> 40 to 59
## 3054 <NA> <NA>
## 3055 <NA> 60 or over
## 3056 <NA> 40 to 59
## 3057 <NA> <NA>
## 3058 <NA> <NA>
## 3059 <NA> 40 to 59
## 3060 <NA> <NA>
## 3061 <NA> <NA>
## 3062 <NA> 20 to 39
## 3063 <NA> 20 to 39
## 3064 <NA> 40 to 59
## 3065 <NA> 20 to 39
## 3066 <NA> 20 to 39
## 3067 <NA> <NA>
## 3068 <NA> 40 to 59
## 3069 <NA> 40 to 59
## 3070 <NA> 40 to 59
## 3071 <NA> <NA>
## 3072 <NA> <NA>
## 3073 <NA> 20 to 39
## 3074 <NA> 60 or over
## 3075 <NA> 60 or over
## 3076 <NA> <NA>
## 3077 <NA> <NA>
## 3078 <NA> Don't know, never saw R, no selected R
## 3079 <NA> <NA>
## 3080 <NA> 60 or over
## 3081 <NA> 20 to 39
## 3082 <NA> 20 to 39
## 3083 <NA> 60 or over
## 3084 <NA> <NA>
## 3085 <NA> <NA>
## 3086 <NA> <NA>
## 3087 <NA> <NA>
## 3088 <NA> 40 to 59
## 3089 <NA> 40 to 59
## 3090 <NA> 20 to 39
## 3091 <NA> 40 to 59
## 3092 <NA> 20 to 39
## 3093 <NA> <NA>
## 3094 <NA> 40 to 59
## 3095 <NA> <NA>
## 3096 <NA> <NA>
## 3097 <NA> 60 or over
## 3098 <NA> <NA>
## 3099 <NA> 40 to 59
## 3100 <NA> 20 to 39
## 3101 <NA> <NA>
## 3102 <NA> 40 to 59
## 3103 <NA> 20 to 39
## 3104 <NA> <NA>
## 3105 <NA> 40 to 59
## 3106 <NA> 40 to 59
## 3107 <NA> 20 to 39
## 3108 <NA> 60 or over
## 3109 <NA> 40 to 59
## 3110 <NA> 20 to 39
## 3111 <NA> 60 or over
## 3112 <NA> <NA>
## 3113 <NA> 40 to 59
## 3114 <NA> <NA>
## 3115 <NA> Under 20
## 3116 <NA> <NA>
## 3117 <NA> <NA>
## 3118 <NA> <NA>
## 3119 <NA> <NA>
## 3120 <NA> 20 to 39
## 3121 <NA> 60 or over
## 3122 <NA> 40 to 59
## 3123 <NA> 40 to 59
## 3124 <NA> <NA>
## 3125 <NA> 40 to 59
## 3126 <NA> 40 to 59
## 3127 <NA> <NA>
## 3128 <NA> <NA>
## 3129 <NA> 60 or over
## 3130 <NA> <NA>
## 3131 <NA> <NA>
## 3132 <NA> <NA>
## 3133 <NA> <NA>
## 3134 <NA> 60 or over
## 3135 <NA> 40 to 59
## 3136 <NA> Don't know, never saw R, no selected R
## 3137 <NA> <NA>
## 3138 <NA> <NA>
## 3139 <NA> 40 to 59
## 3140 <NA> <NA>
## 3141 <NA> 40 to 59
## 3142 <NA> 60 or over
## 3143 <NA> <NA>
## 3144 <NA> 60 or over
## 3145 <NA> <NA>
## 3146 <NA> <NA>
## 3147 <NA> 60 or over
## 3148 <NA> 60 or over
## 3149 <NA> <NA>
## 3150 <NA> 40 to 59
## 3151 <NA> <NA>
## 3152 <NA> <NA>
## 3153 <NA> <NA>
## 3154 <NA> <NA>
## 3155 <NA> <NA>
## 3156 <NA> <NA>
## 3157 <NA> <NA>
## 3158 <NA> 40 to 59
## 3159 <NA> <NA>
## 3160 <NA> 20 to 39
## 3161 <NA> <NA>
## 3162 <NA> <NA>
## 3163 <NA> <NA>
## 3164 <NA> <NA>
## 3165 <NA> <NA>
## 3166 <NA> 60 or over
## 3167 <NA> 40 to 59
## 3168 <NA> 40 to 59
## 3169 <NA> 40 to 59
## 3170 <NA> 40 to 59
## 3171 <NA> Under 20
## 3172 <NA> Don't know, never saw R, no selected R
## 3173 <NA> <NA>
## 3174 <NA> 20 to 39
## 3175 <NA> <NA>
## 3176 <NA> 40 to 59
## 3177 <NA> <NA>
## 3178 <NA> 40 to 59
## 3179 <NA> 20 to 39
## 3180 <NA> <NA>
## 3181 <NA> 60 or over
## 3182 <NA> 60 or over
## 3183 <NA> 60 or over
## 3184 <NA> <NA>
## 3185 <NA> 60 or over
## 3186 <NA> 40 to 59
## 3187 <NA> <NA>
## 3188 <NA> <NA>
## 3189 <NA> 20 to 39
## 3190 <NA> <NA>
## 3191 <NA> 40 to 59
## 3192 <NA> 60 or over
## 3193 <NA> 40 to 59
## 3194 <NA> 60 or over
## 3195 <NA> <NA>
## 3196 <NA> <NA>
## 3197 <NA> 20 to 39
## 3198 <NA> <NA>
## 3199 <NA> 60 or over
## 3200 <NA> 20 to 39
## 3201 <NA> <NA>
## 3202 <NA> <NA>
## 3203 <NA> Don't know, never saw R, no selected R
## 3204 <NA> 40 to 59
## 3205 <NA> <NA>
## 3206 <NA> 20 to 39
## 3207 <NA> 60 or over
## 3208 <NA> 40 to 59
## 3209 <NA> <NA>
## 3210 <NA> Don't know, never saw R, no selected R
## 3211 <NA> <NA>
## 3212 <NA> <NA>
## 3213 <NA> <NA>
## 3214 <NA> 60 or over
## 3215 <NA> <NA>
## 3216 <NA> 40 to 59
## 3217 <NA> <NA>
## 3218 <NA> <NA>
## 3219 <NA> <NA>
## 3220 <NA> <NA>
## 3221 <NA> <NA>
## 3222 <NA> <NA>
## 3223 <NA> 40 to 59
## 3224 <NA> <NA>
## 3225 <NA> 20 to 39
## 3226 <NA> <NA>
## 3227 <NA> <NA>
## 3228 <NA> <NA>
## 3229 <NA> Don't know, never saw R, no selected R
## 3230 <NA> <NA>
## 3231 <NA> 20 to 39
## 3232 <NA> 60 or over
## 3233 <NA> 60 or over
## 3234 <NA> <NA>
## 3235 <NA> 40 to 59
## 3236 <NA> 40 to 59
## 3237 <NA> 60 or over
## 3238 <NA> <NA>
## 3239 <NA> 20 to 39
## 3240 <NA> 40 to 59
## 3241 <NA> 20 to 39
## 3242 <NA> <NA>
## 3243 <NA> 20 to 39
## 3244 <NA> <NA>
## 3245 <NA> 60 or over
## 3246 <NA> <NA>
## 3247 <NA> 40 to 59
## 3248 <NA> <NA>
## 3249 <NA> 20 to 39
## 3250 <NA> <NA>
## 3251 <NA> <NA>
## 3252 <NA> 60 or over
## 3253 <NA> 40 to 59
## 3254 <NA> <NA>
## 3255 <NA> 20 to 39
## 3256 <NA> 40 to 59
## 3257 <NA> <NA>
## 3258 <NA> 20 to 39
## 3259 <NA> <NA>
## 3260 <NA> <NA>
## 3261 <NA> 40 to 59
## 3262 <NA> 20 to 39
## 3263 <NA> <NA>
## 3264 <NA> <NA>
## 3265 <NA> <NA>
## 3266 <NA> 20 to 39
## 3267 <NA> <NA>
## 3268 <NA> <NA>
## 3269 <NA> 20 to 39
## 3270 <NA> <NA>
## 3271 <NA> <NA>
## 3272 <NA> 40 to 59
## 3273 <NA> <NA>
## 3274 <NA> 40 to 59
## 3275 <NA> <NA>
## 3276 <NA> 60 or over
## 3277 <NA> 60 or over
## 3278 <NA> <NA>
## 3279 <NA> <NA>
## 3280 <NA> 60 or over
## 3281 <NA> <NA>
## 3282 <NA> 60 or over
## 3283 <NA> Under 20
## 3284 <NA> <NA>
## 3285 <NA> 60 or over
## 3286 <NA> Don't know, never saw R, no selected R
## 3287 <NA> <NA>
## 3288 <NA> <NA>
## 3289 <NA> 20 to 39
## 3290 <NA> <NA>
## 3291 <NA> Don't know, never saw R, no selected R
## 3292 <NA> <NA>
## 3293 <NA> 20 to 39
## 3294 <NA> <NA>
## 3295 <NA> 40 to 59
## 3296 <NA> <NA>
## 3297 <NA> 20 to 39
## 3298 <NA> 20 to 39
## 3299 <NA> <NA>
## 3300 <NA> <NA>
## 3301 <NA> <NA>
## 3302 <NA> <NA>
## 3303 <NA> 40 to 59
## 3304 <NA> Don't know, never saw R, no selected R
## 3305 <NA> Don't know, never saw R, no selected R
## 3306 <NA> <NA>
## 3307 <NA> <NA>
## 3308 <NA> <NA>
## 3309 <NA> 60 or over
## 3310 <NA> <NA>
## 3311 <NA> <NA>
## 3312 <NA> 40 to 59
## 3313 <NA> <NA>
## 3314 <NA> 40 to 59
## 3315 <NA> <NA>
## 3316 <NA> <NA>
## 3317 <NA> 60 or over
## 3318 <NA> 60 or over
## 3319 <NA> 40 to 59
## 3320 <NA> 60 or over
## 3321 <NA> <NA>
## 3322 <NA> Don't know, never saw R, no selected R
## 3323 <NA> Don't know, never saw R, no selected R
## 3324 <NA> 60 or over
## 3325 <NA> <NA>
## 3326 <NA> 20 to 39
## 3327 <NA> 40 to 59
## 3328 <NA> <NA>
## 3329 <NA> <NA>
## 3330 <NA> <NA>
## 3331 <NA> 40 to 59
## 3332 <NA> 60 or over
## 3333 <NA> <NA>
## 3334 <NA> 40 to 59
## 3335 <NA> 40 to 59
## 3336 <NA> 40 to 59
## 3337 <NA> 60 or over
## 3338 <NA> <NA>
## 3339 <NA> <NA>
## 3340 <NA> <NA>
## 3341 <NA> <NA>
## 3342 <NA> 20 to 39
## 3343 <NA> <NA>
## 3344 <NA> Don't know, never saw R, no selected R
## 3345 <NA> 60 or over
## 3346 <NA> <NA>
## 3347 <NA> <NA>
## 3348 <NA> 40 to 59
## 3349 <NA> <NA>
## 3350 <NA> 40 to 59
## 3351 <NA> 20 to 39
## 3352 <NA> <NA>
## 3353 <NA> 60 or over
## 3354 <NA> <NA>
## 3355 <NA> 40 to 59
## 3356 <NA> 40 to 59
## 3357 <NA> Under 20
## 3358 <NA> <NA>
## 3359 <NA> <NA>
## 3360 <NA> <NA>
## 3361 <NA> 60 or over
## 3362 <NA> <NA>
## 3363 <NA> 20 to 39
## 3364 <NA> <NA>
## 3365 <NA> 60 or over
## 3366 <NA> <NA>
## 3367 <NA> <NA>
## 3368 <NA> 20 to 39
## 3369 <NA> <NA>
## 3370 <NA> <NA>
## 3371 <NA> 20 to 39
## 3372 <NA> <NA>
## 3373 <NA> Don't know, never saw R, no selected R
## 3374 <NA> <NA>
## 3375 <NA> 20 to 39
## 3376 <NA> <NA>
## 3377 <NA> <NA>
## 3378 <NA> 40 to 59
## 3379 <NA> 60 or over
## 3380 <NA> <NA>
## 3381 <NA> 20 to 39
## 3382 <NA> 40 to 59
## 3383 <NA> <NA>
## 3384 <NA> <NA>
## 3385 <NA> 40 to 59
## 3386 <NA> <NA>
## 3387 <NA> 60 or over
## 3388 <NA> <NA>
## 3389 <NA> 60 or over
## 3390 <NA> <NA>
## 3391 <NA> 60 or over
## 3392 <NA> <NA>
## 3393 <NA> <NA>
## 3394 <NA> 60 or over
## 3395 <NA> 20 to 39
## 3396 <NA> <NA>
## 3397 <NA> 60 or over
## 3398 <NA> 40 to 59
## 3399 <NA> 20 to 39
## 3400 <NA> 40 to 59
## 3401 <NA> <NA>
## 3402 <NA> 60 or over
## 3403 <NA> 60 or over
## 3404 <NA> 20 to 39
## 3405 <NA> 20 to 39
## 3406 <NA> Don't know, never saw R, no selected R
## 3407 <NA> <NA>
## 3408 <NA> 20 to 39
## 3409 <NA> 40 to 59
## 3410 <NA> Don't know, never saw R, no selected R
## 3411 <NA> <NA>
## 3412 <NA> <NA>
## 3413 <NA> 20 to 39
## 3414 <NA> <NA>
## 3415 <NA> 40 to 59
## 3416 <NA> <NA>
## 3417 <NA> 60 or over
## 3418 <NA> <NA>
## 3419 <NA> <NA>
## 3420 <NA> <NA>
## 3421 <NA> <NA>
## 3422 <NA> <NA>
## 3423 <NA> 20 to 39
## 3424 <NA> <NA>
## 3425 <NA> Don't know, never saw R, no selected R
## 3426 <NA> Under 20
## 3427 <NA> 20 to 39
## 3428 <NA> 40 to 59
## 3429 <NA> 40 to 59
## 3430 <NA> <NA>
## 3431 <NA> 60 or over
## 3432 <NA> <NA>
## 3433 <NA> <NA>
## 3434 <NA> <NA>
## 3435 <NA> 20 to 39
## 3436 <NA> 20 to 39
## 3437 <NA> 20 to 39
## 3438 <NA> 20 to 39
## 3439 <NA> <NA>
## 3440 <NA> <NA>
## 3441 <NA> <NA>
## 3442 <NA> <NA>
## 3443 <NA> <NA>
## 3444 <NA> <NA>
## 3445 <NA> <NA>
## 3446 <NA> <NA>
## 3447 <NA> <NA>
## 3448 <NA> 60 or over
## 3449 <NA> <NA>
## 3450 <NA> 60 or over
## 3451 <NA> 60 or over
## 3452 <NA> 20 to 39
## 3453 <NA> <NA>
## 3454 <NA> <NA>
## 3455 <NA> 20 to 39
## 3456 <NA> 20 to 39
## 3457 <NA> <NA>
## 3458 <NA> <NA>
## 3459 <NA> <NA>
## 3460 <NA> 40 to 59
## 3461 <NA> 60 or over
## 3462 <NA> 60 or over
## 3463 <NA> <NA>
## 3464 <NA> 40 to 59
## 3465 <NA> <NA>
## 3466 <NA> 20 to 39
## 3467 <NA> 60 or over
## 3468 <NA> 60 or over
## 3469 <NA> <NA>
## 3470 <NA> <NA>
## 3471 <NA> <NA>
## 3472 <NA> <NA>
## 3473 <NA> 20 to 39
## 3474 <NA> 40 to 59
## 3475 <NA> 40 to 59
## 3476 <NA> <NA>
## 3477 <NA> <NA>
## 3478 <NA> <NA>
## 3479 <NA> <NA>
## 3480 <NA> 20 to 39
## 3481 <NA> <NA>
## 3482 <NA> <NA>
## 3483 <NA> <NA>
## 3484 <NA> <NA>
## 3485 <NA> 60 or over
## 3486 <NA> 60 or over
## 3487 <NA> <NA>
## 3488 <NA> <NA>
## 3489 <NA> <NA>
## 3490 <NA> <NA>
## 3491 <NA> <NA>
## 3492 <NA> <NA>
## 3493 <NA> 20 to 39
## 3494 <NA> 40 to 59
## 3495 <NA> <NA>
## 3496 <NA> <NA>
## 3497 <NA> <NA>
## 3498 <NA> 40 to 59
## 3499 <NA> <NA>
## 3500 <NA> <NA>
## 3501 <NA> <NA>
## 3502 <NA> 60 or over
## 3503 <NA> <NA>
## 3504 <NA> 20 to 39
## 3505 <NA> <NA>
## 3506 <NA> 20 to 39
## 3507 <NA> <NA>
## 3508 <NA> <NA>
## 3509 <NA> <NA>
## 3510 <NA> <NA>
## 3511 <NA> 60 or over
## 3512 <NA> <NA>
## 3513 <NA> 40 to 59
## 3514 <NA> 20 to 39
## 3515 <NA> 20 to 39
## 3516 <NA> <NA>
## 3517 <NA> <NA>
## 3518 <NA> <NA>
## 3519 <NA> <NA>
## 3520 <NA> <NA>
## 3521 <NA> <NA>
## 3522 <NA> <NA>
## 3523 <NA> <NA>
## 3524 <NA> 40 to 59
## 3525 <NA> 60 or over
## 3526 <NA> <NA>
## 3527 <NA> <NA>
## 3528 <NA> 40 to 59
## 3529 <NA> 40 to 59
## 3530 <NA> 40 to 59
## 3531 <NA> 20 to 39
## 3532 <NA> <NA>
## 3533 <NA> <NA>
## 3534 <NA> 40 to 59
## 3535 <NA> <NA>
## 3536 <NA> 40 to 59
## 3537 <NA> <NA>
## 3538 <NA> <NA>
## 3539 <NA> 60 or over
## 3540 <NA> <NA>
## 3541 <NA> 20 to 39
## 3542 <NA> <NA>
## 3543 <NA> <NA>
## 3544 <NA> 40 to 59
## 3545 <NA> 60 or over
## 3546 <NA> 60 or over
## 3547 <NA> <NA>
## 3548 <NA> <NA>
## 3549 <NA> <NA>
## 3550 <NA> 40 to 59
## 3551 <NA> 20 to 39
## 3552 <NA> 20 to 39
## 3553 <NA> <NA>
## 3554 <NA> 20 to 39
## 3555 <NA> <NA>
## 3556 <NA> <NA>
## 3557 <NA> Under 20
## 3558 <NA> <NA>
## 3559 <NA> <NA>
## 3560 <NA> <NA>
## 3561 <NA> <NA>
## 3562 <NA> 40 to 59
## 3563 <NA> 20 to 39
## 3564 <NA> <NA>
## 3565 <NA> 60 or over
## 3566 <NA> 60 or over
## 3567 <NA> 40 to 59
## 3568 <NA> <NA>
## 3569 <NA> Don't know, never saw R, no selected R
## 3570 <NA> <NA>
## 3571 <NA> <NA>
## 3572 <NA> <NA>
## 3573 <NA> 60 or over
## 3574 <NA> 60 or over
## 3575 <NA> <NA>
## 3576 <NA> 60 or over
## 3577 <NA> 60 or over
## 3578 <NA> 60 or over
## 3579 <NA> Don't know, never saw R, no selected R
## 3580 <NA> <NA>
## 3581 <NA> <NA>
## 3582 <NA> <NA>
## 3583 <NA> <NA>
## 3584 <NA> 40 to 59
## 3585 <NA> 60 or over
## 3586 <NA> <NA>
## 3587 <NA> 20 to 39
## 3588 <NA> 40 to 59
## 3589 <NA> 40 to 59
## 3590 <NA> <NA>
## 3591 <NA> 40 to 59
## 3592 <NA> 40 to 59
## 3593 <NA> 20 to 39
## 3594 <NA> <NA>
## 3595 <NA> 20 to 39
## 3596 <NA> 20 to 39
## 3597 <NA> 20 to 39
## 3598 <NA> <NA>
## 3599 <NA> <NA>
## 3600 <NA> 60 or over
## 3601 <NA> 20 to 39
## 3602 <NA> 20 to 39
## 3603 <NA> 20 to 39
## 3604 <NA> <NA>
## 3605 <NA> 40 to 59
## 3606 <NA> 20 to 39
## 3607 <NA> 20 to 39
## 3608 <NA> Don't know, never saw R, no selected R
## 3609 <NA> 20 to 39
## 3610 <NA> 60 or over
## 3611 <NA> 40 to 59
## 3612 <NA> 20 to 39
## 3613 <NA> <NA>
## 3614 <NA> 40 to 59
## 3615 <NA> <NA>
## 3616 <NA> 20 to 39
## 3617 <NA> 60 or over
## 3618 <NA> <NA>
## 3619 <NA> 60 or over
## 3620 <NA> <NA>
## 3621 <NA> 20 to 39
## 3622 <NA> 60 or over
## 3623 <NA> 40 to 59
## 3624 <NA> 40 to 59
## 3625 <NA> <NA>
## 3626 <NA> <NA>
## 3627 <NA> 40 to 59
## 3628 <NA> <NA>
## 3629 <NA> 40 to 59
## 3630 <NA> 40 to 59
## 3631 <NA> Don't know, never saw R, no selected R
## 3632 <NA> 40 to 59
## 3633 <NA> 20 to 39
## 3634 <NA> 60 or over
## 3635 <NA> <NA>
## 3636 <NA> <NA>
## 3637 <NA> <NA>
## 3638 <NA> <NA>
## 3639 <NA> 20 to 39
## 3640 <NA> <NA>
## 3641 <NA> <NA>
## 3642 <NA> <NA>
## 3643 <NA> <NA>
## 3644 <NA> 20 to 39
## 3645 <NA> <NA>
## 3646 <NA> 40 to 59
## 3647 <NA> <NA>
## 3648 <NA> 40 to 59
## 3649 <NA> <NA>
## 3650 <NA> 60 or over
## 3651 <NA> <NA>
## 3652 <NA> 40 to 59
## 3653 <NA> 60 or over
## 3654 <NA> 40 to 59
## 3655 <NA> Don't know, never saw R, no selected R
## 3656 <NA> <NA>
## 3657 <NA> <NA>
## 3658 <NA> <NA>
## 3659 <NA> 60 or over
## 3660 <NA> <NA>
## 3661 <NA> 40 to 59
## 3662 <NA> Under 20
## 3663 <NA> 60 or over
## 3664 <NA> 60 or over
## 3665 <NA> <NA>
## 3666 <NA> 40 to 59
## 3667 <NA> <NA>
## 3668 <NA> 60 or over
## 3669 <NA> 40 to 59
## 3670 <NA> <NA>
## 3671 <NA> 60 or over
## 3672 <NA> <NA>
## 3673 <NA> 40 to 59
## 3674 <NA> <NA>
## 3675 <NA> 20 to 39
## 3676 <NA> 40 to 59
## 3677 <NA> <NA>
## 3678 <NA> 60 or over
## 3679 <NA> 60 or over
## 3680 <NA> 20 to 39
## 3681 <NA> <NA>
## 3682 <NA> <NA>
## 3683 <NA> <NA>
## 3684 <NA> <NA>
## 3685 <NA> <NA>
## 3686 <NA> <NA>
## 3687 <NA> <NA>
## 3688 <NA> 40 to 59
## 3689 <NA> <NA>
## 3690 <NA> <NA>
## 3691 <NA> <NA>
## 3692 <NA> <NA>
## 3693 <NA> 60 or over
## 3694 <NA> <NA>
## 3695 <NA> <NA>
## 3696 <NA> 40 to 59
## 3697 <NA> 20 to 39
## 3698 <NA> 40 to 59
## 3699 <NA> <NA>
## 3700 <NA> <NA>
## 3701 <NA> <NA>
## 3702 <NA> <NA>
## 3703 <NA> 20 to 39
## 3704 <NA> 60 or over
## 3705 <NA> 40 to 59
## 3706 <NA> <NA>
## 3707 <NA> <NA>
## 3708 <NA> 40 to 59
## 3709 <NA> 40 to 59
## 3710 <NA> <NA>
## 3711 <NA> 40 to 59
## 3712 <NA> <NA>
## 3713 <NA> <NA>
## 3714 <NA> 20 to 39
## 3715 <NA> <NA>
## 3716 <NA> <NA>
## 3717 <NA> <NA>
## 3718 <NA> 40 to 59
## 3719 <NA> 40 to 59
## 3720 <NA> <NA>
## 3721 <NA> <NA>
## 3722 <NA> <NA>
## 3723 <NA> Don't know, never saw R, no selected R
## 3724 <NA> 40 to 59
## 3725 <NA> 20 to 39
## 3726 <NA> 60 or over
## 3727 <NA> <NA>
## 3728 <NA> <NA>
## 3729 <NA> <NA>
## 3730 <NA> 60 or over
## 3731 <NA> <NA>
## 3732 <NA> 60 or over
## 3733 <NA> <NA>
## 3734 <NA> 60 or over
## 3735 <NA> <NA>
## 3736 <NA> 60 or over
## 3737 <NA> 20 to 39
## 3738 <NA> 20 to 39
## 3739 <NA> 60 or over
## 3740 <NA> Don't know, never saw R, no selected R
## 3741 <NA> <NA>
## 3742 <NA> 60 or over
## 3743 <NA> <NA>
## 3744 <NA> <NA>
## 3745 <NA> 40 to 59
## 3746 <NA> <NA>
## 3747 <NA> Don't know, never saw R, no selected R
## 3748 <NA> 40 to 59
## 3749 <NA> 20 to 39
## 3750 <NA> 40 to 59
## 3751 <NA> 40 to 59
## 3752 <NA> 20 to 39
## 3753 <NA> 40 to 59
## 3754 <NA> 60 or over
## 3755 <NA> 20 to 39
## 3756 <NA> <NA>
## 3757 <NA> <NA>
## 3758 <NA> 40 to 59
## 3759 <NA> <NA>
## 3760 <NA> <NA>
## 3761 <NA> 60 or over
## 3762 <NA> <NA>
## 3763 <NA> <NA>
## 3764 <NA> <NA>
## 3765 <NA> <NA>
## 3766 <NA> <NA>
## 3767 <NA> <NA>
## 3768 <NA> <NA>
## 3769 <NA> <NA>
## 3770 <NA> 40 to 59
## 3771 <NA> 40 to 59
## 3772 <NA> <NA>
## 3773 <NA> 40 to 59
## 3774 <NA> 20 to 39
## 3775 <NA> Don't know, never saw R, no selected R
## 3776 <NA> <NA>
## 3777 <NA> <NA>
## 3778 <NA> <NA>
## 3779 <NA> <NA>
## 3780 <NA> 40 to 59
## 3781 <NA> 20 to 39
## 3782 <NA> <NA>
## 3783 <NA> 40 to 59
## 3784 <NA> <NA>
## 3785 <NA> <NA>
## 3786 <NA> <NA>
## 3787 <NA> 20 to 39
## 3788 <NA> <NA>
## 3789 <NA> <NA>
## 3790 <NA> 20 to 39
## 3791 <NA> 40 to 59
## 3792 <NA> <NA>
## 3793 <NA> <NA>
## 3794 <NA> <NA>
## 3795 <NA> 20 to 39
## 3796 <NA> <NA>
## 3797 <NA> 20 to 39
## 3798 <NA> <NA>
## 3799 <NA> <NA>
## 3800 <NA> 40 to 59
## 3801 <NA> 60 or over
## 3802 <NA> <NA>
## 3803 <NA> <NA>
## 3804 <NA> <NA>
## 3805 <NA> 60 or over
## 3806 <NA> <NA>
## 3807 <NA> <NA>
## 3808 <NA> <NA>
## 3809 <NA> 20 to 39
## 3810 <NA> <NA>
## 3811 <NA> <NA>
## 3812 <NA> 40 to 59
## 3813 <NA> 60 or over
## 3814 <NA> 40 to 59
## 3815 <NA> 60 or over
## 3816 <NA> <NA>
## 3817 <NA> <NA>
## 3818 <NA> <NA>
## 3819 <NA> 40 to 59
## 3820 <NA> 40 to 59
## 3821 <NA> <NA>
## 3822 <NA> <NA>
## 3823 <NA> <NA>
## 3824 <NA> 20 to 39
## 3825 <NA> 40 to 59
## 3826 <NA> <NA>
## 3827 <NA> 40 to 59
## 3828 <NA> <NA>
## 3829 <NA> <NA>
## 3830 <NA> <NA>
## 3831 <NA> 60 or over
## 3832 <NA> <NA>
## 3833 <NA> <NA>
## 3834 <NA> 60 or over
## 3835 <NA> 20 to 39
## 3836 <NA> 40 to 59
## 3837 <NA> <NA>
## 3838 <NA> 60 or over
## 3839 <NA> 60 or over
## 3840 <NA> <NA>
## 3841 <NA> <NA>
## 3842 <NA> <NA>
## 3843 <NA> <NA>
## 3844 <NA> <NA>
## 3845 <NA> 60 or over
## 3846 <NA> <NA>
## 3847 <NA> <NA>
## 3848 <NA> Don't know, never saw R, no selected R
## 3849 <NA> 40 to 59
## 3850 <NA> <NA>
## 3851 <NA> <NA>
## 3852 <NA> 40 to 59
## 3853 <NA> <NA>
## 3854 <NA> 40 to 59
## 3855 <NA> 60 or over
## 3856 <NA> 20 to 39
## 3857 <NA> <NA>
## 3858 <NA> <NA>
## 3859 <NA> <NA>
## 3860 <NA> 60 or over
## 3861 <NA> 20 to 39
## 3862 <NA> <NA>
## 3863 <NA> <NA>
## 3864 <NA> <NA>
## 3865 <NA> <NA>
## 3866 <NA> <NA>
## 3867 <NA> Don't know, never saw R, no selected R
## 3868 <NA> <NA>
## 3869 <NA> Don't know, never saw R, no selected R
## 3870 <NA> <NA>
## 3871 <NA> <NA>
## 3872 <NA> 20 to 39
## 3873 <NA> 60 or over
## 3874 <NA> <NA>
## 3875 <NA> 40 to 59
## 3876 <NA> <NA>
## 3877 <NA> <NA>
## 3878 <NA> 40 to 59
## 3879 <NA> 40 to 59
## 3880 <NA> 60 or over
## 3881 <NA> <NA>
## 3882 <NA> 40 to 59
## 3883 <NA> <NA>
## 3884 <NA> <NA>
## 3885 <NA> 20 to 39
## 3886 <NA> 20 to 39
## 3887 <NA> Don't know, never saw R, no selected R
## 3888 <NA> 60 or over
## 3889 <NA> <NA>
## 3890 <NA> <NA>
## 3891 <NA> Under 20
## 3892 <NA> <NA>
## 3893 <NA> <NA>
## 3894 <NA> <NA>
## 3895 <NA> 60 or over
## 3896 <NA> <NA>
## 3897 <NA> <NA>
## 3898 <NA> 20 to 39
## 3899 <NA> 20 to 39
## 3900 <NA> 60 or over
## 3901 <NA> 40 to 59
## 3902 <NA> 40 to 59
## 3903 <NA> <NA>
## 3904 <NA> 60 or over
## 3905 <NA> 40 to 59
## 3906 <NA> <NA>
## 3907 <NA> 40 to 59
## 3908 <NA> Don't know, never saw R, no selected R
## 3909 <NA> 40 to 59
## 3910 <NA> 60 or over
## 3911 <NA> 20 to 39
## 3912 <NA> <NA>
## 3913 <NA> 20 to 39
## 3914 <NA> 40 to 59
## 3915 <NA> <NA>
## 3916 <NA> <NA>
## 3917 <NA> <NA>
## 3918 <NA> <NA>
## 3919 <NA> <NA>
## 3920 <NA> 60 or over
## 3921 <NA> 40 to 59
## 3922 <NA> 20 to 39
## 3923 <NA> <NA>
## 3924 <NA> <NA>
## 3925 <NA> 40 to 59
## 3926 <NA> <NA>
## 3927 <NA> <NA>
## 3928 <NA> 40 to 59
## 3929 <NA> 20 to 39
## 3930 <NA> <NA>
## 3931 <NA> <NA>
## 3932 <NA> <NA>
## 3933 <NA> Don't know, never saw R, no selected R
## 3934 <NA> <NA>
## 3935 <NA> 60 or over
## 3936 <NA> <NA>
## 3937 <NA> <NA>
## 3938 <NA> 40 to 59
## 3939 <NA> <NA>
## 3940 <NA> 60 or over
## 3941 <NA> <NA>
## 3942 <NA> 60 or over
## 3943 <NA> 20 to 39
## 3944 <NA> 20 to 39
## 3945 <NA> <NA>
## 3946 <NA> 20 to 39
## 3947 <NA> <NA>
## 3948 <NA> 40 to 59
## 3949 <NA> 60 or over
## 3950 <NA> 20 to 39
## 3951 <NA> <NA>
## 3952 <NA> 40 to 59
## 3953 <NA> 40 to 59
## 3954 <NA> 60 or over
## 3955 <NA> <NA>
## 3956 <NA> 40 to 59
## 3957 <NA> 60 or over
## 3958 <NA> 60 or over
## 3959 <NA> Don't know, never saw R, no selected R
## 3960 <NA> <NA>
## 3961 <NA> 60 or over
## 3962 <NA> 40 to 59
## 3963 <NA> <NA>
## 3964 <NA> 60 or over
## 3965 <NA> Don't know, never saw R, no selected R
## 3966 <NA> <NA>
## 3967 <NA> <NA>
## 3968 <NA> 20 to 39
## 3969 <NA> <NA>
## 3970 <NA> <NA>
## 3971 <NA> 60 or over
## 3972 <NA> <NA>
## 3973 <NA> <NA>
## 3974 <NA> <NA>
## 3975 <NA> 40 to 59
## 3976 <NA> <NA>
## 3977 <NA> <NA>
## 3978 <NA> <NA>
## 3979 <NA> <NA>
## 3980 <NA> <NA>
## 3981 <NA> 40 to 59
## 3982 <NA> <NA>
## 3983 <NA> 60 or over
## 3984 <NA> 40 to 59
## 3985 <NA> 20 to 39
## 3986 <NA> 60 or over
## 3987 <NA> 40 to 59
## 3988 <NA> <NA>
## 3989 <NA> 20 to 39
## 3990 <NA> 20 to 39
## 3991 <NA> <NA>
## 3992 <NA> 40 to 59
## 3993 <NA> 20 to 39
## 3994 <NA> Don't know, never saw R, no selected R
## 3995 <NA> <NA>
## 3996 <NA> 40 to 59
## 3997 <NA> <NA>
## 3998 <NA> <NA>
## 3999 <NA> 20 to 39
## 4000 <NA> <NA>
## 4001 <NA> 20 to 39
## 4002 <NA> 40 to 59
## 4003 <NA> <NA>
## 4004 <NA> 20 to 39
## 4005 <NA> 60 or over
## 4006 <NA> <NA>
## 4007 <NA> <NA>
## 4008 <NA> <NA>
## 4009 <NA> <NA>
## 4010 <NA> <NA>
## 4011 <NA> 40 to 59
## 4012 <NA> 40 to 59
## 4013 <NA> 40 to 59
## 4014 <NA> <NA>
## 4015 <NA> 20 to 39
## 4016 <NA> 20 to 39
## 4017 <NA> <NA>
## 4018 <NA> <NA>
## 4019 <NA> 20 to 39
## 4020 <NA> Don't know, never saw R, no selected R
## 4021 <NA> 60 or over
## 4022 <NA> 40 to 59
## 4023 <NA> <NA>
## 4024 <NA> <NA>
## 4025 <NA> 40 to 59
## 4026 <NA> 60 or over
## 4027 <NA> 60 or over
## 4028 <NA> <NA>
## 4029 <NA> <NA>
## 4030 <NA> 60 or over
## 4031 <NA> <NA>
## 4032 <NA> 40 to 59
## 4033 <NA> 60 or over
## 4034 <NA> <NA>
## 4035 <NA> 60 or over
## 4036 <NA> <NA>
## 4037 <NA> <NA>
## 4038 <NA> 40 to 59
## 4039 <NA> 20 to 39
## 4040 <NA> 60 or over
## 4041 <NA> <NA>
## 4042 <NA> 60 or over
## 4043 <NA> 20 to 39
## 4044 <NA> 40 to 59
## 4045 <NA> Under 20
## 4046 <NA> 40 to 59
## 4047 <NA> 60 or over
## 4048 <NA> <NA>
## 4049 <NA> <NA>
## 4050 <NA> <NA>
## 4051 <NA> 60 or over
## 4052 <NA> 40 to 59
## 4053 <NA> Don't know, never saw R, no selected R
## 4054 <NA> 40 to 59
## 4055 <NA> 20 to 39
## 4056 <NA> <NA>
## 4057 <NA> <NA>
## 4058 <NA> <NA>
## 4059 <NA> <NA>
## 4060 <NA> 20 to 39
## 4061 <NA> <NA>
## 4062 <NA> Don't know, never saw R, no selected R
## 4063 <NA> <NA>
## 4064 <NA> 20 to 39
## 4065 <NA> 20 to 39
## 4066 <NA> 40 to 59
## 4067 <NA> 60 or over
## 4068 <NA> 40 to 59
## 4069 <NA> <NA>
## 4070 <NA> Under 20
## 4071 <NA> <NA>
## 4072 <NA> <NA>
## 4073 <NA> <NA>
## 4074 <NA> 20 to 39
## 4075 <NA> 20 to 39
## 4076 <NA> 40 to 59
## 4077 <NA> <NA>
## 4078 <NA> <NA>
## 4079 <NA> <NA>
## 4080 <NA> <NA>
## 4081 <NA> <NA>
## 4082 <NA> 60 or over
## 4083 <NA> 60 or over
## 4084 <NA> <NA>
## 4085 <NA> 40 to 59
## 4086 <NA> <NA>
## 4087 <NA> <NA>
## 4088 <NA> 60 or over
## 4089 <NA> 20 to 39
## 4090 <NA> 20 to 39
## 4091 <NA> <NA>
## 4092 <NA> 40 to 59
## 4093 <NA> 40 to 59
## 4094 <NA> 20 to 39
## 4095 <NA> <NA>
## 4096 <NA> <NA>
## 4097 <NA> <NA>
## 4098 <NA> 20 to 39
## 4099 <NA> 20 to 39
## 4100 <NA> 40 to 59
## 4101 <NA> <NA>
## 4102 <NA> <NA>
## 4103 <NA> <NA>
## 4104 <NA> 20 to 39
## 4105 <NA> <NA>
## 4106 <NA> <NA>
## 4107 <NA> 20 to 39
## 4108 <NA> <NA>
## 4109 <NA> 20 to 39
## 4110 <NA> <NA>
## 4111 <NA> 20 to 39
## 4112 <NA> <NA>
## 4113 <NA> 40 to 59
## 4114 <NA> 60 or over
## 4115 <NA> <NA>
## 4116 <NA> Don't know, never saw R, no selected R
## 4117 <NA> <NA>
## 4118 <NA> 60 or over
## 4119 <NA> 40 to 59
## 4120 <NA> <NA>
## 4121 <NA> <NA>
## 4122 <NA> 60 or over
## 4123 <NA> 40 to 59
## 4124 <NA> <NA>
## 4125 <NA> 20 to 39
## 4126 <NA> 40 to 59
## 4127 <NA> 20 to 39
## 4128 <NA> Under 20
## 4129 <NA> <NA>
## 4130 <NA> <NA>
## 4131 <NA> 60 or over
## 4132 <NA> 60 or over
## 4133 <NA> <NA>
## 4134 <NA> 40 to 59
## 4135 <NA> 20 to 39
## 4136 <NA> 20 to 39
## 4137 <NA> <NA>
## 4138 <NA> 60 or over
## 4139 <NA> 60 or over
## 4140 <NA> <NA>
## 4141 <NA> 40 to 59
## 4142 <NA> <NA>
## 4143 <NA> Don't know, never saw R, no selected R
## 4144 <NA> <NA>
## 4145 <NA> <NA>
## 4146 <NA> <NA>
## 4147 <NA> <NA>
## 4148 <NA> <NA>
## 4149 <NA> 40 to 59
## 4150 <NA> 40 to 59
## 4151 <NA> <NA>
## 4152 <NA> <NA>
## 4153 <NA> 20 to 39
## 4154 <NA> <NA>
## 4155 <NA> 20 to 39
## 4156 <NA> 20 to 39
## 4157 <NA> <NA>
## 4158 <NA> <NA>
## 4159 <NA> <NA>
## 4160 <NA> <NA>
## 4161 <NA> 20 to 39
## 4162 <NA> <NA>
## 4163 <NA> 60 or over
## 4164 <NA> <NA>
## 4165 <NA> 60 or over
## 4166 <NA> 20 to 39
## 4167 <NA> <NA>
## 4168 <NA> 20 to 39
## 4169 <NA> <NA>
## 4170 <NA> 40 to 59
## 4171 <NA> 20 to 39
## 4172 <NA> 20 to 39
## 4173 <NA> 40 to 59
## 4174 <NA> 40 to 59
## 4175 <NA> <NA>
## 4176 <NA> <NA>
## 4177 <NA> <NA>
## 4178 <NA> <NA>
## 4179 <NA> 40 to 59
## 4180 <NA> 40 to 59
## 4181 <NA> <NA>
## 4182 <NA> 40 to 59
## 4183 <NA> <NA>
## 4184 <NA> <NA>
## 4185 <NA> 40 to 59
## 4186 <NA> 40 to 59
## 4187 <NA> 40 to 59
## 4188 <NA> 40 to 59
## 4189 <NA> <NA>
## 4190 <NA> <NA>
## 4191 <NA> 40 to 59
## 4192 <NA> 20 to 39
## 4193 <NA> 40 to 59
## 4194 <NA> <NA>
## 4195 <NA> 60 or over
## 4196 <NA> <NA>
## 4197 <NA> <NA>
## 4198 <NA> <NA>
## 4199 <NA> <NA>
## 4200 <NA> <NA>
## 4201 <NA> <NA>
## 4202 <NA> 40 to 59
## 4203 <NA> 20 to 39
## 4204 <NA> <NA>
## 4205 <NA> 40 to 59
## 4206 <NA> 20 to 39
## 4207 <NA> 20 to 39
## 4208 <NA> 20 to 39
## 4209 <NA> <NA>
## 4210 <NA> Don't know, never saw R, no selected R
## 4211 <NA> <NA>
## 4212 <NA> <NA>
## 4213 <NA> <NA>
## 4214 <NA> 20 to 39
## 4215 <NA> 60 or over
## 4216 <NA> <NA>
## 4217 <NA> Under 20
## 4218 <NA> 60 or over
## 4219 <NA> 40 to 59
## 4220 <NA> <NA>
## 4221 <NA> 20 to 39
## 4222 <NA> 20 to 39
## 4223 <NA> <NA>
## 4224 <NA> 20 to 39
## 4225 <NA> <NA>
## 4226 <NA> 20 to 39
## 4227 <NA> <NA>
## 4228 <NA> 60 or over
## 4229 <NA> <NA>
## 4230 <NA> 60 or over
## 4231 <NA> <NA>
## 4232 <NA> 40 to 59
## 4233 <NA> 60 or over
## 4234 <NA> 40 to 59
## 4235 <NA> <NA>
## 4236 <NA> Don't know, never saw R, no selected R
## 4237 <NA> <NA>
## 4238 <NA> 40 to 59
## 4239 <NA> <NA>
## 4240 <NA> <NA>
## 4241 <NA> 20 to 39
## 4242 <NA> 60 or over
## 4243 <NA> <NA>
## 4244 <NA> <NA>
## 4245 <NA> <NA>
## 4246 <NA> <NA>
## 4247 <NA> 40 to 59
## 4248 <NA> 20 to 39
## 4249 <NA> 60 or over
## 4250 <NA> <NA>
## 4251 <NA> <NA>
## 4252 <NA> 20 to 39
## 4253 <NA> 60 or over
## 4254 <NA> 20 to 39
## 4255 <NA> 40 to 59
## 4256 <NA> 60 or over
## 4257 <NA> <NA>
## 4258 <NA> 60 or over
## 4259 <NA> 40 to 59
## 4260 <NA> 40 to 59
## 4261 <NA> <NA>
## 4262 <NA> 60 or over
## 4263 <NA> <NA>
## 4264 <NA> 20 to 39
## 4265 <NA> 60 or over
## 4266 <NA> <NA>
## 4267 <NA> 40 to 59
## 4268 <NA> <NA>
## 4269 <NA> 40 to 59
## 4270 <NA> 40 to 59
## 4271 <NA> <NA>
## 4272 <NA> 40 to 59
## 4273 <NA> Don't know, never saw R, no selected R
## 4274 <NA> <NA>
## 4275 <NA> 40 to 59
## 4276 <NA> 20 to 39
## 4277 <NA> <NA>
## 4278 <NA> 20 to 39
## 4279 <NA> 60 or over
## 4280 <NA> 40 to 59
## 4281 <NA> 20 to 39
## 4282 <NA> <NA>
## 4283 <NA> 40 to 59
## 4284 <NA> 20 to 39
## 4285 <NA> 60 or over
## 4286 <NA> 40 to 59
## 4287 <NA> <NA>
## 4288 <NA> 40 to 59
## 4289 <NA> <NA>
## 4290 <NA> 20 to 39
## 4291 <NA> 20 to 39
## 4292 <NA> <NA>
## 4293 <NA> <NA>
## 4294 <NA> <NA>
## 4295 <NA> <NA>
## 4296 <NA> 40 to 59
## 4297 <NA> <NA>
## 4298 <NA> 20 to 39
## 4299 <NA> <NA>
## 4300 <NA> 60 or over
## 4301 <NA> 20 to 39
## 4302 <NA> <NA>
## 4303 <NA> 20 to 39
## 4304 <NA> <NA>
## 4305 <NA> <NA>
## 4306 <NA> 60 or over
## 4307 <NA> <NA>
## 4308 <NA> 20 to 39
## 4309 <NA> <NA>
## 4310 <NA> <NA>
## 4311 <NA> <NA>
## 4312 <NA> 60 or over
## 4313 <NA> <NA>
## 4314 <NA> <NA>
## 4315 <NA> <NA>
## 4316 <NA> <NA>
## 4317 <NA> Under 20
## 4318 <NA> <NA>
## 4319 <NA> 60 or over
## 4320 <NA> 40 to 59
## 4321 <NA> <NA>
## 4322 <NA> 40 to 59
## 4323 <NA> <NA>
## 4324 <NA> <NA>
## 4325 <NA> 60 or over
## 4326 <NA> 20 to 39
## 4327 <NA> Don't know, never saw R, no selected R
## 4328 <NA> <NA>
## 4329 <NA> 60 or over
## 4330 <NA> 40 to 59
## 4331 <NA> 40 to 59
## 4332 <NA> <NA>
## 4333 <NA> <NA>
## 4334 <NA> 60 or over
## 4335 <NA> <NA>
## 4336 <NA> 60 or over
## 4337 <NA> 40 to 59
## 4338 <NA> 60 or over
## 4339 <NA> 20 to 39
## 4340 <NA> <NA>
## 4341 <NA> <NA>
## 4342 <NA> 60 or over
## 4343 <NA> Don't know, never saw R, no selected R
## 4344 <NA> <NA>
## 4345 <NA> Don't know, never saw R, no selected R
## 4346 <NA> 40 to 59
## 4347 <NA> <NA>
## 4348 <NA> <NA>
## 4349 <NA> <NA>
## 4350 <NA> 60 or over
## 4351 <NA> <NA>
## 4352 <NA> 40 to 59
## 4353 <NA> <NA>
## 4354 <NA> <NA>
## 4355 <NA> 40 to 59
## 4356 <NA> <NA>
## 4357 <NA> 20 to 39
## 4358 <NA> 40 to 59
## 4359 <NA> 60 or over
## 4360 <NA> <NA>
## 4361 <NA> <NA>
## 4362 <NA> 40 to 59
## 4363 <NA> <NA>
## 4364 <NA> 40 to 59
## 4365 <NA> 40 to 59
## 4366 <NA> <NA>
## 4367 <NA> 40 to 59
## 4368 <NA> <NA>
## 4369 <NA> 40 to 59
## 4370 <NA> 60 or over
## 4371 <NA> 20 to 39
## 4372 <NA> 40 to 59
## 4373 <NA> 60 or over
## 4374 <NA> <NA>
## 4375 <NA> <NA>
## 4376 <NA> <NA>
## 4377 <NA> <NA>
## 4378 <NA> 40 to 59
## 4379 <NA> 40 to 59
## 4380 <NA> 60 or over
## 4381 <NA> <NA>
## 4382 <NA> 60 or over
## 4383 <NA> 20 to 39
## 4384 <NA> <NA>
## 4385 <NA> <NA>
## 4386 <NA> 60 or over
## 4387 <NA> <NA>
## 4388 <NA> <NA>
## 4389 <NA> 20 to 39
## 4390 <NA> <NA>
## 4391 <NA> <NA>
## 4392 <NA> <NA>
## 4393 <NA> 20 to 39
## 4394 <NA> 60 or over
## 4395 <NA> 40 to 59
## 4396 <NA> <NA>
## 4397 <NA> <NA>
## 4398 <NA> <NA>
## 4399 <NA> <NA>
## 4400 <NA> <NA>
## 4401 <NA> 60 or over
## 4402 <NA> <NA>
## 4403 <NA> <NA>
## 4404 <NA> 60 or over
## 4405 <NA> 20 to 39
## 4406 <NA> 20 to 39
## 4407 <NA> <NA>
## 4408 <NA> <NA>
## 4409 <NA> 20 to 39
## 4410 <NA> <NA>
## 4411 <NA> <NA>
## 4412 <NA> 60 or over
## 4413 <NA> <NA>
## 4414 <NA> <NA>
## 4415 <NA> 60 or over
## 4416 <NA> Don't know, never saw R, no selected R
## 4417 <NA> <NA>
## 4418 <NA> 40 to 59
## 4419 <NA> Under 20
## 4420 <NA> 60 or over
## 4421 <NA> 60 or over
## 4422 <NA> <NA>
## 4423 <NA> <NA>
## 4424 <NA> Don't know, never saw R, no selected R
## 4425 <NA> <NA>
## 4426 <NA> <NA>
## 4427 <NA> <NA>
## 4428 <NA> 60 or over
## 4429 <NA> <NA>
## 4430 <NA> 40 to 59
## 4431 <NA> <NA>
## 4432 <NA> 40 to 59
## 4433 <NA> <NA>
## 4434 <NA> <NA>
## 4435 <NA> 20 to 39
## 4436 <NA> Don't know, never saw R, no selected R
## 4437 <NA> 40 to 59
## 4438 <NA> <NA>
## 4439 <NA> <NA>
## 4440 <NA> 20 to 39
## 4441 <NA> <NA>
## 4442 <NA> <NA>
## 4443 <NA> 40 to 59
## 4444 <NA> 60 or over
## 4445 <NA> 60 or over
## 4446 <NA> <NA>
## 4447 <NA> 60 or over
## 4448 <NA> 40 to 59
## 4449 <NA> 20 to 39
## 4450 <NA> <NA>
## 4451 <NA> <NA>
## 4452 <NA> 60 or over
## 4453 <NA> 20 to 39
## 4454 <NA> <NA>
## 4455 <NA> 20 to 39
## 4456 <NA> <NA>
## 4457 <NA> 20 to 39
## 4458 <NA> 40 to 59
## 4459 <NA> <NA>
## 4460 <NA> 60 or over
## 4461 <NA> 60 or over
## 4462 <NA> 40 to 59
## 4463 <NA> 60 or over
## 4464 <NA> <NA>
## 4465 <NA> <NA>
## 4466 <NA> 20 to 39
## 4467 <NA> 60 or over
## 4468 <NA> 60 or over
## 4469 <NA> <NA>
## 4470 <NA> <NA>
## 4471 <NA> <NA>
## 4472 <NA> <NA>
## 4473 <NA> <NA>
## 4474 <NA> <NA>
## 4475 <NA> 20 to 39
## 4476 <NA> 60 or over
## 4477 <NA> 60 or over
## 4478 <NA> <NA>
## 4479 <NA> <NA>
## 4480 <NA> <NA>
## 4481 <NA> 40 to 59
## 4482 <NA> Don't know, never saw R, no selected R
## 4483 <NA> <NA>
## 4484 <NA> <NA>
## 4485 <NA> <NA>
## 4486 <NA> <NA>
## 4487 <NA> <NA>
## 4488 <NA> 20 to 39
## 4489 <NA> 20 to 39
## 4490 <NA> 60 or over
## 4491 <NA> 40 to 59
## 4492 <NA> 40 to 59
## 4493 <NA> <NA>
## 4494 <NA> <NA>
## 4495 <NA> <NA>
## 4496 <NA> 20 to 39
## 4497 <NA> 40 to 59
## 4498 <NA> <NA>
## 4499 <NA> 20 to 39
## 4500 <NA> <NA>
## 4501 <NA> <NA>
## 4502 <NA> 40 to 59
## 4503 <NA> <NA>
## 4504 <NA> 40 to 59
## 4505 <NA> <NA>
## 4506 <NA> 60 or over
## 4507 <NA> <NA>
## 4508 <NA> 60 or over
## 4509 <NA> 40 to 59
## 4510 <NA> 40 to 59
## 4511 <NA> 40 to 59
## 4512 <NA> 60 or over
## 4513 <NA> <NA>
## 4514 <NA> 60 or over
## 4515 <NA> 20 to 39
## 4516 <NA> 40 to 59
## 4517 <NA> <NA>
## 4518 <NA> <NA>
## 4519 <NA> <NA>
## 4520 <NA> <NA>
## 4521 <NA> <NA>
## 4522 <NA> <NA>
## 4523 <NA> <NA>
## 4524 <NA> <NA>
## 4525 <NA> <NA>
## 4526 <NA> <NA>
## 4527 <NA> 60 or over
## 4528 <NA> 20 to 39
## 4529 <NA> 40 to 59
## 4530 <NA> Under 20
## 4531 <NA> <NA>
## 4532 <NA> <NA>
## 4533 <NA> <NA>
## 4534 <NA> 40 to 59
## 4535 <NA> Don't know, never saw R, no selected R
## 4536 <NA> <NA>
## 4537 <NA> 40 to 59
## 4538 <NA> 40 to 59
## 4539 <NA> Don't know, never saw R, no selected R
## 4540 <NA> <NA>
## 4541 <NA> 60 or over
## 4542 <NA> <NA>
## 4543 <NA> 60 or over
## 4544 <NA> <NA>
## 4545 <NA> <NA>
## 4546 <NA> 60 or over
## 4547 <NA> 20 to 39
## 4548 <NA> Don't know, never saw R, no selected R
## 4549 <NA> Don't know, never saw R, no selected R
## 4550 <NA> Under 20
## 4551 <NA> <NA>
## 4552 <NA> 40 to 59
## 4553 <NA> 40 to 59
## 4554 <NA> 60 or over
## 4555 <NA> 60 or over
## 4556 <NA> <NA>
## 4557 <NA> <NA>
## 4558 <NA> 20 to 39
## 4559 <NA> 40 to 59
## 4560 <NA> 20 to 39
## 4561 <NA> <NA>
## 4562 <NA> <NA>
## 4563 <NA> <NA>
## 4564 <NA> <NA>
## 4565 <NA> 40 to 59
## 4566 <NA> 40 to 59
## 4567 <NA> 20 to 39
## 4568 <NA> 40 to 59
## 4569 <NA> <NA>
## 4570 <NA> 60 or over
## 4571 <NA> <NA>
## 4572 <NA> <NA>
## 4573 <NA> <NA>
## 4574 <NA> <NA>
## 4575 <NA> 40 to 59
## 4576 <NA> <NA>
## 4577 <NA> 60 or over
## 4578 <NA> 20 to 39
## 4579 <NA> 40 to 59
## 4580 <NA> <NA>
## 4581 <NA> 60 or over
## 4582 <NA> <NA>
## 4583 <NA> 20 to 39
## 4584 <NA> 60 or over
## 4585 <NA> <NA>
## 4586 <NA> <NA>
## 4587 <NA> <NA>
## 4588 <NA> 20 to 39
## 4589 <NA> <NA>
## 4590 <NA> 40 to 59
## 4591 <NA> 60 or over
## 4592 <NA> 40 to 59
## 4593 <NA> <NA>
## 4594 <NA> 40 to 59
## 4595 <NA> <NA>
## 4596 <NA> 20 to 39
## 4597 <NA> <NA>
## 4598 <NA> <NA>
## 4599 <NA> 60 or over
## 4600 <NA> <NA>
## 4601 <NA> <NA>
## 4602 <NA> <NA>
## 4603 <NA> Don't know, never saw R, no selected R
## 4604 <NA> 40 to 59
## 4605 <NA> Don't know, never saw R, no selected R
## 4606 <NA> 40 to 59
## 4607 <NA> 40 to 59
## 4608 <NA> 40 to 59
## 4609 <NA> 60 or over
## 4610 <NA> 20 to 39
## 4611 <NA> 20 to 39
## 4612 <NA> <NA>
## 4613 <NA> 60 or over
## 4614 <NA> 20 to 39
## 4615 <NA> <NA>
## 4616 <NA> 20 to 39
## 4617 <NA> <NA>
## 4618 <NA> Under 20
## 4619 <NA> <NA>
## 4620 <NA> 60 or over
## 4621 <NA> <NA>
## 4622 <NA> 40 to 59
## 4623 <NA> 60 or over
## 4624 <NA> 60 or over
## 4625 <NA> 40 to 59
## 4626 <NA> Don't know, never saw R, no selected R
## 4627 <NA> <NA>
## 4628 <NA> <NA>
## 4629 <NA> 60 or over
## 4630 <NA> 60 or over
## 4631 <NA> 40 to 59
## 4632 <NA> <NA>
## 4633 <NA> 60 or over
## 4634 <NA> <NA>
## 4635 <NA> 60 or over
## 4636 <NA> <NA>
## 4637 <NA> 20 to 39
## 4638 <NA> <NA>
## 4639 <NA> <NA>
## 4640 <NA> 40 to 59
## 4641 <NA> 40 to 59
## 4642 <NA> 40 to 59
## 4643 <NA> <NA>
## 4644 <NA> 20 to 39
## 4645 <NA> 40 to 59
## 4646 <NA> <NA>
## 4647 <NA> 60 or over
## 4648 <NA> 40 to 59
## 4649 <NA> Don't know, never saw R, no selected R
## 4650 <NA> 40 to 59
## 4651 <NA> 60 or over
## 4652 <NA> 60 or over
## 4653 <NA> 20 to 39
## 4654 <NA> Don't know, never saw R, no selected R
## 4655 <NA> <NA>
## 4656 <NA> <NA>
## 4657 <NA> Don't know, never saw R, no selected R
## 4658 <NA> 20 to 39
## 4659 <NA> <NA>
## 4660 <NA> Don't know, never saw R, no selected R
## 4661 <NA> 20 to 39
## 4662 <NA> 40 to 59
## 4663 <NA> 40 to 59
## 4664 <NA> <NA>
## 4665 <NA> <NA>
## 4666 <NA> <NA>
## 4667 <NA> <NA>
## 4668 <NA> <NA>
## 4669 <NA> <NA>
## 4670 <NA> 60 or over
## 4671 <NA> 60 or over
## 4672 <NA> 60 or over
## 4673 <NA> <NA>
## 4674 <NA> <NA>
## 4675 <NA> 60 or over
## 4676 <NA> Don't know, never saw R, no selected R
## 4677 <NA> <NA>
## 4678 <NA> <NA>
## 4679 <NA> <NA>
## 4680 <NA> 40 to 59
## 4681 <NA> <NA>
## 4682 <NA> <NA>
## 4683 <NA> Don't know, never saw R, no selected R
## 4684 <NA> 20 to 39
## 4685 <NA> Don't know, never saw R, no selected R
## 4686 <NA> 40 to 59
## 4687 <NA> <NA>
## 4688 <NA> 20 to 39
## 4689 <NA> <NA>
## 4690 <NA> 40 to 59
## 4691 <NA> <NA>
## 4692 <NA> <NA>
## 4693 <NA> 40 to 59
## 4694 <NA> 40 to 59
## 4695 <NA> <NA>
## 4696 <NA> <NA>
## 4697 <NA> 40 to 59
## 4698 <NA> <NA>
## 4699 <NA> <NA>
## 4700 <NA> 20 to 39
## 4701 <NA> 60 or over
## 4702 <NA> Don't know, never saw R, no selected R
## 4703 <NA> <NA>
## 4704 <NA> 60 or over
## 4705 <NA> <NA>
## 4706 <NA> <NA>
## 4707 <NA> <NA>
## 4708 <NA> 40 to 59
## 4709 <NA> Don't know, never saw R, no selected R
## 4710 <NA> <NA>
## 4711 <NA> 40 to 59
## 4712 <NA> Don't know, never saw R, no selected R
## 4713 <NA> 40 to 59
## 4714 <NA> <NA>
## 4715 <NA> <NA>
## 4716 <NA> <NA>
## 4717 <NA> 40 to 59
## 4718 <NA> 40 to 59
## 4719 <NA> <NA>
## 4720 <NA> 60 or over
## 4721 <NA> <NA>
## 4722 <NA> <NA>
## 4723 <NA> <NA>
## 4724 <NA> <NA>
## 4725 <NA> 20 to 39
## 4726 <NA> 40 to 59
## 4727 <NA> <NA>
## 4728 <NA> <NA>
## 4729 <NA> 60 or over
## 4730 <NA> 40 to 59
## 4731 <NA> 40 to 59
## 4732 <NA> 60 or over
## 4733 <NA> 40 to 59
## 4734 <NA> <NA>
## 4735 <NA> 40 to 59
## 4736 <NA> <NA>
## 4737 <NA> <NA>
## 4738 <NA> <NA>
## 4739 <NA> <NA>
## 4740 <NA> 40 to 59
## 4741 <NA> <NA>
## 4742 <NA> <NA>
## 4743 <NA> <NA>
## 4744 <NA> <NA>
## 4745 <NA> 60 or over
## 4746 <NA> 60 or over
## 4747 <NA> <NA>
## 4748 <NA> 60 or over
## 4749 <NA> <NA>
## 4750 <NA> 20 to 39
## 4751 <NA> <NA>
## 4752 <NA> <NA>
## 4753 <NA> 20 to 39
## 4754 <NA> <NA>
## 4755 <NA> <NA>
## 4756 <NA> 60 or over
## 4757 <NA> 20 to 39
## 4758 <NA> <NA>
## 4759 <NA> 60 or over
## 4760 <NA> <NA>
## 4761 <NA> <NA>
## 4762 <NA> 60 or over
## 4763 <NA> 40 to 59
## 4764 <NA> 60 or over
## 4765 <NA> 40 to 59
## 4766 <NA> 60 or over
## 4767 <NA> <NA>
## 4768 <NA> <NA>
## 4769 <NA> 40 to 59
## 4770 <NA> 20 to 39
## 4771 <NA> 60 or over
## 4772 <NA> <NA>
## 4773 <NA> 40 to 59
## 4774 <NA> <NA>
## 4775 <NA> <NA>
## 4776 <NA> <NA>
## 4777 <NA> <NA>
## 4778 <NA> 60 or over
## 4779 <NA> <NA>
## 4780 <NA> 20 to 39
## 4781 <NA> 20 to 39
## 4782 <NA> 60 or over
## 4783 <NA> 60 or over
## 4784 <NA> 40 to 59
## 4785 <NA> 60 or over
## 4786 <NA> <NA>
## 4787 <NA> <NA>
## 4788 <NA> <NA>
## 4789 <NA> <NA>
## 4790 <NA> <NA>
## 4791 <NA> <NA>
## 4792 <NA> 20 to 39
## 4793 <NA> <NA>
## 4794 <NA> 20 to 39
## 4795 <NA> <NA>
## 4796 <NA> <NA>
## 4797 <NA> <NA>
## 4798 <NA> 60 or over
## 4799 <NA> 60 or over
## 4800 <NA> 40 to 59
## 4801 <NA> 20 to 39
## 4802 <NA> <NA>
## 4803 <NA> <NA>
## 4804 <NA> 40 to 59
## 4805 <NA> 60 or over
## 4806 <NA> <NA>
## 4807 <NA> <NA>
## 4808 <NA> Don't know, never saw R, no selected R
## 4809 <NA> <NA>
## 4810 <NA> <NA>
## 4811 <NA> 20 to 39
## 4812 <NA> 40 to 59
## 4813 <NA> 40 to 59
## 4814 <NA> <NA>
## 4815 <NA> 20 to 39
## 4816 <NA> <NA>
## 4817 <NA> 60 or over
## 4818 <NA> <NA>
## 4819 <NA> <NA>
## 4820 <NA> <NA>
## 4821 <NA> 40 to 59
## 4822 <NA> 40 to 59
## 4823 <NA> 20 to 39
## 4824 <NA> <NA>
## 4825 <NA> <NA>
## 4826 <NA> <NA>
## 4827 <NA> <NA>
## 4828 <NA> 40 to 59
## 4829 <NA> 20 to 39
## 4830 <NA> Don't know, never saw R, no selected R
## 4831 <NA> <NA>
## 4832 <NA> 60 or over
## 4833 <NA> <NA>
## 4834 <NA> 20 to 39
## 4835 <NA> <NA>
## 4836 <NA> <NA>
## 4837 <NA> 40 to 59
## 4838 <NA> 60 or over
## 4839 <NA> 20 to 39
## 4840 <NA> 20 to 39
## 4841 <NA> 60 or over
## 4842 <NA> 20 to 39
## 4843 <NA> <NA>
## 4844 <NA> <NA>
## 4845 <NA> 20 to 39
## 4846 <NA> 60 or over
## 4847 <NA> <NA>
## 4848 <NA> 60 or over
## 4849 <NA> <NA>
## 4850 <NA> <NA>
## 4851 <NA> <NA>
## 4852 <NA> <NA>
## 4853 <NA> 40 to 59
## 4854 <NA> 20 to 39
## 4855 <NA> <NA>
## 4856 <NA> <NA>
## 4857 <NA> 20 to 39
## 4858 <NA> <NA>
## 4859 <NA> <NA>
## 4860 <NA> Don't know, never saw R, no selected R
## 4861 <NA> 60 or over
## 4862 <NA> 40 to 59
## 4863 <NA> 60 or over
## 4864 <NA> 40 to 59
## 4865 <NA> <NA>
## 4866 <NA> <NA>
## 4867 <NA> 20 to 39
## 4868 <NA> <NA>
## 4869 <NA> <NA>
## 4870 <NA> 60 or over
## 4871 <NA> 40 to 59
## 4872 <NA> Don't know, never saw R, no selected R
## 4873 <NA> 20 to 39
## 4874 <NA> <NA>
## 4875 <NA> <NA>
## 4876 <NA> <NA>
## 4877 <NA> 60 or over
## 4878 <NA> 60 or over
## 4879 <NA> <NA>
## 4880 <NA> 20 to 39
## 4881 <NA> 60 or over
## 4882 <NA> <NA>
## 4883 <NA> 60 or over
## 4884 <NA> <NA>
## 4885 <NA> 40 to 59
## 4886 <NA> 40 to 59
## 4887 <NA> <NA>
## 4888 <NA> 40 to 59
## 4889 <NA> 20 to 39
## 4890 <NA> 60 or over
## 4891 <NA> 20 to 39
## 4892 <NA> 20 to 39
## 4893 <NA> <NA>
## 4894 <NA> <NA>
## 4895 <NA> <NA>
## 4896 <NA> <NA>
## 4897 <NA> 40 to 59
## 4898 <NA> Don't know, never saw R, no selected R
## 4899 <NA> <NA>
## 4900 <NA> <NA>
## 4901 <NA> 60 or over
## 4902 <NA> <NA>
## 4903 <NA> 40 to 59
## 4904 <NA> <NA>
## 4905 <NA> <NA>
## 4906 <NA> <NA>
## 4907 <NA> <NA>
## 4908 <NA> 60 or over
## 4909 <NA> <NA>
## 4910 <NA> Don't know, never saw R, no selected R
## 4911 <NA> 40 to 59
## 4912 <NA> 40 to 59
## 4913 <NA> <NA>
## 4914 <NA> <NA>
## 4915 <NA> <NA>
## 4916 <NA> 20 to 39
## 4917 <NA> 40 to 59
## 4918 <NA> 60 or over
## 4919 <NA> Don't know, never saw R, no selected R
## 4920 <NA> <NA>
## 4921 <NA> 20 to 39
## 4922 <NA> 20 to 39
## 4923 <NA> <NA>
## 4924 <NA> 40 to 59
## 4925 <NA> <NA>
## 4926 <NA> 40 to 59
## 4927 <NA> <NA>
## 4928 <NA> <NA>
## 4929 <NA> <NA>
## 4930 <NA> 40 to 59
## 4931 <NA> 60 or over
## 4932 <NA> <NA>
## 4933 <NA> 20 to 39
## 4934 <NA> <NA>
## 4935 <NA> <NA>
## 4936 <NA> Don't know, never saw R, no selected R
## 4937 <NA> 60 or over
## 4938 <NA> 60 or over
## 4939 <NA> 20 to 39
## 4940 <NA> Don't know, never saw R, no selected R
## 4941 <NA> 40 to 59
## 4942 <NA> 40 to 59
## 4943 <NA> 60 or over
## 4944 <NA> <NA>
## 4945 <NA> 40 to 59
## 4946 <NA> 60 or over
## 4947 <NA> 60 or over
## 4948 <NA> 40 to 59
## 4949 <NA> 60 or over
## 4950 <NA> 20 to 39
## 4951 <NA> <NA>
## 4952 <NA> <NA>
## 4953 <NA> <NA>
## 4954 <NA> 40 to 59
## 4955 <NA> <NA>
## 4956 <NA> 20 to 39
## 4957 <NA> <NA>
## 4958 <NA> 60 or over
## 4959 <NA> <NA>
## 4960 <NA> 40 to 59
## 4961 <NA> <NA>
## 4962 <NA> 60 or over
## 4963 <NA> 40 to 59
## 4964 <NA> <NA>
## 4965 <NA> 60 or over
## 4966 <NA> <NA>
## 4967 <NA> 40 to 59
## 4968 <NA> <NA>
## 4969 <NA> 60 or over
## 4970 <NA> <NA>
## 4971 <NA> 40 to 59
## 4972 <NA> <NA>
## 4973 <NA> <NA>
## 4974 <NA> Don't know, never saw R, no selected R
## 4975 <NA> <NA>
## 4976 <NA> <NA>
## 4977 <NA> <NA>
## 4978 <NA> 60 or over
## 4979 <NA> 60 or over
## 4980 <NA> 20 to 39
## 4981 <NA> <NA>
## 4982 <NA> 20 to 39
## 4983 <NA> Don't know, never saw R, no selected R
## 4984 <NA> <NA>
## 4985 <NA> 40 to 59
## 4986 <NA> <NA>
## 4987 <NA> 40 to 59
## 4988 <NA> 40 to 59
## 4989 <NA> 60 or over
## 4990 <NA> <NA>
## 4991 <NA> Under 20
## 4992 <NA> 20 to 39
## 4993 <NA> <NA>
## 4994 <NA> <NA>
## 4995 <NA> Don't know, never saw R, no selected R
## 4996 <NA> Under 20
## 4997 <NA> 40 to 59
## 4998 <NA> <NA>
## 4999 <NA> <NA>
## 5000 <NA> <NA>
## 5001 <NA> <NA>
## 5002 <NA> 60 or over
## 5003 <NA> <NA>
## 5004 <NA> 20 to 39
## 5005 <NA> <NA>
## 5006 <NA> 20 to 39
## 5007 <NA> <NA>
## 5008 <NA> 40 to 59
## 5009 <NA> 40 to 59
## 5010 <NA> 40 to 59
## 5011 <NA> 60 or over
## 5012 <NA> <NA>
## 5013 <NA> 60 or over
## 5014 <NA> <NA>
## 5015 <NA> 20 to 39
## 5016 <NA> <NA>
## 5017 <NA> 40 to 59
## 5018 <NA> <NA>
## 5019 <NA> 40 to 59
## 5020 <NA> 40 to 59
## 5021 <NA> 40 to 59
## 5022 <NA> 20 to 39
## 5023 <NA> <NA>
## 5024 <NA> 40 to 59
## 5025 <NA> 20 to 39
## 5026 <NA> <NA>
## 5027 <NA> 20 to 39
## 5028 <NA> 60 or over
## 5029 <NA> 60 or over
## 5030 <NA> <NA>
## 5031 <NA> <NA>
## 5032 <NA> Don't know, never saw R, no selected R
## 5033 <NA> 60 or over
## 5034 <NA> 20 to 39
## 5035 <NA> <NA>
## 5036 <NA> <NA>
## 5037 <NA> <NA>
## 5038 <NA> <NA>
## 5039 <NA> 40 to 59
## 5040 <NA> 20 to 39
## 5041 <NA> 40 to 59
## 5042 <NA> <NA>
## 5043 <NA> 20 to 39
## 5044 <NA> 20 to 39
## 5045 <NA> 20 to 39
## 5046 <NA> <NA>
## 5047 <NA> <NA>
## 5048 <NA> 60 or over
## 5049 <NA> 40 to 59
## 5050 <NA> <NA>
## 5051 <NA> <NA>
## 5052 <NA> 20 to 39
## 5053 <NA> <NA>
## 5054 <NA> 60 or over
## 5055 <NA> 20 to 39
## 5056 <NA> 20 to 39
## 5057 <NA> <NA>
## 5058 <NA> <NA>
## 5059 <NA> <NA>
## 5060 <NA> <NA>
## 5061 <NA> 20 to 39
## 5062 <NA> 20 to 39
## 5063 <NA> Under 20
## 5064 <NA> <NA>
## 5065 <NA> <NA>
## 5066 <NA> <NA>
## 5067 <NA> 60 or over
## 5068 <NA> <NA>
## 5069 <NA> <NA>
## 5070 <NA> <NA>
## 5071 <NA> 60 or over
## 5072 <NA> <NA>
## 5073 <NA> <NA>
## 5074 <NA> 60 or over
## 5075 <NA> <NA>
## 5076 <NA> 40 to 59
## 5077 <NA> 20 to 39
## 5078 <NA> <NA>
## 5079 <NA> 60 or over
## 5080 <NA> 40 to 59
## 5081 <NA> <NA>
## 5082 <NA> 40 to 59
## 5083 <NA> 20 to 39
## 5084 <NA> 40 to 59
## 5085 <NA> <NA>
## 5086 <NA> 60 or over
## 5087 <NA> 20 to 39
## 5088 <NA> <NA>
## 5089 <NA> 40 to 59
## 5090 <NA> <NA>
## 5091 <NA> 60 or over
## 5092 <NA> 20 to 39
## 5093 <NA> <NA>
## 5094 <NA> 40 to 59
## 5095 <NA> <NA>
## 5096 <NA> <NA>
## 5097 <NA> 40 to 59
## 5098 <NA> <NA>
## 5099 <NA> <NA>
## 5100 <NA> 40 to 59
## 5101 <NA> 20 to 39
## 5102 <NA> 20 to 39
## 5103 <NA> 60 or over
## 5104 <NA> 40 to 59
## 5105 <NA> 40 to 59
## 5106 <NA> 20 to 39
## 5107 <NA> <NA>
## 5108 <NA> 40 to 59
## 5109 <NA> <NA>
## 5110 <NA> 60 or over
## 5111 <NA> 60 or over
## 5112 <NA> <NA>
## 5113 <NA> 40 to 59
## 5114 <NA> 60 or over
## 5115 <NA> 40 to 59
## 5116 <NA> 40 to 59
## 5117 <NA> 60 or over
## 5118 <NA> 40 to 59
## 5119 <NA> <NA>
## 5120 <NA> 40 to 59
## 5121 <NA> 40 to 59
## 5122 <NA> 20 to 39
## 5123 <NA> <NA>
## 5124 <NA> 40 to 59
## 5125 <NA> <NA>
## 5126 <NA> Don't know, never saw R, no selected R
## 5127 <NA> 60 or over
## 5128 <NA> 60 or over
## 5129 <NA> 40 to 59
## 5130 <NA> <NA>
## 5131 <NA> 40 to 59
## 5132 <NA> 60 or over
## 5133 <NA> 20 to 39
## 5134 <NA> <NA>
## 5135 <NA> 40 to 59
## 5136 <NA> Under 20
## 5137 <NA> <NA>
## 5138 <NA> 40 to 59
## 5139 <NA> <NA>
## 5140 <NA> 40 to 59
## 5141 <NA> <NA>
## 5142 <NA> <NA>
## 5143 <NA> 20 to 39
## 5144 <NA> Under 20
## 5145 <NA> <NA>
## 5146 <NA> 40 to 59
## 5147 <NA> <NA>
## 5148 <NA> 60 or over
## 5149 <NA> 40 to 59
## 5150 <NA> <NA>
## 5151 <NA> <NA>
## 5152 <NA> 40 to 59
## 5153 <NA> 40 to 59
## 5154 <NA> 20 to 39
## 5155 <NA> 40 to 59
## 5156 <NA> <NA>
## 5157 <NA> 60 or over
## 5158 <NA> <NA>
## 5159 <NA> <NA>
## 5160 <NA> <NA>
## 5161 <NA> 40 to 59
## 5162 <NA> 60 or over
## 5163 <NA> <NA>
## 5164 <NA> <NA>
## 5165 <NA> 40 to 59
## 5166 <NA> <NA>
## 5167 <NA> 60 or over
## 5168 <NA> <NA>
## 5169 <NA> <NA>
## 5170 <NA> <NA>
## 5171 <NA> <NA>
## 5172 <NA> 40 to 59
## 5173 <NA> 40 to 59
## 5174 <NA> 20 to 39
## 5175 <NA> <NA>
## 5176 <NA> 20 to 39
## 5177 <NA> 60 or over
## 5178 <NA> <NA>
## 5179 <NA> <NA>
## 5180 <NA> Under 20
## 5181 <NA> <NA>
## 5182 <NA> 20 to 39
## 5183 <NA> 20 to 39
## 5184 <NA> 40 to 59
## 5185 <NA> 60 or over
## 5186 <NA> <NA>
## 5187 <NA> <NA>
## 5188 <NA> <NA>
## 5189 <NA> <NA>
## 5190 <NA> Don't know, never saw R, no selected R
## 5191 <NA> 40 to 59
## 5192 <NA> <NA>
## 5193 <NA> 20 to 39
## 5194 <NA> 20 to 39
## 5195 <NA> Don't know, never saw R, no selected R
## 5196 <NA> <NA>
## 5197 <NA> 40 to 59
## 5198 <NA> <NA>
## 5199 <NA> 20 to 39
## 5200 <NA> 40 to 59
## 5201 <NA> 40 to 59
## 5202 <NA> <NA>
## 5203 <NA> 60 or over
## 5204 <NA> 40 to 59
## 5205 <NA> <NA>
## 5206 <NA> <NA>
## 5207 <NA> <NA>
## 5208 <NA> <NA>
## 5209 <NA> <NA>
## 5210 <NA> 20 to 39
## 5211 <NA> 20 to 39
## 5212 <NA> 40 to 59
## 5213 <NA> <NA>
## 5214 <NA> 40 to 59
## 5215 <NA> 60 or over
## 5216 <NA> 20 to 39
## 5217 <NA> 40 to 59
## 5218 <NA> 60 or over
## 5219 <NA> 40 to 59
## 5220 <NA> 40 to 59
## 5221 <NA> 40 to 59
## 5222 <NA> 60 or over
## 5223 <NA> 20 to 39
## 5224 <NA> 20 to 39
## 5225 <NA> <NA>
## 5226 <NA> 60 or over
## 5227 <NA> Don't know, never saw R, no selected R
## 5228 <NA> 60 or over
## 5229 <NA> 20 to 39
## 5230 <NA> 60 or over
## 5231 <NA> 60 or over
## 5232 <NA> <NA>
## 5233 <NA> <NA>
## 5234 <NA> <NA>
## 5235 <NA> <NA>
## 5236 <NA> 20 to 39
## 5237 <NA> <NA>
## 5238 <NA> <NA>
## 5239 <NA> 40 to 59
## 5240 <NA> <NA>
## 5241 <NA> 60 or over
## 5242 <NA> 60 or over
## 5243 <NA> 40 to 59
## 5244 <NA> <NA>
## 5245 <NA> 20 to 39
## 5246 <NA> <NA>
## 5247 <NA> 40 to 59
## 5248 <NA> 40 to 59
## 5249 <NA> 60 or over
## 5250 <NA> <NA>
## 5251 <NA> <NA>
## 5252 <NA> Don't know, never saw R, no selected R
## 5253 <NA> 60 or over
## 5254 <NA> <NA>
## 5255 <NA> 60 or over
## 5256 <NA> 20 to 39
## 5257 <NA> <NA>
## 5258 <NA> 60 or over
## 5259 <NA> 60 or over
## 5260 <NA> 40 to 59
## 5261 <NA> 60 or over
## 5262 <NA> Don't know, never saw R, no selected R
## 5263 <NA> 60 or over
## 5264 <NA> Don't know, never saw R, no selected R
## 5265 <NA> 60 or over
## 5266 <NA> <NA>
## 5267 <NA> <NA>
## 5268 <NA> 20 to 39
## 5269 <NA> <NA>
## 5270 <NA> <NA>
## 5271 <NA> <NA>
## 5272 <NA> <NA>
## 5273 <NA> <NA>
## 5274 <NA> <NA>
## 5275 <NA> <NA>
## 5276 <NA> <NA>
## 5277 <NA> 60 or over
## 5278 <NA> 40 to 59
## 5279 <NA> 20 to 39
## 5280 <NA> 60 or over
## 5281 <NA> <NA>
## 5282 <NA> <NA>
## 5283 <NA> 60 or over
## 5284 <NA> <NA>
## 5285 <NA> 20 to 39
## 5286 <NA> 60 or over
## 5287 <NA> <NA>
## 5288 <NA> 60 or over
## 5289 <NA> 60 or over
## 5290 <NA> <NA>
## 5291 <NA> <NA>
## 5292 <NA> <NA>
## 5293 <NA> 40 to 59
## 5294 <NA> 20 to 39
## 5295 <NA> 60 or over
## 5296 <NA> <NA>
## 5297 <NA> 40 to 59
## 5298 <NA> <NA>
## 5299 <NA> <NA>
## 5300 <NA> <NA>
## 5301 <NA> 40 to 59
## 5302 <NA> 20 to 39
## 5303 <NA> <NA>
## 5304 <NA> <NA>
## 5305 <NA> Don't know, never saw R, no selected R
## 5306 <NA> <NA>
## 5307 <NA> 40 to 59
## 5308 <NA> Under 20
## 5309 <NA> 40 to 59
## 5310 <NA> <NA>
## 5311 <NA> 20 to 39
## 5312 <NA> <NA>
## 5313 <NA> <NA>
## 5314 <NA> <NA>
## 5315 <NA> Don't know, never saw R, no selected R
## 5316 <NA> <NA>
## 5317 <NA> 20 to 39
## 5318 <NA> <NA>
## 5319 <NA> <NA>
## 5320 <NA> 20 to 39
## 5321 <NA> 40 to 59
## 5322 <NA> 60 or over
## 5323 <NA> 60 or over
## 5324 <NA> <NA>
## 5325 <NA> 40 to 59
## 5326 <NA> 40 to 59
## 5327 <NA> <NA>
## 5328 <NA> <NA>
## 5329 <NA> <NA>
## 5330 <NA> <NA>
## 5331 <NA> <NA>
## 5332 <NA> Don't know, never saw R, no selected R
## 5333 <NA> 20 to 39
## 5334 <NA> 40 to 59
## 5335 <NA> Don't know, never saw R, no selected R
## 5336 <NA> 20 to 39
## 5337 <NA> 20 to 39
## 5338 <NA> <NA>
## 5339 <NA> 20 to 39
## 5340 <NA> 60 or over
## 5341 <NA> <NA>
## 5342 <NA> <NA>
## 5343 <NA> <NA>
## 5344 <NA> 40 to 59
## 5345 <NA> 20 to 39
## 5346 <NA> <NA>
## 5347 <NA> Don't know, never saw R, no selected R
## 5348 <NA> 20 to 39
## 5349 <NA> 20 to 39
## 5350 <NA> 40 to 59
## 5351 <NA> <NA>
## 5352 <NA> 60 or over
## 5353 <NA> 40 to 59
## 5354 <NA> <NA>
## 5355 <NA> 60 or over
## 5356 <NA> 60 or over
## 5357 <NA> <NA>
## 5358 <NA> <NA>
## 5359 <NA> <NA>
## 5360 <NA> 60 or over
## 5361 <NA> 20 to 39
## 5362 <NA> 20 to 39
## 5363 <NA> 40 to 59
## 5364 <NA> 20 to 39
## 5365 <NA> <NA>
## 5366 <NA> Under 20
## 5367 <NA> <NA>
## 5368 <NA> <NA>
## 5369 <NA> <NA>
## 5370 <NA> 40 to 59
## 5371 <NA> <NA>
## 5372 <NA> <NA>
## 5373 <NA> 60 or over
## 5374 <NA> 40 to 59
## 5375 <NA> <NA>
## 5376 <NA> 20 to 39
## 5377 <NA> Don't know, never saw R, no selected R
## 5378 <NA> 40 to 59
## 5379 <NA> <NA>
## 5380 <NA> <NA>
## 5381 <NA> <NA>
## 5382 <NA> <NA>
## 5383 <NA> <NA>
## 5384 <NA> <NA>
## 5385 <NA> 20 to 39
## 5386 <NA> 20 to 39
## 5387 <NA> Don't know, never saw R, no selected R
## 5388 <NA> <NA>
## 5389 <NA> 40 to 59
## 5390 <NA> 60 or over
## 5391 <NA> 20 to 39
## 5392 <NA> <NA>
## 5393 <NA> <NA>
## 5394 <NA> <NA>
## 5395 <NA> 20 to 39
## 5396 <NA> 60 or over
## 5397 <NA> 20 to 39
## 5398 <NA> 60 or over
## 5399 <NA> 20 to 39
## 5400 <NA> <NA>
## 5401 <NA> 60 or over
## 5402 <NA> 20 to 39
## 5403 <NA> <NA>
## 5404 <NA> <NA>
## 5405 <NA> Don't know, never saw R, no selected R
## 5406 <NA> <NA>
## 5407 <NA> <NA>
## 5408 <NA> <NA>
## 5409 <NA> <NA>
## 5410 <NA> <NA>
## 5411 <NA> <NA>
## 5412 <NA> 60 or over
## 5413 <NA> <NA>
## 5414 <NA> 20 to 39
## 5415 <NA> 60 or over
## 5416 <NA> 60 or over
## 5417 <NA> 40 to 59
## 5418 <NA> <NA>
## 5419 <NA> 60 or over
## 5420 <NA> 20 to 39
## 5421 <NA> 60 or over
## 5422 <NA> <NA>
## 5423 <NA> 20 to 39
## 5424 <NA> <NA>
## 5425 <NA> 20 to 39
## 5426 <NA> <NA>
## 5427 <NA> <NA>
## 5428 <NA> <NA>
## 5429 <NA> Under 20
## 5430 <NA> 40 to 59
## 5431 <NA> Don't know, never saw R, no selected R
## 5432 <NA> <NA>
## 5433 <NA> 60 or over
## 5434 <NA> <NA>
## 5435 <NA> 20 to 39
## 5436 <NA> <NA>
## 5437 <NA> 40 to 59
## 5438 <NA> 60 or over
## 5439 <NA> Don't know, never saw R, no selected R
## 5440 <NA> 20 to 39
## 5441 <NA> <NA>
## 5442 <NA> <NA>
## 5443 <NA> 20 to 39
## 5444 <NA> <NA>
## 5445 <NA> 60 or over
## 5446 <NA> <NA>
## 5447 <NA> <NA>
## 5448 <NA> 40 to 59
## 5449 <NA> 20 to 39
## 5450 <NA> <NA>
## 5451 <NA> 20 to 39
## 5452 <NA> 20 to 39
## 5453 <NA> 60 or over
## 5454 <NA> 40 to 59
## 5455 <NA> <NA>
## 5456 <NA> 20 to 39
## 5457 <NA> <NA>
## 5458 <NA> 60 or over
## 5459 <NA> 20 to 39
## 5460 <NA> <NA>
## 5461 <NA> <NA>
## 5462 <NA> Don't know, never saw R, no selected R
## 5463 <NA> Don't know, never saw R, no selected R
## 5464 <NA> 20 to 39
## 5465 <NA> <NA>
## 5466 <NA> 60 or over
## 5467 <NA> 20 to 39
## 5468 <NA> <NA>
## 5469 <NA> 40 to 59
## 5470 <NA> 40 to 59
## 5471 <NA> 20 to 39
## 5472 <NA> 20 to 39
## 5473 <NA> <NA>
## 5474 <NA> 20 to 39
## 5475 <NA> 60 or over
## 5476 <NA> 60 or over
## 5477 <NA> 20 to 39
## 5478 <NA> 40 to 59
## 5479 <NA> <NA>
## 5480 <NA> <NA>
## 5481 <NA> <NA>
## 5482 <NA> <NA>
## 5483 <NA> <NA>
## 5484 <NA> 40 to 59
## 5485 <NA> Don't know, never saw R, no selected R
## 5486 <NA> <NA>
## 5487 <NA> <NA>
## 5488 <NA> 20 to 39
## 5489 <NA> 40 to 59
## 5490 <NA> <NA>
## 5491 <NA> <NA>
## 5492 <NA> <NA>
## 5493 <NA> 40 to 59
## 5494 <NA> <NA>
## 5495 <NA> <NA>
## 5496 <NA> 40 to 59
## 5497 <NA> <NA>
## 5498 <NA> 20 to 39
## 5499 <NA> 40 to 59
## 5500 <NA> 20 to 39
## 5501 <NA> 40 to 59
## 5502 <NA> <NA>
## 5503 <NA> 20 to 39
## 5504 <NA> 40 to 59
## 5505 <NA> 20 to 39
## 5506 <NA> <NA>
## 5507 <NA> 20 to 39
## 5508 <NA> 40 to 59
## 5509 <NA> <NA>
## 5510 <NA> 20 to 39
## 5511 <NA> <NA>
## 5512 <NA> 20 to 39
## 5513 <NA> 20 to 39
## 5514 <NA> Don't know, never saw R, no selected R
## 5515 <NA> 40 to 59
## 5516 <NA> <NA>
## 5517 <NA> <NA>
## 5518 <NA> <NA>
## 5519 <NA> <NA>
## 5520 <NA> <NA>
## 5521 <NA> 20 to 39
## 5522 <NA> <NA>
## 5523 <NA> 20 to 39
## 5524 <NA> 40 to 59
## 5525 <NA> 40 to 59
## 5526 <NA> 40 to 59
## 5527 <NA> <NA>
## 5528 <NA> <NA>
## 5529 <NA> 40 to 59
## 5530 <NA> <NA>
## 5531 <NA> 20 to 39
## 5532 <NA> <NA>
## 5533 <NA> <NA>
## 5534 <NA> 40 to 59
## 5535 <NA> 60 or over
## 5536 <NA> 60 or over
## 5537 <NA> 20 to 39
## 5538 <NA> <NA>
## 5539 <NA> 40 to 59
## 5540 <NA> 20 to 39
## 5541 <NA> 60 or over
## 5542 <NA> 20 to 39
## 5543 <NA> 40 to 59
## 5544 <NA> <NA>
## 5545 <NA> <NA>
## 5546 <NA> <NA>
## 5547 <NA> 40 to 59
## 5548 <NA> 20 to 39
## 5549 <NA> 60 or over
## 5550 <NA> <NA>
## 5551 <NA> <NA>
## 5552 <NA> <NA>
## 5553 <NA> <NA>
## 5554 <NA> 40 to 59
## 5555 <NA> 20 to 39
## 5556 <NA> 40 to 59
## 5557 <NA> 60 or over
## 5558 <NA> 20 to 39
## 5559 <NA> <NA>
## 5560 <NA> <NA>
## 5561 <NA> <NA>
## 5562 <NA> 40 to 59
## 5563 <NA> <NA>
## 5564 <NA> <NA>
## 5565 <NA> 40 to 59
## 5566 <NA> <NA>
## 5567 <NA> 20 to 39
## 5568 <NA> 60 or over
## 5569 <NA> 40 to 59
## 5570 <NA> <NA>
## 5571 <NA> <NA>
## 5572 <NA> 20 to 39
## 5573 <NA> <NA>
## 5574 <NA> 60 or over
## 5575 <NA> 40 to 59
## 5576 <NA> <NA>
## 5577 <NA> 60 or over
## 5578 <NA> 60 or over
## 5579 <NA> 40 to 59
## 5580 <NA> 20 to 39
## 5581 <NA> 40 to 59
## 5582 <NA> <NA>
## 5583 <NA> Don't know, never saw R, no selected R
## 5584 <NA> <NA>
## 5585 <NA> 60 or over
## 5586 <NA> <NA>
## 5587 <NA> <NA>
## 5588 <NA> 60 or over
## 5589 <NA> <NA>
## 5590 <NA> <NA>
## 5591 <NA> 20 to 39
## 5592 <NA> <NA>
## 5593 <NA> <NA>
## 5594 <NA> <NA>
## 5595 <NA> Don't know, never saw R, no selected R
## 5596 <NA> <NA>
## 5597 <NA> <NA>
## 5598 <NA> 60 or over
## 5599 <NA> 60 or over
## 5600 <NA> 20 to 39
## gendera1
## 1 <NA>
## 2 <NA>
## 3 <NA>
## 4 <NA>
## 5 <NA>
## 6 <NA>
## 7 <NA>
## 8 <NA>
## 9 <NA>
## 10 <NA>
## 11 <NA>
## 12 <NA>
## 13 <NA>
## 14 <NA>
## 15 <NA>
## 16 <NA>
## 17 Male
## 18 <NA>
## 19 <NA>
## 20 <NA>
## 21 <NA>
## 22 <NA>
## 23 <NA>
## 24 <NA>
## 25 <NA>
## 26 <NA>
## 27 Male
## 28 Male
## 29 <NA>
## 30 <NA>
## 31 <NA>
## 32 <NA>
## 33 Female
## 34 <NA>
## 35 Don't know, never saw R, no selected R
## 36 <NA>
## 37 Male
## 38 <NA>
## 39 <NA>
## 40 Male
## 41 <NA>
## 42 <NA>
## 43 <NA>
## 44 <NA>
## 45 Male
## 46 <NA>
## 47 <NA>
## 48 Male
## 49 Female
## 50 <NA>
## 51 <NA>
## 52 <NA>
## 53 <NA>
## 54 <NA>
## 55 <NA>
## 56 <NA>
## 57 <NA>
## 58 Female
## 59 <NA>
## 60 <NA>
## 61 <NA>
## 62 <NA>
## 63 <NA>
## 64 <NA>
## 65 <NA>
## 66 <NA>
## 67 <NA>
## 68 <NA>
## 69 <NA>
## 70 Female
## 71 <NA>
## 72 Female
## 73 <NA>
## 74 <NA>
## 75 <NA>
## 76 <NA>
## 77 <NA>
## 78 <NA>
## 79 <NA>
## 80 <NA>
## 81 <NA>
## 82 <NA>
## 83 <NA>
## 84 Female
## 85 <NA>
## 86 <NA>
## 87 <NA>
## 88 <NA>
## 89 <NA>
## 90 <NA>
## 91 <NA>
## 92 <NA>
## 93 Female
## 94 <NA>
## 95 <NA>
## 96 <NA>
## 97 <NA>
## 98 <NA>
## 99 <NA>
## 100 <NA>
## 101 <NA>
## 102 <NA>
## 103 <NA>
## 104 Female
## 105 <NA>
## 106 <NA>
## 107 <NA>
## 108 Female
## 109 <NA>
## 110 <NA>
## 111 Female
## 112 <NA>
## 113 <NA>
## 114 <NA>
## 115 <NA>
## 116 <NA>
## 117 <NA>
## 118 <NA>
## 119 Male
## 120 Male
## 121 <NA>
## 122 <NA>
## 123 <NA>
## 124 <NA>
## 125 <NA>
## 126 <NA>
## 127 <NA>
## 128 Male
## 129 <NA>
## 130 <NA>
## 131 <NA>
## 132 <NA>
## 133 <NA>
## 134 <NA>
## 135 <NA>
## 136 <NA>
## 137 Female
## 138 <NA>
## 139 <NA>
## 140 <NA>
## 141 <NA>
## 142 <NA>
## 143 <NA>
## 144 <NA>
## 145 <NA>
## 146 <NA>
## 147 <NA>
## 148 <NA>
## 149 <NA>
## 150 <NA>
## 151 <NA>
## 152 <NA>
## 153 <NA>
## 154 Female
## 155 <NA>
## 156 <NA>
## 157 <NA>
## 158 <NA>
## 159 Male
## 160 <NA>
## 161 Male
## 162 <NA>
## 163 <NA>
## 164 <NA>
## 165 <NA>
## 166 <NA>
## 167 <NA>
## 168 <NA>
## 169 <NA>
## 170 <NA>
## 171 <NA>
## 172 <NA>
## 173 <NA>
## 174 <NA>
## 175 <NA>
## 176 <NA>
## 177 <NA>
## 178 <NA>
## 179 Female
## 180 <NA>
## 181 <NA>
## 182 <NA>
## 183 Female
## 184 <NA>
## 185 <NA>
## 186 <NA>
## 187 <NA>
## 188 <NA>
## 189 <NA>
## 190 Female
## 191 <NA>
## 192 <NA>
## 193 <NA>
## 194 <NA>
## 195 <NA>
## 196 <NA>
## 197 <NA>
## 198 <NA>
## 199 <NA>
## 200 <NA>
## 201 <NA>
## 202 Male
## 203 <NA>
## 204 <NA>
## 205 <NA>
## 206 <NA>
## 207 <NA>
## 208 <NA>
## 209 <NA>
## 210 <NA>
## 211 <NA>
## 212 Male
## 213 Male
## 214 <NA>
## 215 <NA>
## 216 Female
## 217 <NA>
## 218 <NA>
## 219 Male
## 220 <NA>
## 221 <NA>
## 222 <NA>
## 223 <NA>
## 224 <NA>
## 225 <NA>
## 226 <NA>
## 227 <NA>
## 228 Male
## 229 <NA>
## 230 Female
## 231 <NA>
## 232 <NA>
## 233 <NA>
## 234 <NA>
## 235 <NA>
## 236 <NA>
## 237 <NA>
## 238 <NA>
## 239 <NA>
## 240 <NA>
## 241 <NA>
## 242 <NA>
## 243 <NA>
## 244 <NA>
## 245 <NA>
## 246 <NA>
## 247 <NA>
## 248 <NA>
## 249 <NA>
## 250 <NA>
## 251 <NA>
## 252 <NA>
## 253 <NA>
## 254 <NA>
## 255 <NA>
## 256 <NA>
## 257 <NA>
## 258 <NA>
## 259 <NA>
## 260 <NA>
## 261 <NA>
## 262 <NA>
## 263 <NA>
## 264 <NA>
## 265 <NA>
## 266 <NA>
## 267 <NA>
## 268 Male
## 269 <NA>
## 270 <NA>
## 271 <NA>
## 272 <NA>
## 273 <NA>
## 274 <NA>
## 275 Female
## 276 <NA>
## 277 <NA>
## 278 <NA>
## 279 <NA>
## 280 <NA>
## 281 <NA>
## 282 <NA>
## 283 Female
## 284 <NA>
## 285 Male
## 286 <NA>
## 287 Female
## 288 Male
## 289 <NA>
## 290 <NA>
## 291 <NA>
## 292 <NA>
## 293 <NA>
## 294 Male
## 295 <NA>
## 296 <NA>
## 297 Female
## 298 <NA>
## 299 <NA>
## 300 <NA>
## 301 <NA>
## 302 <NA>
## 303 <NA>
## 304 Female
## 305 <NA>
## 306 <NA>
## 307 <NA>
## 308 <NA>
## 309 Male
## 310 Female
## 311 Male
## 312 <NA>
## 313 <NA>
## 314 <NA>
## 315 Male
## 316 <NA>
## 317 <NA>
## 318 <NA>
## 319 <NA>
## 320 <NA>
## 321 <NA>
## 322 <NA>
## 323 <NA>
## 324 <NA>
## 325 <NA>
## 326 Don't know, never saw R, no selected R
## 327 <NA>
## 328 <NA>
## 329 <NA>
## 330 <NA>
## 331 <NA>
## 332 <NA>
## 333 Male
## 334 Male
## 335 Male
## 336 Male
## 337 Male
## 338 <NA>
## 339 <NA>
## 340 <NA>
## 341 <NA>
## 342 <NA>
## 343 <NA>
## 344 Female
## 345 <NA>
## 346 <NA>
## 347 <NA>
## 348 <NA>
## 349 <NA>
## 350 <NA>
## 351 <NA>
## 352 <NA>
## 353 <NA>
## 354 Male
## 355 <NA>
## 356 <NA>
## 357 <NA>
## 358 <NA>
## 359 <NA>
## 360 Female
## 361 <NA>
## 362 <NA>
## 363 <NA>
## 364 <NA>
## 365 <NA>
## 366 <NA>
## 367 Male
## 368 <NA>
## 369 <NA>
## 370 <NA>
## 371 <NA>
## 372 <NA>
## 373 <NA>
## 374 <NA>
## 375 <NA>
## 376 <NA>
## 377 <NA>
## 378 <NA>
## 379 Female
## 380 <NA>
## 381 <NA>
## 382 <NA>
## 383 <NA>
## 384 <NA>
## 385 Male
## 386 <NA>
## 387 <NA>
## 388 <NA>
## 389 <NA>
## 390 <NA>
## 391 <NA>
## 392 <NA>
## 393 <NA>
## 394 <NA>
## 395 <NA>
## 396 <NA>
## 397 <NA>
## 398 <NA>
## 399 <NA>
## 400 <NA>
## 401 <NA>
## 402 <NA>
## 403 <NA>
## 404 <NA>
## 405 <NA>
## 406 <NA>
## 407 Male
## 408 <NA>
## 409 <NA>
## 410 <NA>
## 411 Male
## 412 <NA>
## 413 <NA>
## 414 <NA>
## 415 <NA>
## 416 Female
## 417 <NA>
## 418 Male
## 419 <NA>
## 420 <NA>
## 421 Female
## 422 <NA>
## 423 <NA>
## 424 <NA>
## 425 <NA>
## 426 <NA>
## 427 <NA>
## 428 <NA>
## 429 Female
## 430 <NA>
## 431 <NA>
## 432 Female
## 433 <NA>
## 434 <NA>
## 435 <NA>
## 436 <NA>
## 437 <NA>
## 438 <NA>
## 439 Male
## 440 <NA>
## 441 <NA>
## 442 <NA>
## 443 <NA>
## 444 Male
## 445 <NA>
## 446 <NA>
## 447 <NA>
## 448 <NA>
## 449 <NA>
## 450 <NA>
## 451 <NA>
## 452 Female
## 453 <NA>
## 454 <NA>
## 455 <NA>
## 456 <NA>
## 457 <NA>
## 458 <NA>
## 459 <NA>
## 460 <NA>
## 461 <NA>
## 462 <NA>
## 463 <NA>
## 464 <NA>
## 465 Male
## 466 <NA>
## 467 <NA>
## 468 <NA>
## 469 <NA>
## 470 <NA>
## 471 <NA>
## 472 <NA>
## 473 <NA>
## 474 <NA>
## 475 <NA>
## 476 <NA>
## 477 Male
## 478 <NA>
## 479 <NA>
## 480 <NA>
## 481 <NA>
## 482 <NA>
## 483 <NA>
## 484 <NA>
## 485 <NA>
## 486 <NA>
## 487 <NA>
## 488 <NA>
## 489 <NA>
## 490 <NA>
## 491 <NA>
## 492 <NA>
## 493 Male
## 494 <NA>
## 495 <NA>
## 496 <NA>
## 497 <NA>
## 498 <NA>
## 499 Female
## 500 <NA>
## 501 <NA>
## 502 <NA>
## 503 Male
## 504 <NA>
## 505 <NA>
## 506 <NA>
## 507 <NA>
## 508 <NA>
## 509 <NA>
## 510 <NA>
## 511 <NA>
## 512 <NA>
## 513 <NA>
## 514 <NA>
## 515 <NA>
## 516 <NA>
## 517 <NA>
## 518 <NA>
## 519 Female
## 520 <NA>
## 521 <NA>
## 522 <NA>
## 523 <NA>
## 524 <NA>
## 525 <NA>
## 526 <NA>
## 527 <NA>
## 528 <NA>
## 529 <NA>
## 530 <NA>
## 531 <NA>
## 532 <NA>
## 533 <NA>
## 534 <NA>
## 535 <NA>
## 536 <NA>
## 537 <NA>
## 538 <NA>
## 539 <NA>
## 540 <NA>
## 541 <NA>
## 542 <NA>
## 543 <NA>
## 544 <NA>
## 545 <NA>
## 546 <NA>
## 547 <NA>
## 548 <NA>
## 549 <NA>
## 550 <NA>
## 551 <NA>
## 552 <NA>
## 553 <NA>
## 554 <NA>
## 555 <NA>
## 556 <NA>
## 557 <NA>
## 558 <NA>
## 559 <NA>
## 560 <NA>
## 561 <NA>
## 562 <NA>
## 563 Male
## 564 Female
## 565 <NA>
## 566 <NA>
## 567 <NA>
## 568 <NA>
## 569 <NA>
## 570 <NA>
## 571 <NA>
## 572 <NA>
## 573 <NA>
## 574 <NA>
## 575 Male
## 576 <NA>
## 577 <NA>
## 578 Male
## 579 <NA>
## 580 <NA>
## 581 <NA>
## 582 <NA>
## 583 Female
## 584 <NA>
## 585 <NA>
## 586 <NA>
## 587 Male
## 588 <NA>
## 589 Male
## 590 Male
## 591 <NA>
## 592 <NA>
## 593 Female
## 594 <NA>
## 595 <NA>
## 596 <NA>
## 597 <NA>
## 598 <NA>
## 599 <NA>
## 600 <NA>
## 601 <NA>
## 602 <NA>
## 603 <NA>
## 604 <NA>
## 605 <NA>
## 606 <NA>
## 607 <NA>
## 608 <NA>
## 609 <NA>
## 610 <NA>
## 611 <NA>
## 612 <NA>
## 613 <NA>
## 614 <NA>
## 615 <NA>
## 616 Female
## 617 <NA>
## 618 <NA>
## 619 <NA>
## 620 <NA>
## 621 <NA>
## 622 <NA>
## 623 <NA>
## 624 <NA>
## 625 <NA>
## 626 <NA>
## 627 <NA>
## 628 <NA>
## 629 <NA>
## 630 <NA>
## 631 <NA>
## 632 <NA>
## 633 <NA>
## 634 <NA>
## 635 <NA>
## 636 <NA>
## 637 Female
## 638 <NA>
## 639 <NA>
## 640 <NA>
## 641 Female
## 642 <NA>
## 643 Female
## 644 <NA>
## 645 <NA>
## 646 <NA>
## 647 <NA>
## 648 <NA>
## 649 <NA>
## 650 <NA>
## 651 <NA>
## 652 Female
## 653 <NA>
## 654 <NA>
## 655 <NA>
## 656 <NA>
## 657 <NA>
## 658 <NA>
## 659 <NA>
## 660 Female
## 661 <NA>
## 662 <NA>
## 663 Male
## 664 <NA>
## 665 <NA>
## 666 <NA>
## 667 <NA>
## 668 <NA>
## 669 <NA>
## 670 <NA>
## 671 <NA>
## 672 <NA>
## 673 Male
## 674 <NA>
## 675 Male
## 676 <NA>
## 677 <NA>
## 678 <NA>
## 679 <NA>
## 680 <NA>
## 681 <NA>
## 682 Don't know, never saw R, no selected R
## 683 <NA>
## 684 <NA>
## 685 <NA>
## 686 <NA>
## 687 <NA>
## 688 Male
## 689 <NA>
## 690 <NA>
## 691 <NA>
## 692 <NA>
## 693 <NA>
## 694 <NA>
## 695 <NA>
## 696 Female
## 697 <NA>
## 698 <NA>
## 699 <NA>
## 700 <NA>
## 701 <NA>
## 702 <NA>
## 703 <NA>
## 704 Female
## 705 <NA>
## 706 <NA>
## 707 <NA>
## 708 <NA>
## 709 <NA>
## 710 <NA>
## 711 <NA>
## 712 <NA>
## 713 Female
## 714 <NA>
## 715 <NA>
## 716 Don't know, never saw R, no selected R
## 717 <NA>
## 718 <NA>
## 719 <NA>
## 720 <NA>
## 721 <NA>
## 722 <NA>
## 723 <NA>
## 724 <NA>
## 725 <NA>
## 726 <NA>
## 727 <NA>
## 728 Female
## 729 <NA>
## 730 <NA>
## 731 <NA>
## 732 <NA>
## 733 <NA>
## 734 <NA>
## 735 <NA>
## 736 <NA>
## 737 <NA>
## 738 <NA>
## 739 <NA>
## 740 <NA>
## 741 <NA>
## 742 <NA>
## 743 <NA>
## 744 <NA>
## 745 <NA>
## 746 <NA>
## 747 <NA>
## 748 <NA>
## 749 <NA>
## 750 <NA>
## 751 Female
## 752 Male
## 753 Female
## 754 <NA>
## 755 <NA>
## 756 <NA>
## 757 <NA>
## 758 <NA>
## 759 <NA>
## 760 <NA>
## 761 <NA>
## 762 Don't know, never saw R, no selected R
## 763 <NA>
## 764 <NA>
## 765 <NA>
## 766 <NA>
## 767 <NA>
## 768 <NA>
## 769 <NA>
## 770 <NA>
## 771 <NA>
## 772 <NA>
## 773 <NA>
## 774 <NA>
## 775 <NA>
## 776 <NA>
## 777 <NA>
## 778 <NA>
## 779 Male
## 780 <NA>
## 781 <NA>
## 782 <NA>
## 783 <NA>
## 784 <NA>
## 785 <NA>
## 786 <NA>
## 787 <NA>
## 788 Male
## 789 <NA>
## 790 <NA>
## 791 <NA>
## 792 Male
## 793 <NA>
## 794 <NA>
## 795 <NA>
## 796 <NA>
## 797 <NA>
## 798 <NA>
## 799 <NA>
## 800 <NA>
## 801 <NA>
## 802 <NA>
## 803 <NA>
## 804 <NA>
## 805 Female
## 806 <NA>
## 807 <NA>
## 808 <NA>
## 809 Male
## 810 <NA>
## 811 <NA>
## 812 <NA>
## 813 Female
## 814 <NA>
## 815 <NA>
## 816 <NA>
## 817 <NA>
## 818 <NA>
## 819 <NA>
## 820 Male
## 821 <NA>
## 822 <NA>
## 823 <NA>
## 824 <NA>
## 825 <NA>
## 826 <NA>
## 827 <NA>
## 828 <NA>
## 829 <NA>
## 830 <NA>
## 831 Female
## 832 <NA>
## 833 <NA>
## 834 <NA>
## 835 <NA>
## 836 <NA>
## 837 <NA>
## 838 Male
## 839 Male
## 840 <NA>
## 841 <NA>
## 842 <NA>
## 843 <NA>
## 844 <NA>
## 845 <NA>
## 846 <NA>
## 847 Male
## 848 <NA>
## 849 Male
## 850 <NA>
## 851 <NA>
## 852 <NA>
## 853 Female
## 854 Male
## 855 Male
## 856 <NA>
## 857 <NA>
## 858 <NA>
## 859 <NA>
## 860 <NA>
## 861 <NA>
## 862 <NA>
## 863 <NA>
## 864 <NA>
## 865 <NA>
## 866 <NA>
## 867 <NA>
## 868 <NA>
## 869 <NA>
## 870 <NA>
## 871 <NA>
## 872 Male
## 873 <NA>
## 874 <NA>
## 875 Male
## 876 Male
## 877 <NA>
## 878 Male
## 879 <NA>
## 880 <NA>
## 881 Female
## 882 Female
## 883 <NA>
## 884 Female
## 885 <NA>
## 886 <NA>
## 887 <NA>
## 888 <NA>
## 889 <NA>
## 890 <NA>
## 891 <NA>
## 892 Male
## 893 <NA>
## 894 Don't know, never saw R, no selected R
## 895 <NA>
## 896 <NA>
## 897 <NA>
## 898 <NA>
## 899 <NA>
## 900 <NA>
## 901 <NA>
## 902 <NA>
## 903 <NA>
## 904 <NA>
## 905 <NA>
## 906 <NA>
## 907 <NA>
## 908 <NA>
## 909 <NA>
## 910 <NA>
## 911 <NA>
## 912 <NA>
## 913 <NA>
## 914 <NA>
## 915 <NA>
## 916 <NA>
## 917 <NA>
## 918 Female
## 919 <NA>
## 920 <NA>
## 921 <NA>
## 922 <NA>
## 923 <NA>
## 924 Female
## 925 <NA>
## 926 <NA>
## 927 <NA>
## 928 <NA>
## 929 Female
## 930 <NA>
## 931 <NA>
## 932 <NA>
## 933 <NA>
## 934 <NA>
## 935 <NA>
## 936 <NA>
## 937 <NA>
## 938 <NA>
## 939 <NA>
## 940 <NA>
## 941 <NA>
## 942 Female
## 943 <NA>
## 944 <NA>
## 945 <NA>
## 946 Male
## 947 <NA>
## 948 <NA>
## 949 Don't know, never saw R, no selected R
## 950 <NA>
## 951 <NA>
## 952 <NA>
## 953 <NA>
## 954 Female
## 955 <NA>
## 956 <NA>
## 957 <NA>
## 958 <NA>
## 959 <NA>
## 960 <NA>
## 961 Female
## 962 <NA>
## 963 Male
## 964 <NA>
## 965 <NA>
## 966 <NA>
## 967 <NA>
## 968 <NA>
## 969 <NA>
## 970 <NA>
## 971 <NA>
## 972 <NA>
## 973 <NA>
## 974 <NA>
## 975 <NA>
## 976 <NA>
## 977 <NA>
## 978 <NA>
## 979 <NA>
## 980 <NA>
## 981 <NA>
## 982 <NA>
## 983 <NA>
## 984 <NA>
## 985 <NA>
## 986 <NA>
## 987 Male
## 988 <NA>
## 989 <NA>
## 990 Female
## 991 <NA>
## 992 <NA>
## 993 <NA>
## 994 <NA>
## 995 <NA>
## 996 <NA>
## 997 <NA>
## 998 <NA>
## 999 <NA>
## 1000 <NA>
## 1001 <NA>
## 1002 <NA>
## 1003 <NA>
## 1004 <NA>
## 1005 <NA>
## 1006 <NA>
## 1007 Male
## 1008 Male
## 1009 <NA>
## 1010 <NA>
## 1011 <NA>
## 1012 <NA>
## 1013 <NA>
## 1014 Male
## 1015 Male
## 1016 <NA>
## 1017 Female
## 1018 <NA>
## 1019 <NA>
## 1020 <NA>
## 1021 <NA>
## 1022 <NA>
## 1023 <NA>
## 1024 <NA>
## 1025 <NA>
## 1026 <NA>
## 1027 Male
## 1028 <NA>
## 1029 <NA>
## 1030 <NA>
## 1031 <NA>
## 1032 <NA>
## 1033 <NA>
## 1034 <NA>
## 1035 <NA>
## 1036 Female
## 1037 <NA>
## 1038 <NA>
## 1039 <NA>
## 1040 <NA>
## 1041 Male
## 1042 <NA>
## 1043 <NA>
## 1044 <NA>
## 1045 <NA>
## 1046 <NA>
## 1047 <NA>
## 1048 <NA>
## 1049 Don't know, never saw R, no selected R
## 1050 <NA>
## 1051 Female
## 1052 <NA>
## 1053 <NA>
## 1054 <NA>
## 1055 <NA>
## 1056 <NA>
## 1057 <NA>
## 1058 <NA>
## 1059 <NA>
## 1060 <NA>
## 1061 <NA>
## 1062 Female
## 1063 <NA>
## 1064 <NA>
## 1065 <NA>
## 1066 Male
## 1067 <NA>
## 1068 Male
## 1069 <NA>
## 1070 <NA>
## 1071 <NA>
## 1072 <NA>
## 1073 <NA>
## 1074 <NA>
## 1075 <NA>
## 1076 <NA>
## 1077 <NA>
## 1078 Male
## 1079 <NA>
## 1080 <NA>
## 1081 <NA>
## 1082 <NA>
## 1083 <NA>
## 1084 <NA>
## 1085 Male
## 1086 <NA>
## 1087 <NA>
## 1088 <NA>
## 1089 <NA>
## 1090 Female
## 1091 <NA>
## 1092 <NA>
## 1093 <NA>
## 1094 <NA>
## 1095 <NA>
## 1096 <NA>
## 1097 Female
## 1098 <NA>
## 1099 <NA>
## 1100 Female
## 1101 <NA>
## 1102 <NA>
## 1103 <NA>
## 1104 <NA>
## 1105 Female
## 1106 <NA>
## 1107 <NA>
## 1108 <NA>
## 1109 <NA>
## 1110 <NA>
## 1111 Male
## 1112 <NA>
## 1113 <NA>
## 1114 <NA>
## 1115 <NA>
## 1116 <NA>
## 1117 <NA>
## 1118 Male
## 1119 <NA>
## 1120 <NA>
## 1121 <NA>
## 1122 <NA>
## 1123 <NA>
## 1124 <NA>
## 1125 Female
## 1126 <NA>
## 1127 Male
## 1128 <NA>
## 1129 <NA>
## 1130 <NA>
## 1131 <NA>
## 1132 <NA>
## 1133 <NA>
## 1134 <NA>
## 1135 Female
## 1136 <NA>
## 1137 Female
## 1138 <NA>
## 1139 Female
## 1140 <NA>
## 1141 Male
## 1142 <NA>
## 1143 <NA>
## 1144 <NA>
## 1145 <NA>
## 1146 <NA>
## 1147 <NA>
## 1148 <NA>
## 1149 <NA>
## 1150 <NA>
## 1151 <NA>
## 1152 <NA>
## 1153 Female
## 1154 <NA>
## 1155 <NA>
## 1156 <NA>
## 1157 <NA>
## 1158 <NA>
## 1159 <NA>
## 1160 <NA>
## 1161 <NA>
## 1162 <NA>
## 1163 <NA>
## 1164 <NA>
## 1165 <NA>
## 1166 <NA>
## 1167 <NA>
## 1168 <NA>
## 1169 <NA>
## 1170 <NA>
## 1171 <NA>
## 1172 <NA>
## 1173 <NA>
## 1174 <NA>
## 1175 <NA>
## 1176 Male
## 1177 <NA>
## 1178 Male
## 1179 <NA>
## 1180 <NA>
## 1181 <NA>
## 1182 <NA>
## 1183 <NA>
## 1184 <NA>
## 1185 <NA>
## 1186 <NA>
## 1187 <NA>
## 1188 <NA>
## 1189 <NA>
## 1190 <NA>
## 1191 <NA>
## 1192 <NA>
## 1193 <NA>
## 1194 <NA>
## 1195 <NA>
## 1196 <NA>
## 1197 <NA>
## 1198 <NA>
## 1199 <NA>
## 1200 <NA>
## 1201 Don't know, never saw R, no selected R
## 1202 <NA>
## 1203 <NA>
## 1204 <NA>
## 1205 <NA>
## 1206 <NA>
## 1207 <NA>
## 1208 Male
## 1209 Male
## 1210 <NA>
## 1211 <NA>
## 1212 Female
## 1213 Female
## 1214 <NA>
## 1215 <NA>
## 1216 <NA>
## 1217 <NA>
## 1218 <NA>
## 1219 <NA>
## 1220 <NA>
## 1221 <NA>
## 1222 <NA>
## 1223 <NA>
## 1224 <NA>
## 1225 <NA>
## 1226 <NA>
## 1227 Female
## 1228 <NA>
## 1229 <NA>
## 1230 <NA>
## 1231 <NA>
## 1232 <NA>
## 1233 <NA>
## 1234 <NA>
## 1235 <NA>
## 1236 <NA>
## 1237 <NA>
## 1238 Male
## 1239 Female
## 1240 <NA>
## 1241 <NA>
## 1242 <NA>
## 1243 <NA>
## 1244 <NA>
## 1245 <NA>
## 1246 <NA>
## 1247 Male
## 1248 <NA>
## 1249 <NA>
## 1250 Female
## 1251 Female
## 1252 <NA>
## 1253 <NA>
## 1254 <NA>
## 1255 <NA>
## 1256 <NA>
## 1257 <NA>
## 1258 <NA>
## 1259 Female
## 1260 <NA>
## 1261 <NA>
## 1262 <NA>
## 1263 <NA>
## 1264 <NA>
## 1265 <NA>
## 1266 Male
## 1267 <NA>
## 1268 <NA>
## 1269 <NA>
## 1270 <NA>
## 1271 <NA>
## 1272 <NA>
## 1273 <NA>
## 1274 <NA>
## 1275 <NA>
## 1276 <NA>
## 1277 <NA>
## 1278 <NA>
## 1279 <NA>
## 1280 <NA>
## 1281 <NA>
## 1282 <NA>
## 1283 <NA>
## 1284 <NA>
## 1285 <NA>
## 1286 Female
## 1287 <NA>
## 1288 <NA>
## 1289 <NA>
## 1290 <NA>
## 1291 <NA>
## 1292 Male
## 1293 <NA>
## 1294 <NA>
## 1295 <NA>
## 1296 <NA>
## 1297 <NA>
## 1298 <NA>
## 1299 <NA>
## 1300 <NA>
## 1301 Female
## 1302 Male
## 1303 <NA>
## 1304 <NA>
## 1305 Male
## 1306 <NA>
## 1307 <NA>
## 1308 <NA>
## 1309 <NA>
## 1310 <NA>
## 1311 <NA>
## 1312 Female
## 1313 <NA>
## 1314 <NA>
## 1315 <NA>
## 1316 <NA>
## 1317 <NA>
## 1318 <NA>
## 1319 Female
## 1320 <NA>
## 1321 Male
## 1322 <NA>
## 1323 <NA>
## 1324 <NA>
## 1325 <NA>
## 1326 <NA>
## 1327 <NA>
## 1328 <NA>
## 1329 <NA>
## 1330 Male
## 1331 <NA>
## 1332 <NA>
## 1333 <NA>
## 1334 <NA>
## 1335 <NA>
## 1336 <NA>
## 1337 <NA>
## 1338 Female
## 1339 <NA>
## 1340 <NA>
## 1341 <NA>
## 1342 <NA>
## 1343 <NA>
## 1344 <NA>
## 1345 <NA>
## 1346 Male
## 1347 Female
## 1348 Female
## 1349 <NA>
## 1350 <NA>
## 1351 Female
## 1352 <NA>
## 1353 <NA>
## 1354 <NA>
## 1355 <NA>
## 1356 <NA>
## 1357 <NA>
## 1358 <NA>
## 1359 <NA>
## 1360 <NA>
## 1361 <NA>
## 1362 <NA>
## 1363 <NA>
## 1364 <NA>
## 1365 <NA>
## 1366 <NA>
## 1367 Male
## 1368 <NA>
## 1369 <NA>
## 1370 <NA>
## 1371 <NA>
## 1372 <NA>
## 1373 <NA>
## 1374 <NA>
## 1375 <NA>
## 1376 <NA>
## 1377 <NA>
## 1378 <NA>
## 1379 <NA>
## 1380 <NA>
## 1381 <NA>
## 1382 <NA>
## 1383 <NA>
## 1384 <NA>
## 1385 <NA>
## 1386 <NA>
## 1387 <NA>
## 1388 <NA>
## 1389 <NA>
## 1390 <NA>
## 1391 <NA>
## 1392 Male
## 1393 <NA>
## 1394 Female
## 1395 <NA>
## 1396 <NA>
## 1397 <NA>
## 1398 <NA>
## 1399 <NA>
## 1400 <NA>
## 1401 <NA>
## 1402 <NA>
## 1403 <NA>
## 1404 <NA>
## 1405 <NA>
## 1406 <NA>
## 1407 <NA>
## 1408 <NA>
## 1409 <NA>
## 1410 <NA>
## 1411 <NA>
## 1412 <NA>
## 1413 <NA>
## 1414 <NA>
## 1415 <NA>
## 1416 Male
## 1417 Male
## 1418 <NA>
## 1419 Male
## 1420 <NA>
## 1421 <NA>
## 1422 <NA>
## 1423 <NA>
## 1424 <NA>
## 1425 <NA>
## 1426 <NA>
## 1427 <NA>
## 1428 <NA>
## 1429 <NA>
## 1430 <NA>
## 1431 <NA>
## 1432 <NA>
## 1433 <NA>
## 1434 Female
## 1435 <NA>
## 1436 <NA>
## 1437 <NA>
## 1438 <NA>
## 1439 Female
## 1440 Female
## 1441 <NA>
## 1442 <NA>
## 1443 <NA>
## 1444 <NA>
## 1445 <NA>
## 1446 <NA>
## 1447 <NA>
## 1448 <NA>
## 1449 <NA>
## 1450 <NA>
## 1451 <NA>
## 1452 Female
## 1453 Male
## 1454 <NA>
## 1455 <NA>
## 1456 <NA>
## 1457 <NA>
## 1458 <NA>
## 1459 <NA>
## 1460 <NA>
## 1461 <NA>
## 1462 <NA>
## 1463 <NA>
## 1464 <NA>
## 1465 <NA>
## 1466 <NA>
## 1467 <NA>
## 1468 Female
## 1469 <NA>
## 1470 <NA>
## 1471 <NA>
## 1472 <NA>
## 1473 <NA>
## 1474 <NA>
## 1475 <NA>
## 1476 <NA>
## 1477 Male
## 1478 <NA>
## 1479 <NA>
## 1480 <NA>
## 1481 <NA>
## 1482 <NA>
## 1483 <NA>
## 1484 <NA>
## 1485 <NA>
## 1486 <NA>
## 1487 <NA>
## 1488 <NA>
## 1489 <NA>
## 1490 <NA>
## 1491 <NA>
## 1492 <NA>
## 1493 <NA>
## 1494 <NA>
## 1495 <NA>
## 1496 <NA>
## 1497 <NA>
## 1498 <NA>
## 1499 <NA>
## 1500 <NA>
## 1501 Female
## 1502 <NA>
## 1503 <NA>
## 1504 <NA>
## 1505 <NA>
## 1506 Female
## 1507 <NA>
## 1508 <NA>
## 1509 <NA>
## 1510 <NA>
## 1511 <NA>
## 1512 <NA>
## 1513 <NA>
## 1514 <NA>
## 1515 <NA>
## 1516 <NA>
## 1517 <NA>
## 1518 <NA>
## 1519 <NA>
## 1520 <NA>
## 1521 Female
## 1522 <NA>
## 1523 <NA>
## 1524 <NA>
## 1525 <NA>
## 1526 <NA>
## 1527 <NA>
## 1528 <NA>
## 1529 Male
## 1530 <NA>
## 1531 <NA>
## 1532 <NA>
## 1533 <NA>
## 1534 <NA>
## 1535 <NA>
## 1536 <NA>
## 1537 <NA>
## 1538 <NA>
## 1539 <NA>
## 1540 <NA>
## 1541 <NA>
## 1542 <NA>
## 1543 <NA>
## 1544 <NA>
## 1545 <NA>
## 1546 <NA>
## 1547 <NA>
## 1548 <NA>
## 1549 Male
## 1550 <NA>
## 1551 Female
## 1552 <NA>
## 1553 <NA>
## 1554 <NA>
## 1555 <NA>
## 1556 <NA>
## 1557 <NA>
## 1558 <NA>
## 1559 <NA>
## 1560 Female
## 1561 <NA>
## 1562 Male
## 1563 <NA>
## 1564 <NA>
## 1565 <NA>
## 1566 Female
## 1567 <NA>
## 1568 <NA>
## 1569 <NA>
## 1570 <NA>
## 1571 <NA>
## 1572 <NA>
## 1573 <NA>
## 1574 <NA>
## 1575 <NA>
## 1576 <NA>
## 1577 <NA>
## 1578 <NA>
## 1579 <NA>
## 1580 <NA>
## 1581 <NA>
## 1582 Female
## 1583 <NA>
## 1584 <NA>
## 1585 <NA>
## 1586 Male
## 1587 <NA>
## 1588 <NA>
## 1589 <NA>
## 1590 <NA>
## 1591 <NA>
## 1592 <NA>
## 1593 <NA>
## 1594 <NA>
## 1595 Male
## 1596 <NA>
## 1597 Male
## 1598 <NA>
## 1599 Male
## 1600 Female
## 1601 <NA>
## 1602 <NA>
## 1603 <NA>
## 1604 Don't know, never saw R, no selected R
## 1605 <NA>
## 1606 <NA>
## 1607 <NA>
## 1608 <NA>
## 1609 <NA>
## 1610 <NA>
## 1611 <NA>
## 1612 <NA>
## 1613 <NA>
## 1614 <NA>
## 1615 <NA>
## 1616 <NA>
## 1617 <NA>
## 1618 <NA>
## 1619 <NA>
## 1620 <NA>
## 1621 <NA>
## 1622 <NA>
## 1623 Male
## 1624 <NA>
## 1625 <NA>
## 1626 <NA>
## 1627 <NA>
## 1628 <NA>
## 1629 <NA>
## 1630 <NA>
## 1631 <NA>
## 1632 <NA>
## 1633 <NA>
## 1634 <NA>
## 1635 <NA>
## 1636 <NA>
## 1637 <NA>
## 1638 <NA>
## 1639 <NA>
## 1640 <NA>
## 1641 <NA>
## 1642 <NA>
## 1643 <NA>
## 1644 <NA>
## 1645 Female
## 1646 <NA>
## 1647 <NA>
## 1648 <NA>
## 1649 <NA>
## 1650 <NA>
## 1651 <NA>
## 1652 <NA>
## 1653 <NA>
## 1654 <NA>
## 1655 <NA>
## 1656 <NA>
## 1657 <NA>
## 1658 <NA>
## 1659 <NA>
## 1660 Female
## 1661 <NA>
## 1662 Female
## 1663 <NA>
## 1664 <NA>
## 1665 <NA>
## 1666 <NA>
## 1667 <NA>
## 1668 <NA>
## 1669 Female
## 1670 <NA>
## 1671 <NA>
## 1672 <NA>
## 1673 <NA>
## 1674 <NA>
## 1675 <NA>
## 1676 <NA>
## 1677 <NA>
## 1678 <NA>
## 1679 Male
## 1680 <NA>
## 1681 <NA>
## 1682 <NA>
## 1683 Female
## 1684 <NA>
## 1685 <NA>
## 1686 <NA>
## 1687 <NA>
## 1688 <NA>
## 1689 <NA>
## 1690 <NA>
## 1691 <NA>
## 1692 <NA>
## 1693 <NA>
## 1694 <NA>
## 1695 Male
## 1696 <NA>
## 1697 <NA>
## 1698 <NA>
## 1699 <NA>
## 1700 Female
## 1701 <NA>
## 1702 Female
## 1703 <NA>
## 1704 <NA>
## 1705 <NA>
## 1706 <NA>
## 1707 <NA>
## 1708 <NA>
## 1709 Male
## 1710 <NA>
## 1711 <NA>
## 1712 Female
## 1713 <NA>
## 1714 <NA>
## 1715 <NA>
## 1716 <NA>
## 1717 Female
## 1718 <NA>
## 1719 <NA>
## 1720 <NA>
## 1721 <NA>
## 1722 <NA>
## 1723 <NA>
## 1724 <NA>
## 1725 <NA>
## 1726 Male
## 1727 <NA>
## 1728 <NA>
## 1729 <NA>
## 1730 <NA>
## 1731 <NA>
## 1732 <NA>
## 1733 <NA>
## 1734 <NA>
## 1735 <NA>
## 1736 <NA>
## 1737 <NA>
## 1738 <NA>
## 1739 <NA>
## 1740 Don't know, never saw R, no selected R
## 1741 <NA>
## 1742 <NA>
## 1743 <NA>
## 1744 <NA>
## 1745 <NA>
## 1746 <NA>
## 1747 <NA>
## 1748 <NA>
## 1749 <NA>
## 1750 <NA>
## 1751 Male
## 1752 <NA>
## 1753 <NA>
## 1754 <NA>
## 1755 <NA>
## 1756 <NA>
## 1757 <NA>
## 1758 <NA>
## 1759 <NA>
## 1760 Female
## 1761 <NA>
## 1762 <NA>
## 1763 <NA>
## 1764 <NA>
## 1765 Female
## 1766 <NA>
## 1767 <NA>
## 1768 <NA>
## 1769 <NA>
## 1770 <NA>
## 1771 <NA>
## 1772 Male
## 1773 <NA>
## 1774 <NA>
## 1775 <NA>
## 1776 <NA>
## 1777 <NA>
## 1778 <NA>
## 1779 <NA>
## 1780 <NA>
## 1781 <NA>
## 1782 <NA>
## 1783 <NA>
## 1784 <NA>
## 1785 Female
## 1786 <NA>
## 1787 <NA>
## 1788 <NA>
## 1789 Male
## 1790 <NA>
## 1791 <NA>
## 1792 <NA>
## 1793 <NA>
## 1794 <NA>
## 1795 Female
## 1796 <NA>
## 1797 <NA>
## 1798 <NA>
## 1799 Male
## 1800 <NA>
## 1801 <NA>
## 1802 <NA>
## 1803 <NA>
## 1804 <NA>
## 1805 <NA>
## 1806 <NA>
## 1807 <NA>
## 1808 <NA>
## 1809 <NA>
## 1810 <NA>
## 1811 <NA>
## 1812 <NA>
## 1813 <NA>
## 1814 Female
## 1815 <NA>
## 1816 <NA>
## 1817 <NA>
## 1818 <NA>
## 1819 <NA>
## 1820 <NA>
## 1821 <NA>
## 1822 <NA>
## 1823 <NA>
## 1824 <NA>
## 1825 <NA>
## 1826 <NA>
## 1827 <NA>
## 1828 <NA>
## 1829 <NA>
## 1830 Male
## 1831 <NA>
## 1832 <NA>
## 1833 Male
## 1834 <NA>
## 1835 <NA>
## 1836 <NA>
## 1837 <NA>
## 1838 <NA>
## 1839 <NA>
## 1840 <NA>
## 1841 <NA>
## 1842 <NA>
## 1843 <NA>
## 1844 Female
## 1845 <NA>
## 1846 <NA>
## 1847 <NA>
## 1848 <NA>
## 1849 <NA>
## 1850 <NA>
## 1851 <NA>
## 1852 Male
## 1853 <NA>
## 1854 <NA>
## 1855 <NA>
## 1856 <NA>
## 1857 <NA>
## 1858 <NA>
## 1859 <NA>
## 1860 <NA>
## 1861 <NA>
## 1862 Female
## 1863 <NA>
## 1864 Female
## 1865 <NA>
## 1866 <NA>
## 1867 <NA>
## 1868 <NA>
## 1869 <NA>
## 1870 <NA>
## 1871 <NA>
## 1872 <NA>
## 1873 <NA>
## 1874 <NA>
## 1875 <NA>
## 1876 <NA>
## 1877 <NA>
## 1878 <NA>
## 1879 <NA>
## 1880 <NA>
## 1881 <NA>
## 1882 <NA>
## 1883 <NA>
## 1884 <NA>
## 1885 <NA>
## 1886 <NA>
## 1887 <NA>
## 1888 <NA>
## 1889 <NA>
## 1890 <NA>
## 1891 Male
## 1892 <NA>
## 1893 Male
## 1894 Female
## 1895 <NA>
## 1896 <NA>
## 1897 <NA>
## 1898 <NA>
## 1899 <NA>
## 1900 Female
## 1901 <NA>
## 1902 Male
## 1903 <NA>
## 1904 <NA>
## 1905 <NA>
## 1906 <NA>
## 1907 <NA>
## 1908 <NA>
## 1909 <NA>
## 1910 <NA>
## 1911 <NA>
## 1912 <NA>
## 1913 Female
## 1914 <NA>
## 1915 <NA>
## 1916 <NA>
## 1917 <NA>
## 1918 <NA>
## 1919 <NA>
## 1920 <NA>
## 1921 <NA>
## 1922 <NA>
## 1923 <NA>
## 1924 <NA>
## 1925 <NA>
## 1926 <NA>
## 1927 <NA>
## 1928 <NA>
## 1929 <NA>
## 1930 <NA>
## 1931 <NA>
## 1932 <NA>
## 1933 <NA>
## 1934 <NA>
## 1935 <NA>
## 1936 <NA>
## 1937 <NA>
## 1938 <NA>
## 1939 <NA>
## 1940 <NA>
## 1941 Don't know, never saw R, no selected R
## 1942 Male
## 1943 <NA>
## 1944 <NA>
## 1945 <NA>
## 1946 <NA>
## 1947 <NA>
## 1948 <NA>
## 1949 <NA>
## 1950 <NA>
## 1951 <NA>
## 1952 <NA>
## 1953 <NA>
## 1954 Female
## 1955 <NA>
## 1956 <NA>
## 1957 Male
## 1958 <NA>
## 1959 Male
## 1960 <NA>
## 1961 <NA>
## 1962 <NA>
## 1963 Female
## 1964 <NA>
## 1965 <NA>
## 1966 <NA>
## 1967 <NA>
## 1968 <NA>
## 1969 <NA>
## 1970 <NA>
## 1971 <NA>
## 1972 <NA>
## 1973 <NA>
## 1974 <NA>
## 1975 <NA>
## 1976 <NA>
## 1977 <NA>
## 1978 <NA>
## 1979 <NA>
## 1980 <NA>
## 1981 <NA>
## 1982 <NA>
## 1983 <NA>
## 1984 <NA>
## 1985 <NA>
## 1986 <NA>
## 1987 <NA>
## 1988 <NA>
## 1989 <NA>
## 1990 <NA>
## 1991 <NA>
## 1992 <NA>
## 1993 <NA>
## 1994 <NA>
## 1995 Female
## 1996 <NA>
## 1997 Female
## 1998 <NA>
## 1999 <NA>
## 2000 <NA>
## 2001 <NA>
## 2002 <NA>
## 2003 <NA>
## 2004 <NA>
## 2005 Male
## 2006 <NA>
## 2007 <NA>
## 2008 <NA>
## 2009 <NA>
## 2010 <NA>
## 2011 <NA>
## 2012 Don't know, never saw R, no selected R
## 2013 <NA>
## 2014 <NA>
## 2015 <NA>
## 2016 <NA>
## 2017 <NA>
## 2018 <NA>
## 2019 <NA>
## 2020 <NA>
## 2021 <NA>
## 2022 <NA>
## 2023 <NA>
## 2024 <NA>
## 2025 <NA>
## 2026 <NA>
## 2027 <NA>
## 2028 <NA>
## 2029 <NA>
## 2030 <NA>
## 2031 <NA>
## 2032 <NA>
## 2033 <NA>
## 2034 <NA>
## 2035 <NA>
## 2036 <NA>
## 2037 <NA>
## 2038 <NA>
## 2039 <NA>
## 2040 <NA>
## 2041 <NA>
## 2042 Female
## 2043 <NA>
## 2044 <NA>
## 2045 <NA>
## 2046 <NA>
## 2047 <NA>
## 2048 Female
## 2049 <NA>
## 2050 <NA>
## 2051 <NA>
## 2052 <NA>
## 2053 <NA>
## 2054 Female
## 2055 <NA>
## 2056 <NA>
## 2057 <NA>
## 2058 <NA>
## 2059 <NA>
## 2060 <NA>
## 2061 <NA>
## 2062 <NA>
## 2063 <NA>
## 2064 <NA>
## 2065 <NA>
## 2066 <NA>
## 2067 <NA>
## 2068 Don't know, never saw R, no selected R
## 2069 <NA>
## 2070 <NA>
## 2071 <NA>
## 2072 <NA>
## 2073 <NA>
## 2074 <NA>
## 2075 <NA>
## 2076 <NA>
## 2077 Male
## 2078 <NA>
## 2079 <NA>
## 2080 <NA>
## 2081 <NA>
## 2082 <NA>
## 2083 Female
## 2084 <NA>
## 2085 <NA>
## 2086 <NA>
## 2087 Female
## 2088 <NA>
## 2089 <NA>
## 2090 <NA>
## 2091 <NA>
## 2092 <NA>
## 2093 <NA>
## 2094 <NA>
## 2095 <NA>
## 2096 <NA>
## 2097 Don't know, never saw R, no selected R
## 2098 <NA>
## 2099 <NA>
## 2100 <NA>
## 2101 <NA>
## 2102 <NA>
## 2103 <NA>
## 2104 Male
## 2105 <NA>
## 2106 <NA>
## 2107 <NA>
## 2108 <NA>
## 2109 <NA>
## 2110 <NA>
## 2111 <NA>
## 2112 <NA>
## 2113 <NA>
## 2114 <NA>
## 2115 <NA>
## 2116 <NA>
## 2117 <NA>
## 2118 <NA>
## 2119 <NA>
## 2120 <NA>
## 2121 <NA>
## 2122 <NA>
## 2123 Female
## 2124 <NA>
## 2125 <NA>
## 2126 <NA>
## 2127 <NA>
## 2128 <NA>
## 2129 <NA>
## 2130 <NA>
## 2131 <NA>
## 2132 <NA>
## 2133 <NA>
## 2134 <NA>
## 2135 <NA>
## 2136 <NA>
## 2137 <NA>
## 2138 <NA>
## 2139 <NA>
## 2140 <NA>
## 2141 <NA>
## 2142 <NA>
## 2143 <NA>
## 2144 <NA>
## 2145 <NA>
## 2146 <NA>
## 2147 Male
## 2148 Male
## 2149 <NA>
## 2150 <NA>
## 2151 <NA>
## 2152 <NA>
## 2153 <NA>
## 2154 <NA>
## 2155 <NA>
## 2156 Male
## 2157 <NA>
## 2158 Female
## 2159 <NA>
## 2160 Don't know, never saw R, no selected R
## 2161 <NA>
## 2162 <NA>
## 2163 <NA>
## 2164 <NA>
## 2165 <NA>
## 2166 <NA>
## 2167 Male
## 2168 <NA>
## 2169 <NA>
## 2170 <NA>
## 2171 <NA>
## 2172 <NA>
## 2173 <NA>
## 2174 <NA>
## 2175 <NA>
## 2176 <NA>
## 2177 <NA>
## 2178 <NA>
## 2179 <NA>
## 2180 <NA>
## 2181 Male
## 2182 <NA>
## 2183 <NA>
## 2184 <NA>
## 2185 <NA>
## 2186 <NA>
## 2187 <NA>
## 2188 Don't know, never saw R, no selected R
## 2189 <NA>
## 2190 <NA>
## 2191 <NA>
## 2192 <NA>
## 2193 <NA>
## 2194 <NA>
## 2195 <NA>
## 2196 <NA>
## 2197 <NA>
## 2198 <NA>
## 2199 <NA>
## 2200 <NA>
## 2201 <NA>
## 2202 <NA>
## 2203 <NA>
## 2204 <NA>
## 2205 <NA>
## 2206 <NA>
## 2207 Female
## 2208 <NA>
## 2209 <NA>
## 2210 <NA>
## 2211 <NA>
## 2212 <NA>
## 2213 <NA>
## 2214 <NA>
## 2215 <NA>
## 2216 <NA>
## 2217 <NA>
## 2218 <NA>
## 2219 <NA>
## 2220 <NA>
## 2221 <NA>
## 2222 <NA>
## 2223 <NA>
## 2224 Female
## 2225 <NA>
## 2226 Female
## 2227 <NA>
## 2228 <NA>
## 2229 <NA>
## 2230 <NA>
## 2231 Female
## 2232 <NA>
## 2233 <NA>
## 2234 <NA>
## 2235 <NA>
## 2236 <NA>
## 2237 <NA>
## 2238 <NA>
## 2239 <NA>
## 2240 <NA>
## 2241 <NA>
## 2242 <NA>
## 2243 Female
## 2244 <NA>
## 2245 <NA>
## 2246 <NA>
## 2247 <NA>
## 2248 <NA>
## 2249 <NA>
## 2250 <NA>
## 2251 <NA>
## 2252 <NA>
## 2253 <NA>
## 2254 <NA>
## 2255 <NA>
## 2256 <NA>
## 2257 <NA>
## 2258 <NA>
## 2259 <NA>
## 2260 <NA>
## 2261 <NA>
## 2262 <NA>
## 2263 <NA>
## 2264 <NA>
## 2265 <NA>
## 2266 <NA>
## 2267 <NA>
## 2268 <NA>
## 2269 <NA>
## 2270 <NA>
## 2271 <NA>
## 2272 Female
## 2273 Male
## 2274 <NA>
## 2275 Female
## 2276 Female
## 2277 Female
## 2278 Male
## 2279 <NA>
## 2280 <NA>
## 2281 Male
## 2282 Male
## 2283 <NA>
## 2284 <NA>
## 2285 <NA>
## 2286 Female
## 2287 <NA>
## 2288 <NA>
## 2289 Female
## 2290 Male
## 2291 <NA>
## 2292 Female
## 2293 Female
## 2294 <NA>
## 2295 Female
## 2296 <NA>
## 2297 Female
## 2298 <NA>
## 2299 <NA>
## 2300 <NA>
## 2301 <NA>
## 2302 <NA>
## 2303 <NA>
## 2304 <NA>
## 2305 Male
## 2306 <NA>
## 2307 <NA>
## 2308 Female
## 2309 Female
## 2310 <NA>
## 2311 <NA>
## 2312 <NA>
## 2313 <NA>
## 2314 Male
## 2315 Male
## 2316 Female
## 2317 Male
## 2318 Female
## 2319 <NA>
## 2320 <NA>
## 2321 Female
## 2322 Male
## 2323 Female
## 2324 <NA>
## 2325 Male
## 2326 <NA>
## 2327 <NA>
## 2328 <NA>
## 2329 Female
## 2330 <NA>
## 2331 Male
## 2332 <NA>
## 2333 Female
## 2334 Female
## 2335 Male
## 2336 Female
## 2337 Don't know, never saw R, no selected R
## 2338 Female
## 2339 <NA>
## 2340 <NA>
## 2341 <NA>
## 2342 Female
## 2343 Female
## 2344 <NA>
## 2345 <NA>
## 2346 <NA>
## 2347 Male
## 2348 Don't know, never saw R, no selected R
## 2349 <NA>
## 2350 Female
## 2351 Female
## 2352 <NA>
## 2353 <NA>
## 2354 Male
## 2355 <NA>
## 2356 Male
## 2357 Male
## 2358 <NA>
## 2359 <NA>
## 2360 <NA>
## 2361 <NA>
## 2362 Female
## 2363 Female
## 2364 Female
## 2365 <NA>
## 2366 <NA>
## 2367 Don't know, never saw R, no selected R
## 2368 Female
## 2369 <NA>
## 2370 Female
## 2371 Female
## 2372 Female
## 2373 Male
## 2374 Female
## 2375 <NA>
## 2376 Female
## 2377 Female
## 2378 Female
## 2379 <NA>
## 2380 Don't know, never saw R, no selected R
## 2381 Male
## 2382 <NA>
## 2383 <NA>
## 2384 Male
## 2385 Female
## 2386 <NA>
## 2387 <NA>
## 2388 Male
## 2389 <NA>
## 2390 <NA>
## 2391 <NA>
## 2392 Male
## 2393 <NA>
## 2394 <NA>
## 2395 Female
## 2396 Female
## 2397 Male
## 2398 <NA>
## 2399 <NA>
## 2400 Female
## 2401 Female
## 2402 Female
## 2403 Female
## 2404 Male
## 2405 <NA>
## 2406 Female
## 2407 Male
## 2408 <NA>
## 2409 Female
## 2410 <NA>
## 2411 Male
## 2412 Female
## 2413 <NA>
## 2414 Don't know, never saw R, no selected R
## 2415 Male
## 2416 <NA>
## 2417 Male
## 2418 Female
## 2419 Male
## 2420 Female
## 2421 <NA>
## 2422 Male
## 2423 <NA>
## 2424 <NA>
## 2425 Male
## 2426 Female
## 2427 <NA>
## 2428 Male
## 2429 Male
## 2430 <NA>
## 2431 Female
## 2432 Female
## 2433 Female
## 2434 Female
## 2435 <NA>
## 2436 <NA>
## 2437 <NA>
## 2438 Female
## 2439 Male
## 2440 Female
## 2441 <NA>
## 2442 <NA>
## 2443 Male
## 2444 <NA>
## 2445 <NA>
## 2446 Male
## 2447 Female
## 2448 Male
## 2449 Male
## 2450 <NA>
## 2451 Female
## 2452 <NA>
## 2453 Female
## 2454 <NA>
## 2455 <NA>
## 2456 Male
## 2457 <NA>
## 2458 <NA>
## 2459 <NA>
## 2460 Female
## 2461 Female
## 2462 <NA>
## 2463 Male
## 2464 Female
## 2465 <NA>
## 2466 <NA>
## 2467 <NA>
## 2468 Male
## 2469 <NA>
## 2470 <NA>
## 2471 Female
## 2472 <NA>
## 2473 Male
## 2474 Female
## 2475 <NA>
## 2476 <NA>
## 2477 Female
## 2478 Male
## 2479 <NA>
## 2480 Female
## 2481 Male
## 2482 <NA>
## 2483 <NA>
## 2484 Female
## 2485 <NA>
## 2486 Female
## 2487 Female
## 2488 Male
## 2489 Don't know, never saw R, no selected R
## 2490 <NA>
## 2491 <NA>
## 2492 <NA>
## 2493 <NA>
## 2494 Male
## 2495 Male
## 2496 <NA>
## 2497 Female
## 2498 Female
## 2499 <NA>
## 2500 <NA>
## 2501 Female
## 2502 Male
## 2503 <NA>
## 2504 <NA>
## 2505 Male
## 2506 <NA>
## 2507 <NA>
## 2508 <NA>
## 2509 Male
## 2510 Male
## 2511 Male
## 2512 <NA>
## 2513 <NA>
## 2514 <NA>
## 2515 <NA>
## 2516 <NA>
## 2517 Female
## 2518 <NA>
## 2519 <NA>
## 2520 <NA>
## 2521 <NA>
## 2522 Female
## 2523 Female
## 2524 <NA>
## 2525 <NA>
## 2526 <NA>
## 2527 <NA>
## 2528 <NA>
## 2529 <NA>
## 2530 Male
## 2531 <NA>
## 2532 <NA>
## 2533 <NA>
## 2534 <NA>
## 2535 Male
## 2536 Female
## 2537 Male
## 2538 <NA>
## 2539 <NA>
## 2540 <NA>
## 2541 Male
## 2542 <NA>
## 2543 <NA>
## 2544 <NA>
## 2545 Male
## 2546 <NA>
## 2547 <NA>
## 2548 Female
## 2549 Male
## 2550 Male
## 2551 <NA>
## 2552 Male
## 2553 <NA>
## 2554 Male
## 2555 Female
## 2556 <NA>
## 2557 Male
## 2558 Male
## 2559 Male
## 2560 <NA>
## 2561 Male
## 2562 Female
## 2563 Female
## 2564 <NA>
## 2565 Male
## 2566 <NA>
## 2567 Male
## 2568 Male
## 2569 Don't know, never saw R, no selected R
## 2570 <NA>
## 2571 <NA>
## 2572 Male
## 2573 Male
## 2574 <NA>
## 2575 Female
## 2576 <NA>
## 2577 <NA>
## 2578 Male
## 2579 <NA>
## 2580 Female
## 2581 Male
## 2582 Female
## 2583 <NA>
## 2584 Female
## 2585 <NA>
## 2586 <NA>
## 2587 <NA>
## 2588 <NA>
## 2589 Female
## 2590 <NA>
## 2591 Male
## 2592 <NA>
## 2593 <NA>
## 2594 Female
## 2595 <NA>
## 2596 <NA>
## 2597 <NA>
## 2598 <NA>
## 2599 Female
## 2600 Female
## 2601 <NA>
## 2602 Male
## 2603 Male
## 2604 Female
## 2605 Male
## 2606 <NA>
## 2607 <NA>
## 2608 Male
## 2609 <NA>
## 2610 Female
## 2611 <NA>
## 2612 <NA>
## 2613 Female
## 2614 <NA>
## 2615 <NA>
## 2616 Male
## 2617 Male
## 2618 <NA>
## 2619 <NA>
## 2620 Female
## 2621 <NA>
## 2622 Male
## 2623 Female
## 2624 Male
## 2625 Female
## 2626 <NA>
## 2627 <NA>
## 2628 <NA>
## 2629 Male
## 2630 <NA>
## 2631 Male
## 2632 <NA>
## 2633 Female
## 2634 <NA>
## 2635 Female
## 2636 Female
## 2637 <NA>
## 2638 Male
## 2639 <NA>
## 2640 <NA>
## 2641 <NA>
## 2642 <NA>
## 2643 Male
## 2644 <NA>
## 2645 <NA>
## 2646 <NA>
## 2647 <NA>
## 2648 Female
## 2649 Female
## 2650 <NA>
## 2651 Female
## 2652 <NA>
## 2653 Male
## 2654 <NA>
## 2655 <NA>
## 2656 Male
## 2657 <NA>
## 2658 <NA>
## 2659 <NA>
## 2660 <NA>
## 2661 <NA>
## 2662 <NA>
## 2663 Female
## 2664 <NA>
## 2665 Female
## 2666 Female
## 2667 Male
## 2668 <NA>
## 2669 <NA>
## 2670 <NA>
## 2671 Male
## 2672 <NA>
## 2673 <NA>
## 2674 Male
## 2675 <NA>
## 2676 Female
## 2677 Female
## 2678 <NA>
## 2679 Female
## 2680 Don't know, never saw R, no selected R
## 2681 Female
## 2682 Female
## 2683 Female
## 2684 Female
## 2685 <NA>
## 2686 Female
## 2687 <NA>
## 2688 <NA>
## 2689 <NA>
## 2690 Female
## 2691 <NA>
## 2692 <NA>
## 2693 <NA>
## 2694 Male
## 2695 <NA>
## 2696 <NA>
## 2697 Male
## 2698 <NA>
## 2699 <NA>
## 2700 Male
## 2701 <NA>
## 2702 <NA>
## 2703 Female
## 2704 <NA>
## 2705 Female
## 2706 Male
## 2707 <NA>
## 2708 <NA>
## 2709 Male
## 2710 Male
## 2711 <NA>
## 2712 Female
## 2713 Female
## 2714 Female
## 2715 Female
## 2716 Male
## 2717 Female
## 2718 <NA>
## 2719 Female
## 2720 Female
## 2721 <NA>
## 2722 Female
## 2723 <NA>
## 2724 <NA>
## 2725 Male
## 2726 Male
## 2727 <NA>
## 2728 Male
## 2729 <NA>
## 2730 <NA>
## 2731 <NA>
## 2732 Female
## 2733 Female
## 2734 Female
## 2735 <NA>
## 2736 Female
## 2737 <NA>
## 2738 Female
## 2739 Male
## 2740 <NA>
## 2741 <NA>
## 2742 <NA>
## 2743 Female
## 2744 Male
## 2745 Male
## 2746 <NA>
## 2747 <NA>
## 2748 Female
## 2749 Male
## 2750 Female
## 2751 Male
## 2752 Male
## 2753 Male
## 2754 <NA>
## 2755 <NA>
## 2756 Male
## 2757 <NA>
## 2758 Female
## 2759 Male
## 2760 Female
## 2761 <NA>
## 2762 Female
## 2763 Male
## 2764 <NA>
## 2765 Female
## 2766 Don't know, never saw R, no selected R
## 2767 <NA>
## 2768 Male
## 2769 <NA>
## 2770 <NA>
## 2771 <NA>
## 2772 Male
## 2773 Male
## 2774 <NA>
## 2775 <NA>
## 2776 <NA>
## 2777 <NA>
## 2778 Female
## 2779 <NA>
## 2780 <NA>
## 2781 Male
## 2782 Female
## 2783 <NA>
## 2784 <NA>
## 2785 Female
## 2786 <NA>
## 2787 <NA>
## 2788 Male
## 2789 <NA>
## 2790 <NA>
## 2791 Male
## 2792 Female
## 2793 Female
## 2794 Male
## 2795 Female
## 2796 <NA>
## 2797 Female
## 2798 Female
## 2799 Female
## 2800 Female
## 2801 <NA>
## 2802 <NA>
## 2803 Female
## 2804 <NA>
## 2805 <NA>
## 2806 <NA>
## 2807 <NA>
## 2808 Male
## 2809 Female
## 2810 Female
## 2811 <NA>
## 2812 Female
## 2813 <NA>
## 2814 Female
## 2815 Male
## 2816 <NA>
## 2817 Female
## 2818 <NA>
## 2819 <NA>
## 2820 <NA>
## 2821 <NA>
## 2822 <NA>
## 2823 <NA>
## 2824 <NA>
## 2825 Female
## 2826 Male
## 2827 Male
## 2828 <NA>
## 2829 <NA>
## 2830 <NA>
## 2831 <NA>
## 2832 Female
## 2833 <NA>
## 2834 Female
## 2835 <NA>
## 2836 Male
## 2837 Male
## 2838 Female
## 2839 Female
## 2840 <NA>
## 2841 Male
## 2842 Female
## 2843 <NA>
## 2844 Male
## 2845 Female
## 2846 Female
## 2847 Male
## 2848 <NA>
## 2849 <NA>
## 2850 Female
## 2851 <NA>
## 2852 Female
## 2853 Male
## 2854 <NA>
## 2855 <NA>
## 2856 <NA>
## 2857 <NA>
## 2858 <NA>
## 2859 Female
## 2860 <NA>
## 2861 Male
## 2862 <NA>
## 2863 Female
## 2864 <NA>
## 2865 <NA>
## 2866 <NA>
## 2867 Male
## 2868 Male
## 2869 <NA>
## 2870 <NA>
## 2871 <NA>
## 2872 <NA>
## 2873 Female
## 2874 <NA>
## 2875 Female
## 2876 Female
## 2877 Female
## 2878 <NA>
## 2879 Male
## 2880 Male
## 2881 Female
## 2882 Female
## 2883 Female
## 2884 Male
## 2885 <NA>
## 2886 Male
## 2887 <NA>
## 2888 Female
## 2889 <NA>
## 2890 Male
## 2891 Female
## 2892 <NA>
## 2893 Male
## 2894 Female
## 2895 <NA>
## 2896 Female
## 2897 <NA>
## 2898 Male
## 2899 <NA>
## 2900 Female
## 2901 <NA>
## 2902 Female
## 2903 Male
## 2904 Female
## 2905 Male
## 2906 <NA>
## 2907 <NA>
## 2908 <NA>
## 2909 Female
## 2910 Male
## 2911 <NA>
## 2912 Male
## 2913 <NA>
## 2914 <NA>
## 2915 Male
## 2916 <NA>
## 2917 <NA>
## 2918 Female
## 2919 <NA>
## 2920 Male
## 2921 Male
## 2922 Male
## 2923 <NA>
## 2924 <NA>
## 2925 <NA>
## 2926 Male
## 2927 <NA>
## 2928 Male
## 2929 Female
## 2930 <NA>
## 2931 <NA>
## 2932 <NA>
## 2933 <NA>
## 2934 <NA>
## 2935 Female
## 2936 <NA>
## 2937 Male
## 2938 <NA>
## 2939 <NA>
## 2940 <NA>
## 2941 Male
## 2942 Male
## 2943 <NA>
## 2944 <NA>
## 2945 <NA>
## 2946 Male
## 2947 Female
## 2948 Male
## 2949 <NA>
## 2950 <NA>
## 2951 Male
## 2952 <NA>
## 2953 <NA>
## 2954 Female
## 2955 Female
## 2956 <NA>
## 2957 Female
## 2958 Female
## 2959 <NA>
## 2960 <NA>
## 2961 Female
## 2962 Male
## 2963 <NA>
## 2964 <NA>
## 2965 Male
## 2966 <NA>
## 2967 <NA>
## 2968 Female
## 2969 Female
## 2970 Female
## 2971 Male
## 2972 <NA>
## 2973 <NA>
## 2974 Female
## 2975 <NA>
## 2976 Male
## 2977 Female
## 2978 <NA>
## 2979 <NA>
## 2980 <NA>
## 2981 <NA>
## 2982 <NA>
## 2983 <NA>
## 2984 <NA>
## 2985 <NA>
## 2986 <NA>
## 2987 <NA>
## 2988 <NA>
## 2989 <NA>
## 2990 Male
## 2991 Female
## 2992 Female
## 2993 Male
## 2994 Male
## 2995 Male
## 2996 <NA>
## 2997 <NA>
## 2998 Male
## 2999 <NA>
## 3000 <NA>
## 3001 Female
## 3002 <NA>
## 3003 Male
## 3004 <NA>
## 3005 Male
## 3006 <NA>
## 3007 <NA>
## 3008 Male
## 3009 Male
## 3010 Male
## 3011 Female
## 3012 <NA>
## 3013 Female
## 3014 Male
## 3015 <NA>
## 3016 <NA>
## 3017 <NA>
## 3018 Male
## 3019 <NA>
## 3020 <NA>
## 3021 Male
## 3022 Female
## 3023 <NA>
## 3024 Male
## 3025 <NA>
## 3026 <NA>
## 3027 Male
## 3028 Male
## 3029 <NA>
## 3030 Female
## 3031 Female
## 3032 Female
## 3033 Female
## 3034 Female
## 3035 Male
## 3036 <NA>
## 3037 Male
## 3038 <NA>
## 3039 <NA>
## 3040 Female
## 3041 Female
## 3042 Male
## 3043 Female
## 3044 Male
## 3045 Female
## 3046 Male
## 3047 <NA>
## 3048 <NA>
## 3049 Male
## 3050 <NA>
## 3051 <NA>
## 3052 <NA>
## 3053 Male
## 3054 <NA>
## 3055 Female
## 3056 Male
## 3057 <NA>
## 3058 <NA>
## 3059 Male
## 3060 <NA>
## 3061 <NA>
## 3062 Don't know, never saw R, no selected R
## 3063 Male
## 3064 Female
## 3065 Female
## 3066 Female
## 3067 <NA>
## 3068 Don't know, never saw R, no selected R
## 3069 Female
## 3070 Female
## 3071 <NA>
## 3072 <NA>
## 3073 Female
## 3074 Female
## 3075 Female
## 3076 <NA>
## 3077 <NA>
## 3078 Female
## 3079 <NA>
## 3080 Female
## 3081 Male
## 3082 Male
## 3083 Female
## 3084 <NA>
## 3085 <NA>
## 3086 <NA>
## 3087 <NA>
## 3088 Female
## 3089 Female
## 3090 Female
## 3091 Don't know, never saw R, no selected R
## 3092 Male
## 3093 <NA>
## 3094 Female
## 3095 <NA>
## 3096 <NA>
## 3097 Female
## 3098 <NA>
## 3099 Female
## 3100 Female
## 3101 <NA>
## 3102 Female
## 3103 Male
## 3104 <NA>
## 3105 Male
## 3106 Don't know, never saw R, no selected R
## 3107 Male
## 3108 Female
## 3109 Female
## 3110 Female
## 3111 Male
## 3112 <NA>
## 3113 Male
## 3114 <NA>
## 3115 Female
## 3116 <NA>
## 3117 <NA>
## 3118 <NA>
## 3119 <NA>
## 3120 Male
## 3121 Male
## 3122 Male
## 3123 Female
## 3124 <NA>
## 3125 Male
## 3126 Male
## 3127 <NA>
## 3128 <NA>
## 3129 Female
## 3130 <NA>
## 3131 <NA>
## 3132 <NA>
## 3133 <NA>
## 3134 Male
## 3135 Female
## 3136 Female
## 3137 <NA>
## 3138 <NA>
## 3139 Female
## 3140 <NA>
## 3141 Male
## 3142 Don't know, never saw R, no selected R
## 3143 <NA>
## 3144 Female
## 3145 <NA>
## 3146 <NA>
## 3147 Female
## 3148 Male
## 3149 <NA>
## 3150 Female
## 3151 <NA>
## 3152 <NA>
## 3153 <NA>
## 3154 <NA>
## 3155 <NA>
## 3156 <NA>
## 3157 <NA>
## 3158 Female
## 3159 <NA>
## 3160 Male
## 3161 <NA>
## 3162 <NA>
## 3163 <NA>
## 3164 <NA>
## 3165 <NA>
## 3166 Female
## 3167 Female
## 3168 Male
## 3169 Male
## 3170 Male
## 3171 Male
## 3172 Female
## 3173 <NA>
## 3174 Male
## 3175 <NA>
## 3176 Female
## 3177 <NA>
## 3178 Male
## 3179 Female
## 3180 <NA>
## 3181 Female
## 3182 Male
## 3183 Male
## 3184 <NA>
## 3185 Female
## 3186 Female
## 3187 <NA>
## 3188 <NA>
## 3189 Female
## 3190 <NA>
## 3191 Male
## 3192 Male
## 3193 Female
## 3194 Male
## 3195 <NA>
## 3196 <NA>
## 3197 Male
## 3198 <NA>
## 3199 Male
## 3200 Female
## 3201 <NA>
## 3202 <NA>
## 3203 Female
## 3204 Female
## 3205 <NA>
## 3206 Female
## 3207 Male
## 3208 Male
## 3209 <NA>
## 3210 Don't know, never saw R, no selected R
## 3211 <NA>
## 3212 <NA>
## 3213 <NA>
## 3214 Female
## 3215 <NA>
## 3216 Male
## 3217 <NA>
## 3218 <NA>
## 3219 <NA>
## 3220 <NA>
## 3221 <NA>
## 3222 <NA>
## 3223 Male
## 3224 <NA>
## 3225 Male
## 3226 <NA>
## 3227 <NA>
## 3228 <NA>
## 3229 Don't know, never saw R, no selected R
## 3230 <NA>
## 3231 Male
## 3232 Female
## 3233 Male
## 3234 <NA>
## 3235 Female
## 3236 Female
## 3237 Male
## 3238 <NA>
## 3239 Male
## 3240 Male
## 3241 Female
## 3242 <NA>
## 3243 Female
## 3244 <NA>
## 3245 Male
## 3246 <NA>
## 3247 Male
## 3248 <NA>
## 3249 Female
## 3250 <NA>
## 3251 <NA>
## 3252 Female
## 3253 Male
## 3254 <NA>
## 3255 Male
## 3256 Female
## 3257 <NA>
## 3258 Male
## 3259 <NA>
## 3260 <NA>
## 3261 Female
## 3262 Female
## 3263 <NA>
## 3264 <NA>
## 3265 <NA>
## 3266 Male
## 3267 <NA>
## 3268 <NA>
## 3269 Female
## 3270 <NA>
## 3271 <NA>
## 3272 Female
## 3273 <NA>
## 3274 Male
## 3275 <NA>
## 3276 Female
## 3277 Female
## 3278 <NA>
## 3279 <NA>
## 3280 Female
## 3281 <NA>
## 3282 Male
## 3283 Male
## 3284 <NA>
## 3285 Female
## 3286 Female
## 3287 <NA>
## 3288 <NA>
## 3289 Female
## 3290 <NA>
## 3291 Female
## 3292 <NA>
## 3293 Female
## 3294 <NA>
## 3295 Male
## 3296 <NA>
## 3297 Female
## 3298 Female
## 3299 <NA>
## 3300 <NA>
## 3301 <NA>
## 3302 <NA>
## 3303 Male
## 3304 Don't know, never saw R, no selected R
## 3305 Don't know, never saw R, no selected R
## 3306 <NA>
## 3307 <NA>
## 3308 <NA>
## 3309 Male
## 3310 <NA>
## 3311 <NA>
## 3312 Male
## 3313 <NA>
## 3314 Male
## 3315 <NA>
## 3316 <NA>
## 3317 Male
## 3318 Female
## 3319 Female
## 3320 Female
## 3321 <NA>
## 3322 Female
## 3323 Don't know, never saw R, no selected R
## 3324 Female
## 3325 <NA>
## 3326 Female
## 3327 Female
## 3328 <NA>
## 3329 <NA>
## 3330 <NA>
## 3331 Female
## 3332 Male
## 3333 <NA>
## 3334 Female
## 3335 Female
## 3336 Female
## 3337 Male
## 3338 <NA>
## 3339 <NA>
## 3340 <NA>
## 3341 <NA>
## 3342 Male
## 3343 <NA>
## 3344 Female
## 3345 Female
## 3346 <NA>
## 3347 <NA>
## 3348 Female
## 3349 <NA>
## 3350 Male
## 3351 Male
## 3352 <NA>
## 3353 Male
## 3354 <NA>
## 3355 Male
## 3356 Male
## 3357 Male
## 3358 <NA>
## 3359 <NA>
## 3360 <NA>
## 3361 Female
## 3362 <NA>
## 3363 Male
## 3364 <NA>
## 3365 Male
## 3366 <NA>
## 3367 <NA>
## 3368 Female
## 3369 <NA>
## 3370 <NA>
## 3371 Female
## 3372 <NA>
## 3373 Don't know, never saw R, no selected R
## 3374 <NA>
## 3375 Male
## 3376 <NA>
## 3377 <NA>
## 3378 Female
## 3379 Female
## 3380 <NA>
## 3381 Female
## 3382 Male
## 3383 <NA>
## 3384 <NA>
## 3385 Female
## 3386 <NA>
## 3387 Female
## 3388 <NA>
## 3389 Female
## 3390 <NA>
## 3391 Male
## 3392 <NA>
## 3393 <NA>
## 3394 Male
## 3395 Male
## 3396 <NA>
## 3397 Female
## 3398 Female
## 3399 Female
## 3400 Male
## 3401 <NA>
## 3402 Male
## 3403 Female
## 3404 Female
## 3405 Female
## 3406 Female
## 3407 <NA>
## 3408 Male
## 3409 Male
## 3410 Female
## 3411 <NA>
## 3412 <NA>
## 3413 Male
## 3414 <NA>
## 3415 Male
## 3416 <NA>
## 3417 Female
## 3418 <NA>
## 3419 <NA>
## 3420 <NA>
## 3421 <NA>
## 3422 <NA>
## 3423 Female
## 3424 <NA>
## 3425 Male
## 3426 Female
## 3427 Female
## 3428 Male
## 3429 Male
## 3430 <NA>
## 3431 Female
## 3432 <NA>
## 3433 <NA>
## 3434 <NA>
## 3435 Female
## 3436 Female
## 3437 Female
## 3438 Male
## 3439 <NA>
## 3440 <NA>
## 3441 <NA>
## 3442 <NA>
## 3443 <NA>
## 3444 <NA>
## 3445 <NA>
## 3446 <NA>
## 3447 <NA>
## 3448 Female
## 3449 <NA>
## 3450 Female
## 3451 Female
## 3452 Male
## 3453 <NA>
## 3454 <NA>
## 3455 Female
## 3456 Male
## 3457 <NA>
## 3458 <NA>
## 3459 <NA>
## 3460 Female
## 3461 Female
## 3462 Female
## 3463 <NA>
## 3464 Female
## 3465 <NA>
## 3466 Female
## 3467 Male
## 3468 Female
## 3469 <NA>
## 3470 <NA>
## 3471 <NA>
## 3472 <NA>
## 3473 Male
## 3474 Female
## 3475 Female
## 3476 <NA>
## 3477 <NA>
## 3478 <NA>
## 3479 <NA>
## 3480 Female
## 3481 <NA>
## 3482 <NA>
## 3483 <NA>
## 3484 <NA>
## 3485 Male
## 3486 Female
## 3487 <NA>
## 3488 <NA>
## 3489 <NA>
## 3490 <NA>
## 3491 <NA>
## 3492 <NA>
## 3493 Male
## 3494 Male
## 3495 <NA>
## 3496 <NA>
## 3497 <NA>
## 3498 Female
## 3499 <NA>
## 3500 <NA>
## 3501 <NA>
## 3502 Female
## 3503 <NA>
## 3504 Male
## 3505 <NA>
## 3506 Female
## 3507 <NA>
## 3508 <NA>
## 3509 <NA>
## 3510 <NA>
## 3511 Female
## 3512 <NA>
## 3513 Male
## 3514 Male
## 3515 Female
## 3516 <NA>
## 3517 <NA>
## 3518 <NA>
## 3519 <NA>
## 3520 <NA>
## 3521 <NA>
## 3522 <NA>
## 3523 <NA>
## 3524 Female
## 3525 Male
## 3526 <NA>
## 3527 <NA>
## 3528 Female
## 3529 Female
## 3530 Female
## 3531 Female
## 3532 <NA>
## 3533 <NA>
## 3534 Male
## 3535 <NA>
## 3536 Male
## 3537 <NA>
## 3538 <NA>
## 3539 Female
## 3540 <NA>
## 3541 Female
## 3542 <NA>
## 3543 <NA>
## 3544 Female
## 3545 Female
## 3546 Female
## 3547 <NA>
## 3548 <NA>
## 3549 <NA>
## 3550 Female
## 3551 Male
## 3552 Male
## 3553 <NA>
## 3554 Female
## 3555 <NA>
## 3556 <NA>
## 3557 Male
## 3558 <NA>
## 3559 <NA>
## 3560 <NA>
## 3561 <NA>
## 3562 Male
## 3563 Female
## 3564 <NA>
## 3565 Female
## 3566 Male
## 3567 Female
## 3568 <NA>
## 3569 Male
## 3570 <NA>
## 3571 <NA>
## 3572 <NA>
## 3573 Female
## 3574 Female
## 3575 <NA>
## 3576 Female
## 3577 Female
## 3578 Female
## 3579 Male
## 3580 <NA>
## 3581 <NA>
## 3582 <NA>
## 3583 <NA>
## 3584 Male
## 3585 Female
## 3586 <NA>
## 3587 Female
## 3588 Male
## 3589 Male
## 3590 <NA>
## 3591 Male
## 3592 Male
## 3593 Female
## 3594 <NA>
## 3595 Female
## 3596 Female
## 3597 Female
## 3598 <NA>
## 3599 <NA>
## 3600 Female
## 3601 Female
## 3602 Male
## 3603 Male
## 3604 <NA>
## 3605 Male
## 3606 Male
## 3607 Male
## 3608 Don't know, never saw R, no selected R
## 3609 Female
## 3610 Female
## 3611 Male
## 3612 Male
## 3613 <NA>
## 3614 Male
## 3615 <NA>
## 3616 Female
## 3617 Female
## 3618 <NA>
## 3619 Female
## 3620 <NA>
## 3621 Don't know, never saw R, no selected R
## 3622 Female
## 3623 Male
## 3624 Female
## 3625 <NA>
## 3626 <NA>
## 3627 Male
## 3628 <NA>
## 3629 Male
## 3630 Female
## 3631 Don't know, never saw R, no selected R
## 3632 Don't know, never saw R, no selected R
## 3633 Male
## 3634 Female
## 3635 <NA>
## 3636 <NA>
## 3637 <NA>
## 3638 <NA>
## 3639 Female
## 3640 <NA>
## 3641 <NA>
## 3642 <NA>
## 3643 <NA>
## 3644 Female
## 3645 <NA>
## 3646 Female
## 3647 <NA>
## 3648 Female
## 3649 <NA>
## 3650 Male
## 3651 <NA>
## 3652 Female
## 3653 Male
## 3654 Male
## 3655 Male
## 3656 <NA>
## 3657 <NA>
## 3658 <NA>
## 3659 Female
## 3660 <NA>
## 3661 Female
## 3662 Male
## 3663 Male
## 3664 Male
## 3665 <NA>
## 3666 Male
## 3667 <NA>
## 3668 Male
## 3669 Male
## 3670 <NA>
## 3671 Male
## 3672 <NA>
## 3673 Male
## 3674 <NA>
## 3675 Male
## 3676 Female
## 3677 <NA>
## 3678 Male
## 3679 Female
## 3680 Female
## 3681 <NA>
## 3682 <NA>
## 3683 <NA>
## 3684 <NA>
## 3685 <NA>
## 3686 <NA>
## 3687 <NA>
## 3688 Male
## 3689 <NA>
## 3690 <NA>
## 3691 <NA>
## 3692 <NA>
## 3693 Female
## 3694 <NA>
## 3695 <NA>
## 3696 Female
## 3697 Male
## 3698 Female
## 3699 <NA>
## 3700 <NA>
## 3701 <NA>
## 3702 <NA>
## 3703 Female
## 3704 Female
## 3705 Female
## 3706 <NA>
## 3707 <NA>
## 3708 Male
## 3709 Male
## 3710 <NA>
## 3711 Female
## 3712 <NA>
## 3713 <NA>
## 3714 Male
## 3715 <NA>
## 3716 <NA>
## 3717 <NA>
## 3718 Male
## 3719 Male
## 3720 <NA>
## 3721 <NA>
## 3722 <NA>
## 3723 Don't know, never saw R, no selected R
## 3724 Female
## 3725 Male
## 3726 Female
## 3727 <NA>
## 3728 <NA>
## 3729 <NA>
## 3730 Male
## 3731 <NA>
## 3732 Female
## 3733 <NA>
## 3734 Female
## 3735 <NA>
## 3736 Female
## 3737 Female
## 3738 Male
## 3739 Don't know, never saw R, no selected R
## 3740 Don't know, never saw R, no selected R
## 3741 <NA>
## 3742 Female
## 3743 <NA>
## 3744 <NA>
## 3745 Female
## 3746 <NA>
## 3747 Male
## 3748 Female
## 3749 Male
## 3750 Male
## 3751 Female
## 3752 Male
## 3753 Female
## 3754 Male
## 3755 Male
## 3756 <NA>
## 3757 <NA>
## 3758 Female
## 3759 <NA>
## 3760 <NA>
## 3761 Female
## 3762 <NA>
## 3763 <NA>
## 3764 <NA>
## 3765 <NA>
## 3766 <NA>
## 3767 <NA>
## 3768 <NA>
## 3769 <NA>
## 3770 Don't know, never saw R, no selected R
## 3771 Male
## 3772 <NA>
## 3773 Male
## 3774 Male
## 3775 Male
## 3776 <NA>
## 3777 <NA>
## 3778 <NA>
## 3779 <NA>
## 3780 Male
## 3781 Male
## 3782 <NA>
## 3783 Female
## 3784 <NA>
## 3785 <NA>
## 3786 <NA>
## 3787 Male
## 3788 <NA>
## 3789 <NA>
## 3790 Male
## 3791 Female
## 3792 <NA>
## 3793 <NA>
## 3794 <NA>
## 3795 Male
## 3796 <NA>
## 3797 Male
## 3798 <NA>
## 3799 <NA>
## 3800 Female
## 3801 Female
## 3802 <NA>
## 3803 <NA>
## 3804 <NA>
## 3805 Male
## 3806 <NA>
## 3807 <NA>
## 3808 <NA>
## 3809 Female
## 3810 <NA>
## 3811 <NA>
## 3812 Male
## 3813 Male
## 3814 Male
## 3815 Female
## 3816 <NA>
## 3817 <NA>
## 3818 <NA>
## 3819 Male
## 3820 Female
## 3821 <NA>
## 3822 <NA>
## 3823 <NA>
## 3824 Female
## 3825 Female
## 3826 <NA>
## 3827 Male
## 3828 <NA>
## 3829 <NA>
## 3830 <NA>
## 3831 Male
## 3832 <NA>
## 3833 <NA>
## 3834 Male
## 3835 Male
## 3836 Male
## 3837 <NA>
## 3838 Male
## 3839 Female
## 3840 <NA>
## 3841 <NA>
## 3842 <NA>
## 3843 <NA>
## 3844 <NA>
## 3845 Female
## 3846 <NA>
## 3847 <NA>
## 3848 Don't know, never saw R, no selected R
## 3849 Male
## 3850 <NA>
## 3851 <NA>
## 3852 Male
## 3853 <NA>
## 3854 Male
## 3855 Male
## 3856 Female
## 3857 <NA>
## 3858 <NA>
## 3859 <NA>
## 3860 Male
## 3861 Female
## 3862 <NA>
## 3863 <NA>
## 3864 <NA>
## 3865 <NA>
## 3866 <NA>
## 3867 Male
## 3868 <NA>
## 3869 Male
## 3870 <NA>
## 3871 <NA>
## 3872 Female
## 3873 Female
## 3874 <NA>
## 3875 Female
## 3876 <NA>
## 3877 <NA>
## 3878 Female
## 3879 Male
## 3880 Male
## 3881 <NA>
## 3882 Female
## 3883 <NA>
## 3884 <NA>
## 3885 Male
## 3886 Female
## 3887 Female
## 3888 Male
## 3889 <NA>
## 3890 <NA>
## 3891 Female
## 3892 <NA>
## 3893 <NA>
## 3894 <NA>
## 3895 Don't know, never saw R, no selected R
## 3896 <NA>
## 3897 <NA>
## 3898 Female
## 3899 Male
## 3900 Female
## 3901 Female
## 3902 Male
## 3903 <NA>
## 3904 Male
## 3905 Female
## 3906 <NA>
## 3907 Female
## 3908 Don't know, never saw R, no selected R
## 3909 Male
## 3910 Male
## 3911 Female
## 3912 <NA>
## 3913 Male
## 3914 Male
## 3915 <NA>
## 3916 <NA>
## 3917 <NA>
## 3918 <NA>
## 3919 <NA>
## 3920 Female
## 3921 Female
## 3922 Male
## 3923 <NA>
## 3924 <NA>
## 3925 Female
## 3926 <NA>
## 3927 <NA>
## 3928 Male
## 3929 Female
## 3930 <NA>
## 3931 <NA>
## 3932 <NA>
## 3933 Don't know, never saw R, no selected R
## 3934 <NA>
## 3935 Female
## 3936 <NA>
## 3937 <NA>
## 3938 Don't know, never saw R, no selected R
## 3939 <NA>
## 3940 Female
## 3941 <NA>
## 3942 Female
## 3943 Male
## 3944 Male
## 3945 <NA>
## 3946 Male
## 3947 <NA>
## 3948 Female
## 3949 Female
## 3950 Female
## 3951 <NA>
## 3952 Female
## 3953 Female
## 3954 Female
## 3955 <NA>
## 3956 Female
## 3957 Male
## 3958 Female
## 3959 Don't know, never saw R, no selected R
## 3960 <NA>
## 3961 Female
## 3962 Male
## 3963 <NA>
## 3964 Female
## 3965 Don't know, never saw R, no selected R
## 3966 <NA>
## 3967 <NA>
## 3968 Male
## 3969 <NA>
## 3970 <NA>
## 3971 Female
## 3972 <NA>
## 3973 <NA>
## 3974 <NA>
## 3975 Female
## 3976 <NA>
## 3977 <NA>
## 3978 <NA>
## 3979 <NA>
## 3980 <NA>
## 3981 Male
## 3982 <NA>
## 3983 Female
## 3984 Female
## 3985 Male
## 3986 Male
## 3987 Male
## 3988 <NA>
## 3989 Female
## 3990 Female
## 3991 <NA>
## 3992 Female
## 3993 Female
## 3994 Female
## 3995 <NA>
## 3996 Male
## 3997 <NA>
## 3998 <NA>
## 3999 Male
## 4000 <NA>
## 4001 Male
## 4002 Male
## 4003 <NA>
## 4004 Female
## 4005 Male
## 4006 <NA>
## 4007 <NA>
## 4008 <NA>
## 4009 <NA>
## 4010 <NA>
## 4011 Female
## 4012 Female
## 4013 Male
## 4014 <NA>
## 4015 Female
## 4016 Male
## 4017 <NA>
## 4018 <NA>
## 4019 Male
## 4020 Male
## 4021 Male
## 4022 Female
## 4023 <NA>
## 4024 <NA>
## 4025 Male
## 4026 Don't know, never saw R, no selected R
## 4027 Female
## 4028 <NA>
## 4029 <NA>
## 4030 Female
## 4031 <NA>
## 4032 Male
## 4033 Male
## 4034 <NA>
## 4035 Female
## 4036 <NA>
## 4037 <NA>
## 4038 Male
## 4039 Male
## 4040 Female
## 4041 <NA>
## 4042 Male
## 4043 Male
## 4044 Male
## 4045 Female
## 4046 Male
## 4047 Female
## 4048 <NA>
## 4049 <NA>
## 4050 <NA>
## 4051 Male
## 4052 Male
## 4053 Female
## 4054 Female
## 4055 Female
## 4056 <NA>
## 4057 <NA>
## 4058 <NA>
## 4059 <NA>
## 4060 Female
## 4061 <NA>
## 4062 Don't know, never saw R, no selected R
## 4063 <NA>
## 4064 Female
## 4065 Female
## 4066 Female
## 4067 Male
## 4068 Female
## 4069 <NA>
## 4070 Female
## 4071 <NA>
## 4072 <NA>
## 4073 <NA>
## 4074 Female
## 4075 Male
## 4076 Male
## 4077 <NA>
## 4078 <NA>
## 4079 <NA>
## 4080 <NA>
## 4081 <NA>
## 4082 Female
## 4083 Female
## 4084 <NA>
## 4085 Male
## 4086 <NA>
## 4087 <NA>
## 4088 Female
## 4089 Male
## 4090 Female
## 4091 <NA>
## 4092 Male
## 4093 Female
## 4094 Female
## 4095 <NA>
## 4096 <NA>
## 4097 <NA>
## 4098 Female
## 4099 Female
## 4100 Female
## 4101 <NA>
## 4102 <NA>
## 4103 <NA>
## 4104 Male
## 4105 <NA>
## 4106 <NA>
## 4107 Female
## 4108 <NA>
## 4109 Female
## 4110 <NA>
## 4111 Male
## 4112 <NA>
## 4113 Female
## 4114 Male
## 4115 <NA>
## 4116 Female
## 4117 <NA>
## 4118 Male
## 4119 Female
## 4120 <NA>
## 4121 <NA>
## 4122 Female
## 4123 Male
## 4124 <NA>
## 4125 Male
## 4126 Female
## 4127 Female
## 4128 Male
## 4129 <NA>
## 4130 <NA>
## 4131 Female
## 4132 Female
## 4133 <NA>
## 4134 Female
## 4135 Female
## 4136 Male
## 4137 <NA>
## 4138 Female
## 4139 Female
## 4140 <NA>
## 4141 Female
## 4142 <NA>
## 4143 Female
## 4144 <NA>
## 4145 <NA>
## 4146 <NA>
## 4147 <NA>
## 4148 <NA>
## 4149 Male
## 4150 Male
## 4151 <NA>
## 4152 <NA>
## 4153 Male
## 4154 <NA>
## 4155 Female
## 4156 Female
## 4157 <NA>
## 4158 <NA>
## 4159 <NA>
## 4160 <NA>
## 4161 Female
## 4162 <NA>
## 4163 Female
## 4164 <NA>
## 4165 Female
## 4166 Male
## 4167 <NA>
## 4168 Male
## 4169 <NA>
## 4170 Don't know, never saw R, no selected R
## 4171 Female
## 4172 Female
## 4173 Male
## 4174 Female
## 4175 <NA>
## 4176 <NA>
## 4177 <NA>
## 4178 <NA>
## 4179 Female
## 4180 Male
## 4181 <NA>
## 4182 Female
## 4183 <NA>
## 4184 <NA>
## 4185 Male
## 4186 Female
## 4187 Female
## 4188 Female
## 4189 <NA>
## 4190 <NA>
## 4191 Female
## 4192 Female
## 4193 Male
## 4194 <NA>
## 4195 Male
## 4196 <NA>
## 4197 <NA>
## 4198 <NA>
## 4199 <NA>
## 4200 <NA>
## 4201 <NA>
## 4202 Male
## 4203 Male
## 4204 <NA>
## 4205 Male
## 4206 Female
## 4207 Female
## 4208 Female
## 4209 <NA>
## 4210 Don't know, never saw R, no selected R
## 4211 <NA>
## 4212 <NA>
## 4213 <NA>
## 4214 Female
## 4215 Male
## 4216 <NA>
## 4217 Female
## 4218 Male
## 4219 Male
## 4220 <NA>
## 4221 Female
## 4222 Male
## 4223 <NA>
## 4224 Male
## 4225 <NA>
## 4226 Female
## 4227 <NA>
## 4228 Female
## 4229 <NA>
## 4230 Female
## 4231 <NA>
## 4232 Male
## 4233 Male
## 4234 Female
## 4235 <NA>
## 4236 Male
## 4237 <NA>
## 4238 Male
## 4239 <NA>
## 4240 <NA>
## 4241 Female
## 4242 Female
## 4243 <NA>
## 4244 <NA>
## 4245 <NA>
## 4246 <NA>
## 4247 Female
## 4248 Female
## 4249 Male
## 4250 <NA>
## 4251 <NA>
## 4252 Male
## 4253 Female
## 4254 Female
## 4255 Male
## 4256 Female
## 4257 <NA>
## 4258 Male
## 4259 Female
## 4260 Male
## 4261 <NA>
## 4262 Female
## 4263 <NA>
## 4264 Don't know, never saw R, no selected R
## 4265 Male
## 4266 <NA>
## 4267 Male
## 4268 <NA>
## 4269 Male
## 4270 Female
## 4271 <NA>
## 4272 Male
## 4273 Female
## 4274 <NA>
## 4275 Female
## 4276 Don't know, never saw R, no selected R
## 4277 <NA>
## 4278 Female
## 4279 Male
## 4280 Female
## 4281 Female
## 4282 <NA>
## 4283 Male
## 4284 Male
## 4285 Female
## 4286 Male
## 4287 <NA>
## 4288 Female
## 4289 <NA>
## 4290 Female
## 4291 Male
## 4292 <NA>
## 4293 <NA>
## 4294 <NA>
## 4295 <NA>
## 4296 Female
## 4297 <NA>
## 4298 Male
## 4299 <NA>
## 4300 Male
## 4301 Male
## 4302 <NA>
## 4303 Female
## 4304 <NA>
## 4305 <NA>
## 4306 Female
## 4307 <NA>
## 4308 Male
## 4309 <NA>
## 4310 <NA>
## 4311 <NA>
## 4312 Female
## 4313 <NA>
## 4314 <NA>
## 4315 <NA>
## 4316 <NA>
## 4317 Female
## 4318 <NA>
## 4319 Female
## 4320 Male
## 4321 <NA>
## 4322 Male
## 4323 <NA>
## 4324 <NA>
## 4325 Male
## 4326 Female
## 4327 Don't know, never saw R, no selected R
## 4328 <NA>
## 4329 Male
## 4330 Female
## 4331 Female
## 4332 <NA>
## 4333 <NA>
## 4334 Don't know, never saw R, no selected R
## 4335 <NA>
## 4336 Male
## 4337 Male
## 4338 Male
## 4339 Male
## 4340 <NA>
## 4341 <NA>
## 4342 Male
## 4343 Female
## 4344 <NA>
## 4345 Male
## 4346 Female
## 4347 <NA>
## 4348 <NA>
## 4349 <NA>
## 4350 Female
## 4351 <NA>
## 4352 Female
## 4353 <NA>
## 4354 <NA>
## 4355 Male
## 4356 <NA>
## 4357 Male
## 4358 Male
## 4359 Male
## 4360 <NA>
## 4361 <NA>
## 4362 Male
## 4363 <NA>
## 4364 Female
## 4365 Male
## 4366 <NA>
## 4367 Female
## 4368 <NA>
## 4369 Female
## 4370 Male
## 4371 Female
## 4372 Female
## 4373 Male
## 4374 <NA>
## 4375 <NA>
## 4376 <NA>
## 4377 <NA>
## 4378 Female
## 4379 Male
## 4380 Male
## 4381 <NA>
## 4382 Male
## 4383 Female
## 4384 <NA>
## 4385 <NA>
## 4386 Female
## 4387 <NA>
## 4388 <NA>
## 4389 Male
## 4390 <NA>
## 4391 <NA>
## 4392 <NA>
## 4393 Female
## 4394 Female
## 4395 Male
## 4396 <NA>
## 4397 <NA>
## 4398 <NA>
## 4399 <NA>
## 4400 <NA>
## 4401 Male
## 4402 <NA>
## 4403 <NA>
## 4404 Male
## 4405 Female
## 4406 Female
## 4407 <NA>
## 4408 <NA>
## 4409 Female
## 4410 <NA>
## 4411 <NA>
## 4412 Don't know, never saw R, no selected R
## 4413 <NA>
## 4414 <NA>
## 4415 Male
## 4416 Female
## 4417 <NA>
## 4418 Male
## 4419 Male
## 4420 Male
## 4421 Female
## 4422 <NA>
## 4423 <NA>
## 4424 Don't know, never saw R, no selected R
## 4425 <NA>
## 4426 <NA>
## 4427 <NA>
## 4428 Male
## 4429 <NA>
## 4430 Male
## 4431 <NA>
## 4432 Male
## 4433 <NA>
## 4434 <NA>
## 4435 Female
## 4436 Male
## 4437 Male
## 4438 <NA>
## 4439 <NA>
## 4440 Female
## 4441 <NA>
## 4442 <NA>
## 4443 Female
## 4444 Male
## 4445 Female
## 4446 <NA>
## 4447 Female
## 4448 Male
## 4449 Female
## 4450 <NA>
## 4451 <NA>
## 4452 Female
## 4453 Female
## 4454 <NA>
## 4455 Female
## 4456 <NA>
## 4457 Male
## 4458 Male
## 4459 <NA>
## 4460 Female
## 4461 Female
## 4462 Male
## 4463 Female
## 4464 <NA>
## 4465 <NA>
## 4466 Male
## 4467 Male
## 4468 Male
## 4469 <NA>
## 4470 <NA>
## 4471 <NA>
## 4472 <NA>
## 4473 <NA>
## 4474 <NA>
## 4475 Female
## 4476 Female
## 4477 Female
## 4478 <NA>
## 4479 <NA>
## 4480 <NA>
## 4481 Male
## 4482 Male
## 4483 <NA>
## 4484 <NA>
## 4485 <NA>
## 4486 <NA>
## 4487 <NA>
## 4488 Male
## 4489 Female
## 4490 Female
## 4491 Male
## 4492 Female
## 4493 <NA>
## 4494 <NA>
## 4495 <NA>
## 4496 Female
## 4497 Male
## 4498 <NA>
## 4499 Female
## 4500 <NA>
## 4501 <NA>
## 4502 Female
## 4503 <NA>
## 4504 Female
## 4505 <NA>
## 4506 Male
## 4507 <NA>
## 4508 Female
## 4509 Male
## 4510 Female
## 4511 Female
## 4512 Female
## 4513 <NA>
## 4514 Male
## 4515 Female
## 4516 Male
## 4517 <NA>
## 4518 <NA>
## 4519 <NA>
## 4520 <NA>
## 4521 <NA>
## 4522 <NA>
## 4523 <NA>
## 4524 <NA>
## 4525 <NA>
## 4526 <NA>
## 4527 Male
## 4528 Female
## 4529 Don't know, never saw R, no selected R
## 4530 Female
## 4531 <NA>
## 4532 <NA>
## 4533 <NA>
## 4534 Male
## 4535 Don't know, never saw R, no selected R
## 4536 <NA>
## 4537 Female
## 4538 Female
## 4539 Male
## 4540 <NA>
## 4541 Male
## 4542 <NA>
## 4543 Male
## 4544 <NA>
## 4545 <NA>
## 4546 Female
## 4547 Male
## 4548 Don't know, never saw R, no selected R
## 4549 Male
## 4550 Female
## 4551 <NA>
## 4552 Female
## 4553 Female
## 4554 Female
## 4555 Male
## 4556 <NA>
## 4557 <NA>
## 4558 Female
## 4559 Female
## 4560 Female
## 4561 <NA>
## 4562 <NA>
## 4563 <NA>
## 4564 <NA>
## 4565 Female
## 4566 Male
## 4567 Female
## 4568 Female
## 4569 <NA>
## 4570 Male
## 4571 <NA>
## 4572 <NA>
## 4573 <NA>
## 4574 <NA>
## 4575 Female
## 4576 <NA>
## 4577 Male
## 4578 Female
## 4579 Male
## 4580 <NA>
## 4581 Male
## 4582 <NA>
## 4583 Female
## 4584 Female
## 4585 <NA>
## 4586 <NA>
## 4587 <NA>
## 4588 Male
## 4589 <NA>
## 4590 Female
## 4591 Male
## 4592 Female
## 4593 <NA>
## 4594 Female
## 4595 <NA>
## 4596 Female
## 4597 <NA>
## 4598 <NA>
## 4599 Female
## 4600 <NA>
## 4601 <NA>
## 4602 <NA>
## 4603 Female
## 4604 Female
## 4605 Don't know, never saw R, no selected R
## 4606 Male
## 4607 Male
## 4608 Female
## 4609 Female
## 4610 Female
## 4611 Female
## 4612 <NA>
## 4613 Male
## 4614 Female
## 4615 <NA>
## 4616 Male
## 4617 <NA>
## 4618 Male
## 4619 <NA>
## 4620 Female
## 4621 <NA>
## 4622 Female
## 4623 Male
## 4624 Male
## 4625 Male
## 4626 Male
## 4627 <NA>
## 4628 <NA>
## 4629 Female
## 4630 Male
## 4631 Female
## 4632 <NA>
## 4633 Male
## 4634 <NA>
## 4635 Female
## 4636 <NA>
## 4637 Male
## 4638 <NA>
## 4639 <NA>
## 4640 Female
## 4641 Male
## 4642 Male
## 4643 <NA>
## 4644 Female
## 4645 Male
## 4646 <NA>
## 4647 Female
## 4648 Female
## 4649 Don't know, never saw R, no selected R
## 4650 Male
## 4651 Don't know, never saw R, no selected R
## 4652 Female
## 4653 Female
## 4654 Female
## 4655 <NA>
## 4656 <NA>
## 4657 Male
## 4658 Female
## 4659 <NA>
## 4660 Don't know, never saw R, no selected R
## 4661 Female
## 4662 Female
## 4663 Male
## 4664 <NA>
## 4665 <NA>
## 4666 <NA>
## 4667 <NA>
## 4668 <NA>
## 4669 <NA>
## 4670 Female
## 4671 Don't know, never saw R, no selected R
## 4672 Male
## 4673 <NA>
## 4674 <NA>
## 4675 Male
## 4676 Don't know, never saw R, no selected R
## 4677 <NA>
## 4678 <NA>
## 4679 <NA>
## 4680 Male
## 4681 <NA>
## 4682 <NA>
## 4683 Male
## 4684 Female
## 4685 Don't know, never saw R, no selected R
## 4686 Male
## 4687 <NA>
## 4688 Female
## 4689 <NA>
## 4690 Female
## 4691 <NA>
## 4692 <NA>
## 4693 Male
## 4694 Male
## 4695 <NA>
## 4696 <NA>
## 4697 Male
## 4698 <NA>
## 4699 <NA>
## 4700 Female
## 4701 Female
## 4702 Male
## 4703 <NA>
## 4704 Female
## 4705 <NA>
## 4706 <NA>
## 4707 <NA>
## 4708 Female
## 4709 Female
## 4710 <NA>
## 4711 Female
## 4712 Male
## 4713 Female
## 4714 <NA>
## 4715 <NA>
## 4716 <NA>
## 4717 Female
## 4718 Female
## 4719 <NA>
## 4720 Female
## 4721 <NA>
## 4722 <NA>
## 4723 <NA>
## 4724 <NA>
## 4725 Female
## 4726 Female
## 4727 <NA>
## 4728 <NA>
## 4729 Female
## 4730 Female
## 4731 Female
## 4732 Female
## 4733 Female
## 4734 <NA>
## 4735 Female
## 4736 <NA>
## 4737 <NA>
## 4738 <NA>
## 4739 <NA>
## 4740 Male
## 4741 <NA>
## 4742 <NA>
## 4743 <NA>
## 4744 <NA>
## 4745 Male
## 4746 Female
## 4747 <NA>
## 4748 Female
## 4749 <NA>
## 4750 Male
## 4751 <NA>
## 4752 <NA>
## 4753 Female
## 4754 <NA>
## 4755 <NA>
## 4756 Female
## 4757 Male
## 4758 <NA>
## 4759 Male
## 4760 <NA>
## 4761 <NA>
## 4762 Female
## 4763 Male
## 4764 Female
## 4765 Female
## 4766 Female
## 4767 <NA>
## 4768 <NA>
## 4769 Male
## 4770 Female
## 4771 Don't know, never saw R, no selected R
## 4772 <NA>
## 4773 Female
## 4774 <NA>
## 4775 <NA>
## 4776 <NA>
## 4777 <NA>
## 4778 Male
## 4779 <NA>
## 4780 Male
## 4781 Female
## 4782 Male
## 4783 Female
## 4784 Male
## 4785 Female
## 4786 <NA>
## 4787 <NA>
## 4788 <NA>
## 4789 <NA>
## 4790 <NA>
## 4791 <NA>
## 4792 Female
## 4793 <NA>
## 4794 Male
## 4795 <NA>
## 4796 <NA>
## 4797 <NA>
## 4798 Female
## 4799 Female
## 4800 Don't know, never saw R, no selected R
## 4801 Female
## 4802 <NA>
## 4803 <NA>
## 4804 Male
## 4805 Male
## 4806 <NA>
## 4807 <NA>
## 4808 Male
## 4809 <NA>
## 4810 <NA>
## 4811 Male
## 4812 Female
## 4813 Female
## 4814 <NA>
## 4815 Female
## 4816 <NA>
## 4817 Female
## 4818 <NA>
## 4819 <NA>
## 4820 <NA>
## 4821 Female
## 4822 Male
## 4823 Male
## 4824 <NA>
## 4825 <NA>
## 4826 <NA>
## 4827 <NA>
## 4828 Female
## 4829 Female
## 4830 Female
## 4831 <NA>
## 4832 Male
## 4833 <NA>
## 4834 Female
## 4835 <NA>
## 4836 <NA>
## 4837 Male
## 4838 Male
## 4839 Female
## 4840 Female
## 4841 Male
## 4842 Female
## 4843 <NA>
## 4844 <NA>
## 4845 Female
## 4846 Male
## 4847 <NA>
## 4848 Male
## 4849 <NA>
## 4850 <NA>
## 4851 <NA>
## 4852 <NA>
## 4853 Male
## 4854 Female
## 4855 <NA>
## 4856 <NA>
## 4857 Female
## 4858 <NA>
## 4859 <NA>
## 4860 Don't know, never saw R, no selected R
## 4861 Female
## 4862 Male
## 4863 Female
## 4864 Female
## 4865 <NA>
## 4866 <NA>
## 4867 Male
## 4868 <NA>
## 4869 <NA>
## 4870 Male
## 4871 Female
## 4872 Male
## 4873 Female
## 4874 <NA>
## 4875 <NA>
## 4876 <NA>
## 4877 Female
## 4878 Female
## 4879 <NA>
## 4880 Male
## 4881 Male
## 4882 <NA>
## 4883 Male
## 4884 <NA>
## 4885 Male
## 4886 Female
## 4887 <NA>
## 4888 Male
## 4889 Female
## 4890 Male
## 4891 Female
## 4892 Female
## 4893 <NA>
## 4894 <NA>
## 4895 <NA>
## 4896 <NA>
## 4897 Female
## 4898 Female
## 4899 <NA>
## 4900 <NA>
## 4901 Female
## 4902 <NA>
## 4903 Female
## 4904 <NA>
## 4905 <NA>
## 4906 <NA>
## 4907 <NA>
## 4908 Female
## 4909 <NA>
## 4910 Female
## 4911 Female
## 4912 Female
## 4913 <NA>
## 4914 <NA>
## 4915 <NA>
## 4916 Male
## 4917 Female
## 4918 Female
## 4919 Don't know, never saw R, no selected R
## 4920 <NA>
## 4921 Male
## 4922 Female
## 4923 <NA>
## 4924 Male
## 4925 <NA>
## 4926 Male
## 4927 <NA>
## 4928 <NA>
## 4929 <NA>
## 4930 Male
## 4931 Male
## 4932 <NA>
## 4933 Female
## 4934 <NA>
## 4935 <NA>
## 4936 Female
## 4937 Female
## 4938 Male
## 4939 Female
## 4940 Female
## 4941 Female
## 4942 Female
## 4943 Female
## 4944 <NA>
## 4945 Male
## 4946 Female
## 4947 Female
## 4948 Female
## 4949 Female
## 4950 Male
## 4951 <NA>
## 4952 <NA>
## 4953 <NA>
## 4954 Female
## 4955 <NA>
## 4956 Male
## 4957 <NA>
## 4958 Male
## 4959 <NA>
## 4960 Female
## 4961 <NA>
## 4962 Male
## 4963 Male
## 4964 <NA>
## 4965 Female
## 4966 <NA>
## 4967 Male
## 4968 <NA>
## 4969 Female
## 4970 <NA>
## 4971 Male
## 4972 <NA>
## 4973 <NA>
## 4974 Don't know, never saw R, no selected R
## 4975 <NA>
## 4976 <NA>
## 4977 <NA>
## 4978 Female
## 4979 Male
## 4980 Male
## 4981 <NA>
## 4982 Female
## 4983 Male
## 4984 <NA>
## 4985 Female
## 4986 <NA>
## 4987 Male
## 4988 Male
## 4989 Female
## 4990 <NA>
## 4991 Male
## 4992 Female
## 4993 <NA>
## 4994 <NA>
## 4995 Don't know, never saw R, no selected R
## 4996 Female
## 4997 Female
## 4998 <NA>
## 4999 <NA>
## 5000 <NA>
## 5001 <NA>
## 5002 Female
## 5003 <NA>
## 5004 Male
## 5005 <NA>
## 5006 Male
## 5007 <NA>
## 5008 Male
## 5009 Female
## 5010 Male
## 5011 Female
## 5012 <NA>
## 5013 Female
## 5014 <NA>
## 5015 Female
## 5016 <NA>
## 5017 Male
## 5018 <NA>
## 5019 Male
## 5020 Male
## 5021 Male
## 5022 Male
## 5023 <NA>
## 5024 Male
## 5025 Female
## 5026 <NA>
## 5027 Female
## 5028 Male
## 5029 Male
## 5030 <NA>
## 5031 <NA>
## 5032 Male
## 5033 Female
## 5034 Female
## 5035 <NA>
## 5036 <NA>
## 5037 <NA>
## 5038 <NA>
## 5039 Male
## 5040 Female
## 5041 Female
## 5042 <NA>
## 5043 Male
## 5044 Female
## 5045 Female
## 5046 <NA>
## 5047 <NA>
## 5048 Female
## 5049 Female
## 5050 <NA>
## 5051 <NA>
## 5052 Male
## 5053 <NA>
## 5054 Male
## 5055 Female
## 5056 Male
## 5057 <NA>
## 5058 <NA>
## 5059 <NA>
## 5060 <NA>
## 5061 Female
## 5062 Don't know, never saw R, no selected R
## 5063 Female
## 5064 <NA>
## 5065 <NA>
## 5066 <NA>
## 5067 Female
## 5068 <NA>
## 5069 <NA>
## 5070 <NA>
## 5071 Female
## 5072 <NA>
## 5073 <NA>
## 5074 Female
## 5075 <NA>
## 5076 Male
## 5077 Male
## 5078 <NA>
## 5079 Female
## 5080 Male
## 5081 <NA>
## 5082 Female
## 5083 Male
## 5084 Male
## 5085 <NA>
## 5086 Female
## 5087 Male
## 5088 <NA>
## 5089 Male
## 5090 <NA>
## 5091 Female
## 5092 Female
## 5093 <NA>
## 5094 Male
## 5095 <NA>
## 5096 <NA>
## 5097 Female
## 5098 <NA>
## 5099 <NA>
## 5100 Male
## 5101 Male
## 5102 Male
## 5103 Female
## 5104 Female
## 5105 Female
## 5106 Male
## 5107 <NA>
## 5108 Female
## 5109 <NA>
## 5110 Female
## 5111 Male
## 5112 <NA>
## 5113 Female
## 5114 Female
## 5115 Male
## 5116 Female
## 5117 Female
## 5118 Female
## 5119 <NA>
## 5120 Female
## 5121 Female
## 5122 Female
## 5123 <NA>
## 5124 Female
## 5125 <NA>
## 5126 Don't know, never saw R, no selected R
## 5127 Female
## 5128 Male
## 5129 Male
## 5130 <NA>
## 5131 Female
## 5132 Male
## 5133 Female
## 5134 <NA>
## 5135 Male
## 5136 Female
## 5137 <NA>
## 5138 Female
## 5139 <NA>
## 5140 Male
## 5141 <NA>
## 5142 <NA>
## 5143 Female
## 5144 Male
## 5145 <NA>
## 5146 Female
## 5147 <NA>
## 5148 Male
## 5149 Male
## 5150 <NA>
## 5151 <NA>
## 5152 Female
## 5153 Male
## 5154 Female
## 5155 Female
## 5156 <NA>
## 5157 Female
## 5158 <NA>
## 5159 <NA>
## 5160 <NA>
## 5161 Male
## 5162 Female
## 5163 <NA>
## 5164 <NA>
## 5165 Male
## 5166 <NA>
## 5167 Male
## 5168 <NA>
## 5169 <NA>
## 5170 <NA>
## 5171 <NA>
## 5172 Male
## 5173 Female
## 5174 Male
## 5175 <NA>
## 5176 Female
## 5177 Female
## 5178 <NA>
## 5179 <NA>
## 5180 Male
## 5181 <NA>
## 5182 Female
## 5183 Male
## 5184 Female
## 5185 Male
## 5186 <NA>
## 5187 <NA>
## 5188 <NA>
## 5189 <NA>
## 5190 Male
## 5191 Female
## 5192 <NA>
## 5193 Male
## 5194 Female
## 5195 Don't know, never saw R, no selected R
## 5196 <NA>
## 5197 Male
## 5198 <NA>
## 5199 Female
## 5200 Female
## 5201 Female
## 5202 <NA>
## 5203 Female
## 5204 Male
## 5205 <NA>
## 5206 <NA>
## 5207 <NA>
## 5208 <NA>
## 5209 <NA>
## 5210 Male
## 5211 Female
## 5212 Female
## 5213 <NA>
## 5214 Female
## 5215 Male
## 5216 Female
## 5217 Male
## 5218 Female
## 5219 Female
## 5220 Male
## 5221 Male
## 5222 Female
## 5223 Female
## 5224 Female
## 5225 <NA>
## 5226 Female
## 5227 Female
## 5228 Male
## 5229 Male
## 5230 Female
## 5231 Female
## 5232 <NA>
## 5233 <NA>
## 5234 <NA>
## 5235 <NA>
## 5236 Female
## 5237 <NA>
## 5238 <NA>
## 5239 Male
## 5240 <NA>
## 5241 Female
## 5242 Female
## 5243 Male
## 5244 <NA>
## 5245 Female
## 5246 <NA>
## 5247 Female
## 5248 Male
## 5249 Male
## 5250 <NA>
## 5251 <NA>
## 5252 Male
## 5253 Male
## 5254 <NA>
## 5255 Male
## 5256 Female
## 5257 <NA>
## 5258 Male
## 5259 Female
## 5260 Male
## 5261 Female
## 5262 Male
## 5263 Female
## 5264 Female
## 5265 Male
## 5266 <NA>
## 5267 <NA>
## 5268 Male
## 5269 <NA>
## 5270 <NA>
## 5271 <NA>
## 5272 <NA>
## 5273 <NA>
## 5274 <NA>
## 5275 <NA>
## 5276 <NA>
## 5277 Male
## 5278 Female
## 5279 Female
## 5280 Male
## 5281 <NA>
## 5282 <NA>
## 5283 Don't know, never saw R, no selected R
## 5284 <NA>
## 5285 Female
## 5286 Female
## 5287 <NA>
## 5288 Male
## 5289 Female
## 5290 <NA>
## 5291 <NA>
## 5292 <NA>
## 5293 Female
## 5294 Male
## 5295 Male
## 5296 <NA>
## 5297 Male
## 5298 <NA>
## 5299 <NA>
## 5300 <NA>
## 5301 Female
## 5302 Female
## 5303 <NA>
## 5304 <NA>
## 5305 Male
## 5306 <NA>
## 5307 Male
## 5308 Female
## 5309 Female
## 5310 <NA>
## 5311 Male
## 5312 <NA>
## 5313 <NA>
## 5314 <NA>
## 5315 Male
## 5316 <NA>
## 5317 Male
## 5318 <NA>
## 5319 <NA>
## 5320 Male
## 5321 Female
## 5322 Male
## 5323 Female
## 5324 <NA>
## 5325 Male
## 5326 Male
## 5327 <NA>
## 5328 <NA>
## 5329 <NA>
## 5330 <NA>
## 5331 <NA>
## 5332 Female
## 5333 Male
## 5334 Male
## 5335 Male
## 5336 Female
## 5337 Female
## 5338 <NA>
## 5339 Female
## 5340 Male
## 5341 <NA>
## 5342 <NA>
## 5343 <NA>
## 5344 Male
## 5345 Male
## 5346 <NA>
## 5347 Male
## 5348 Male
## 5349 Male
## 5350 Female
## 5351 <NA>
## 5352 Male
## 5353 Female
## 5354 <NA>
## 5355 Female
## 5356 Female
## 5357 <NA>
## 5358 <NA>
## 5359 <NA>
## 5360 Male
## 5361 Male
## 5362 Female
## 5363 Female
## 5364 Female
## 5365 <NA>
## 5366 Male
## 5367 <NA>
## 5368 <NA>
## 5369 <NA>
## 5370 Female
## 5371 <NA>
## 5372 <NA>
## 5373 Male
## 5374 Male
## 5375 <NA>
## 5376 Female
## 5377 Male
## 5378 Male
## 5379 <NA>
## 5380 <NA>
## 5381 <NA>
## 5382 <NA>
## 5383 <NA>
## 5384 <NA>
## 5385 Female
## 5386 Female
## 5387 Male
## 5388 <NA>
## 5389 Male
## 5390 Male
## 5391 Female
## 5392 <NA>
## 5393 <NA>
## 5394 <NA>
## 5395 Male
## 5396 Male
## 5397 Female
## 5398 Male
## 5399 Male
## 5400 <NA>
## 5401 Female
## 5402 Male
## 5403 <NA>
## 5404 <NA>
## 5405 Don't know, never saw R, no selected R
## 5406 <NA>
## 5407 <NA>
## 5408 <NA>
## 5409 <NA>
## 5410 <NA>
## 5411 <NA>
## 5412 Female
## 5413 <NA>
## 5414 Male
## 5415 Female
## 5416 Female
## 5417 Male
## 5418 <NA>
## 5419 Don't know, never saw R, no selected R
## 5420 Male
## 5421 Male
## 5422 <NA>
## 5423 Female
## 5424 <NA>
## 5425 Female
## 5426 <NA>
## 5427 <NA>
## 5428 <NA>
## 5429 Female
## 5430 Female
## 5431 Female
## 5432 <NA>
## 5433 Female
## 5434 <NA>
## 5435 Female
## 5436 <NA>
## 5437 Male
## 5438 Female
## 5439 Don't know, never saw R, no selected R
## 5440 Female
## 5441 <NA>
## 5442 <NA>
## 5443 Female
## 5444 <NA>
## 5445 Male
## 5446 <NA>
## 5447 <NA>
## 5448 Male
## 5449 Male
## 5450 <NA>
## 5451 Female
## 5452 Female
## 5453 Male
## 5454 Male
## 5455 <NA>
## 5456 Male
## 5457 <NA>
## 5458 Male
## 5459 Female
## 5460 <NA>
## 5461 <NA>
## 5462 Female
## 5463 Female
## 5464 Male
## 5465 <NA>
## 5466 Male
## 5467 Female
## 5468 <NA>
## 5469 Female
## 5470 Male
## 5471 Female
## 5472 Male
## 5473 <NA>
## 5474 Female
## 5475 Female
## 5476 Female
## 5477 Female
## 5478 Female
## 5479 <NA>
## 5480 <NA>
## 5481 <NA>
## 5482 <NA>
## 5483 <NA>
## 5484 Female
## 5485 Female
## 5486 <NA>
## 5487 <NA>
## 5488 Female
## 5489 Male
## 5490 <NA>
## 5491 <NA>
## 5492 <NA>
## 5493 Male
## 5494 <NA>
## 5495 <NA>
## 5496 Male
## 5497 <NA>
## 5498 Female
## 5499 Female
## 5500 Female
## 5501 Female
## 5502 <NA>
## 5503 Female
## 5504 Male
## 5505 Male
## 5506 <NA>
## 5507 Male
## 5508 Male
## 5509 <NA>
## 5510 Male
## 5511 <NA>
## 5512 Male
## 5513 Female
## 5514 Male
## 5515 Male
## 5516 <NA>
## 5517 <NA>
## 5518 <NA>
## 5519 <NA>
## 5520 <NA>
## 5521 Male
## 5522 <NA>
## 5523 Male
## 5524 Female
## 5525 Male
## 5526 Male
## 5527 <NA>
## 5528 <NA>
## 5529 Female
## 5530 <NA>
## 5531 Male
## 5532 <NA>
## 5533 <NA>
## 5534 Don't know, never saw R, no selected R
## 5535 Female
## 5536 Female
## 5537 Female
## 5538 <NA>
## 5539 Female
## 5540 Female
## 5541 Female
## 5542 Male
## 5543 Female
## 5544 <NA>
## 5545 <NA>
## 5546 <NA>
## 5547 Female
## 5548 Male
## 5549 Female
## 5550 <NA>
## 5551 <NA>
## 5552 <NA>
## 5553 <NA>
## 5554 Female
## 5555 Male
## 5556 Female
## 5557 Female
## 5558 Female
## 5559 <NA>
## 5560 <NA>
## 5561 <NA>
## 5562 Male
## 5563 <NA>
## 5564 <NA>
## 5565 Male
## 5566 <NA>
## 5567 Female
## 5568 Male
## 5569 Male
## 5570 <NA>
## 5571 <NA>
## 5572 Female
## 5573 <NA>
## 5574 Female
## 5575 Male
## 5576 <NA>
## 5577 Female
## 5578 Male
## 5579 Female
## 5580 Male
## 5581 Female
## 5582 <NA>
## 5583 Female
## 5584 <NA>
## 5585 Male
## 5586 <NA>
## 5587 <NA>
## 5588 Female
## 5589 <NA>
## 5590 <NA>
## 5591 Female
## 5592 <NA>
## 5593 <NA>
## 5594 <NA>
## 5595 Female
## 5596 <NA>
## 5597 <NA>
## 5598 Female
## 5599 Female
## 5600 Female
## type
## 1 Single unit: Terraced house
## 2 Single unit: Semi-detached house
## 3 Single unit: Terraced house
## 4 Single unit: Semi-detached house
## 5 Single unit: Terraced house
## 6 Single unit: Terraced house
## 7 Single unit: Detached house
## 8 Single unit: Terraced house
## 9 Single unit: Semi-detached house
## 10 Single unit: Semi-detached house
## 11 Single unit: Detached house
## 12 Single unit: Semi-detached house
## 13 Multi-unit house, flat
## 14 Single unit: Detached house
## 15 Single unit: Terraced house
## 16 Single unit: Detached house
## 17 Single unit: Detached house
## 18 Single unit: Semi-detached house
## 19 Single unit: Detached house
## 20 Single unit: Semi-detached house
## 21 Single unit: Detached house
## 22 Multi-unit house, flat
## 23 Single unit: Terraced house
## 24 Multi-unit house, flat
## 25 Multi-unit house, flat
## 26 Single unit: Detached house
## 27 Multi-unit house, flat
## 28 Single unit: Detached house
## 29 Single unit: Terraced house
## 30 Multi-unit house, flat
## 31 Single unit: Detached house
## 32 Single unit: Semi-detached house
## 33 Single unit: Semi-detached house
## 34 Single unit: Semi-detached house
## 35 Single unit: Semi-detached house
## 36 Multi-unit house, flat
## 37 Single unit: Detached house
## 38 Multi-unit house, flat
## 39 Single unit: Detached house
## 40 Multi-unit house, flat
## 41 Single unit: Semi-detached house
## 42 Single unit: Terraced house
## 43 Multi-unit house, flat
## 44 Single unit: Detached house
## 45 Multi-unit house, flat
## 46 Single unit: Detached house
## 47 Single unit: Semi-detached house
## 48 Farm
## 49 Single unit: Terraced house
## 50 Single unit: Semi-detached house
## 51 Multi-unit house, flat
## 52 Multi-unit house, flat
## 53 Single unit: Detached house
## 54 Single unit: Detached house
## 55 Multi-unit house, flat
## 56 Multi-unit house, flat
## 57 Single unit: Detached house
## 58 Single unit: Terraced house
## 59 Single unit: Semi-detached house
## 60 Single unit: Terraced house
## 61 Multi-unit house, flat
## 62 Single unit: Detached house
## 63 Single unit: Detached house
## 64 Single unit: Detached house
## 65 Single unit: Semi-detached house
## 66 Single unit: Semi-detached house
## 67 Single unit: Detached house
## 68 Single unit: Terraced house
## 69 Single unit: Detached house
## 70 Single unit: Semi-detached house
## 71 Multi-unit house, flat
## 72 Farm
## 73 Single unit: Detached house
## 74 Multi-unit house, flat
## 75 Single unit: Detached house
## 76 Single unit: Terraced house
## 77 Multi-unit house, flat
## 78 Single unit: Terraced house
## 79 Single unit: Semi-detached house
## 80 Single unit: Semi-detached house
## 81 Single unit: Detached house
## 82 Single unit: Detached house
## 83 Single unit: Detached house
## 84 Single unit: Terraced house
## 85 Single unit: Semi-detached house
## 86 Single unit: Detached house
## 87 Single unit: Semi-detached house
## 88 Single unit: Detached house
## 89 Single unit: Terraced house
## 90 Single unit: Semi-detached house
## 91 Multi-unit: Sheltered/retirement housing
## 92 Single unit: Detached house
## 93 Single unit: Semi-detached house
## 94 Multi-unit house, flat
## 95 Single unit: Detached house
## 96 Multi-unit house, flat
## 97 Multi-unit: Sheltered/retirement housing
## 98 Single unit: Terraced house
## 99 Single unit: Terraced house
## 100 Single unit: Detached house
## 101 Single unit: Detached house
## 102 Single unit: Semi-detached house
## 103 Single unit: Terraced house
## 104 Single unit: Semi-detached house
## 105 Single unit: Detached house
## 106 Single unit: Semi-detached house
## 107 Single unit: Semi-detached house
## 108 Single unit: Detached house
## 109 Single unit: Semi-detached house
## 110 Single unit: Detached house
## 111 Multi-unit house, flat
## 112 Single unit: Terraced house
## 113 Single unit: Semi-detached house
## 114 Single unit: Semi-detached house
## 115 Single unit: Terraced house
## 116 Single unit: Detached house
## 117 Single unit: Terraced house
## 118 Single unit: Semi-detached house
## 119 Single unit: Detached house
## 120 Single unit: Semi-detached house
## 121 Single unit: Detached house
## 122 Multi-unit house, flat
## 123 Multi-unit house, flat
## 124 Single unit: Terraced house
## 125 Single unit: Terraced house
## 126 Single unit: Detached house
## 127 Single unit: Semi-detached house
## 128 Single unit: Detached house
## 129 Single unit: Semi-detached house
## 130 Multi-unit house, flat
## 131 Single unit: Semi-detached house
## 132 Single unit: Terraced house
## 133 Single unit: Detached house
## 134 Single unit: Detached house
## 135 Single unit: Terraced house
## 136 Single unit: Detached house
## 137 Single unit: Semi-detached house
## 138 Single unit: Terraced house
## 139 Multi-unit house, flat
## 140 Multi-unit house, flat
## 141 Single unit: Semi-detached house
## 142 Single unit: Detached house
## 143 Multi-unit house, flat
## 144 Single unit: Semi-detached house
## 145 Single unit: Semi-detached house
## 146 Single unit: Terraced house
## 147 Single unit: Detached house
## 148 Multi-unit house, flat
## 149 Single unit: Semi-detached house
## 150 Single unit: Detached house
## 151 Single unit: Semi-detached house
## 152 Single unit: Semi-detached house
## 153 Single unit: Terraced house
## 154 Multi-unit house, flat
## 155 Single unit: Detached house
## 156 Single unit: Semi-detached house
## 157 Single unit: Terraced house
## 158 Single unit: Semi-detached house
## 159 Multi-unit house, flat
## 160 Single unit: Semi-detached house
## 161 Single unit: Detached house
## 162 Single unit: Terraced house
## 163 Single unit: Detached house
## 164 Multi-unit house, flat
## 165 Multi-unit house, flat
## 166 Single unit: Terraced house
## 167 Single unit: Terraced house
## 168 Multi-unit house, flat
## 169 Single unit: Detached house
## 170 Single unit: Detached house
## 171 Single unit: Terraced house
## 172 Single unit: Semi-detached house
## 173 Multi-unit house, flat
## 174 Single unit: Detached house
## 175 Single unit: Terraced house
## 176 Single unit: Detached house
## 177 Single unit: Terraced house
## 178 Single unit: Terraced house
## 179 Single unit: Semi-detached house
## 180 Single unit: Terraced house
## 181 Single unit: Semi-detached house
## 182 Single unit: Terraced house
## 183 Single unit: Semi-detached house
## 184 Single unit: Detached house
## 185 Single unit: Semi-detached house
## 186 Single unit: Detached house
## 187 Single unit: Semi-detached house
## 188 Single unit: Terraced house
## 189 Single unit: Semi-detached house
## 190 Multi-unit house, flat
## 191 Single unit: Semi-detached house
## 192 Single unit: Semi-detached house
## 193 Single unit: Terraced house
## 194 Single unit: Terraced house
## 195 Single unit: Terraced house
## 196 Multi-unit house, flat
## 197 Multi-unit: Sheltered/retirement housing
## 198 Single unit: Detached house
## 199 Single unit: Terraced house
## 200 Single unit: Semi-detached house
## 201 Single unit: Terraced house
## 202 Single unit: Semi-detached house
## 203 Single unit: Semi-detached house
## 204 Other
## 205 Single unit: Terraced house
## 206 Multi-unit house, flat
## 207 Single unit: Terraced house
## 208 Single unit: Semi-detached house
## 209 Single unit: Semi-detached house
## 210 Single unit: Detached house
## 211 Single unit: Detached house
## 212 Single unit: Detached house
## 213 Single unit: Terraced house
## 214 Single unit: Semi-detached house
## 215 Single unit: Detached house
## 216 Single unit: Terraced house
## 217 Single unit: Semi-detached house
## 218 Single unit: Terraced house
## 219 Multi-unit house, flat
## 220 Single unit: Terraced house
## 221 Single unit: Semi-detached house
## 222 Single unit: Semi-detached house
## 223 Single unit: Detached house
## 224 Single unit: Terraced house
## 225 Single unit: Detached house
## 226 Multi-unit house, flat
## 227 Single unit: Semi-detached house
## 228 Single unit: Semi-detached house
## 229 Single unit: Detached house
## 230 Single unit: Semi-detached house
## 231 Single unit: Semi-detached house
## 232 Single unit: Terraced house
## 233 Single unit: Terraced house
## 234 Single unit: Detached house
## 235 Single unit: Terraced house
## 236 House-trailer or boat
## 237 Single unit: Detached house
## 238 Single unit: Semi-detached house
## 239 Single unit: Semi-detached house
## 240 Single unit: Semi-detached house
## 241 Single unit: Semi-detached house
## 242 Single unit: Terraced house
## 243 Single unit: Terraced house
## 244 Single unit: Terraced house
## 245 Single unit: Semi-detached house
## 246 Single unit: Terraced house
## 247 Single unit: Semi-detached house
## 248 Single unit: Terraced house
## 249 Multi-unit house, flat
## 250 Single unit: Detached house
## 251 Single unit: Semi-detached house
## 252 Single unit: Semi-detached house
## 253 Multi-unit house, flat
## 254 Single unit: Detached house
## 255 Farm
## 256 Single unit: Terraced house
## 257 Single unit: Terraced house
## 258 Single unit: Semi-detached house
## 259 Multi-unit house, flat
## 260 Single unit: Semi-detached house
## 261 Multi-unit house, flat
## 262 Single unit: Detached house
## 263 Single unit: Detached house
## 264 Multi-unit: Sheltered/retirement housing
## 265 Single unit: Detached house
## 266 Farm
## 267 Single unit: Semi-detached house
## 268 Single unit: Detached house
## 269 Other
## 270 Multi-unit house, flat
## 271 Single unit: Detached house
## 272 Single unit: Semi-detached house
## 273 Single unit: Detached house
## 274 Single unit: Detached house
## 275 Single unit: Detached house
## 276 Single unit: Terraced house
## 277 Single unit: Semi-detached house
## 278 Single unit: Semi-detached house
## 279 Single unit: Detached house
## 280 Single unit: Detached house
## 281 Single unit: Semi-detached house
## 282 Single unit: Terraced house
## 283 Single unit: Semi-detached house
## 284 Single unit: Semi-detached house
## 285 Single unit: Semi-detached house
## 286 Single unit: Terraced house
## 287 Single unit: Detached house
## 288 Multi-unit house, flat
## 289 Single unit: Semi-detached house
## 290 Single unit: Detached house
## 291 Single unit: Terraced house
## 292 Single unit: Detached house
## 293 Single unit: Detached house
## 294 Single unit: Semi-detached house
## 295 Single unit: Semi-detached house
## 296 Single unit: Terraced house
## 297 Single unit: Semi-detached house
## 298 Single unit: Terraced house
## 299 Single unit: Detached house
## 300 Single unit: Terraced house
## 301 Single unit: Terraced house
## 302 Single unit: Semi-detached house
## 303 Single unit: Detached house
## 304 Single unit: Semi-detached house
## 305 Single unit: Terraced house
## 306 Single unit: Semi-detached house
## 307 Multi-unit house, flat
## 308 Single unit: Terraced house
## 309 Multi-unit house, flat
## 310 Single unit: Terraced house
## 311 Single unit: Semi-detached house
## 312 Single unit: Semi-detached house
## 313 Single unit: Detached house
## 314 Single unit: Terraced house
## 315 Single unit: Detached house
## 316 Single unit: Terraced house
## 317 Single unit: Detached house
## 318 Single unit: Semi-detached house
## 319 Multi-unit house, flat
## 320 Multi-unit house, flat
## 321 Single unit: Terraced house
## 322 Single unit: Terraced house
## 323 Single unit: Semi-detached house
## 324 Single unit: Semi-detached house
## 325 Single unit: Semi-detached house
## 326 Single unit: Semi-detached house
## 327 Single unit: Semi-detached house
## 328 Multi-unit house, flat
## 329 Multi-unit house, flat
## 330 Single unit: Terraced house
## 331 Single unit: Semi-detached house
## 332 Single unit: Semi-detached house
## 333 Single unit: Detached house
## 334 Single unit: Terraced house
## 335 Multi-unit house, flat
## 336 Single unit: Semi-detached house
## 337 Single unit: Semi-detached house
## 338 Farm
## 339 Multi-unit house, flat
## 340 Single unit: Detached house
## 341 Single unit: Terraced house
## 342 Single unit: Semi-detached house
## 343 Single unit: Terraced house
## 344 Single unit: Terraced house
## 345 Single unit: Detached house
## 346 Single unit: Terraced house
## 347 Single unit: Semi-detached house
## 348 Single unit: Semi-detached house
## 349 Single unit: Terraced house
## 350 Multi-unit house, flat
## 351 Single unit: Terraced house
## 352 Single unit: Terraced house
## 353 Multi-unit house, flat
## 354 Single unit: Terraced house
## 355 Single unit: Detached house
## 356 Single unit: Semi-detached house
## 357 Single unit: Terraced house
## 358 Multi-unit house, flat
## 359 Single unit: Terraced house
## 360 Multi-unit house, flat
## 361 Single unit: Detached house
## 362 Single unit: Detached house
## 363 Multi-unit house, flat
## 364 Single unit: Semi-detached house
## 365 Single unit: Terraced house
## 366 Single unit: Semi-detached house
## 367 Single unit: Semi-detached house
## 368 Single unit: Semi-detached house
## 369 Multi-unit house, flat
## 370 Single unit: Detached house
## 371 Single unit: Terraced house
## 372 Single unit: Terraced house
## 373 Single unit: Detached house
## 374 Single unit: Detached house
## 375 Multi-unit house, flat
## 376 Single unit: Terraced house
## 377 Single unit: Detached house
## 378 Single unit: Terraced house
## 379 Single unit: Detached house
## 380 Multi-unit house, flat
## 381 Single unit: Detached house
## 382 Single unit: Terraced house
## 383 Single unit: Semi-detached house
## 384 Single unit: Semi-detached house
## 385 Single unit: Semi-detached house
## 386 Farm
## 387 Single unit: Detached house
## 388 Single unit: Detached house
## 389 Single unit: Detached house
## 390 Multi-unit house, flat
## 391 Single unit: Detached house
## 392 Single unit: Semi-detached house
## 393 Single unit: Detached house
## 394 Single unit: Terraced house
## 395 Single unit: Detached house
## 396 Single unit: Detached house
## 397 Multi-unit house, flat
## 398 Single unit: Semi-detached house
## 399 Single unit: Detached house
## 400 Single unit: Detached house
## 401 Single unit: Detached house
## 402 Multi-unit house, flat
## 403 Single unit: Detached house
## 404 Single unit: Detached house
## 405 Single unit: Detached house
## 406 Single unit: Detached house
## 407 Single unit: Detached house
## 408 Single unit: Terraced house
## 409 Single unit: Detached house
## 410 Single unit: Semi-detached house
## 411 Single unit: Semi-detached house
## 412 Multi-unit house, flat
## 413 Single unit: Terraced house
## 414 Single unit: Detached house
## 415 Single unit: Semi-detached house
## 416 Single unit: Semi-detached house
## 417 Single unit: Terraced house
## 418 Single unit: Semi-detached house
## 419 Single unit: Semi-detached house
## 420 Single unit: Semi-detached house
## 421 Multi-unit house, flat
## 422 Single unit: Semi-detached house
## 423 Single unit: Semi-detached house
## 424 Single unit: Terraced house
## 425 Single unit: Semi-detached house
## 426 Single unit: Detached house
## 427 Single unit: Terraced house
## 428 Single unit: Semi-detached house
## 429 Single unit: Semi-detached house
## 430 Single unit: Terraced house
## 431 Other
## 432 Single unit: Terraced house
## 433 Single unit: Semi-detached house
## 434 Single unit: Semi-detached house
## 435 Single unit: Semi-detached house
## 436 Single unit: Semi-detached house
## 437 Single unit: Terraced house
## 438 Single unit: Terraced house
## 439 Single unit: Semi-detached house
## 440 Single unit: Semi-detached house
## 441 Single unit: Terraced house
## 442 Multi-unit house, flat
## 443 Single unit: Detached house
## 444 Single unit: Detached house
## 445 Single unit: Terraced house
## 446 Single unit: Terraced house
## 447 Single unit: Semi-detached house
## 448 Single unit: Semi-detached house
## 449 Single unit: Detached house
## 450 Single unit: Detached house
## 451 Single unit: Detached house
## 452 Only housing unit in building with other purpose
## 453 Single unit: Detached house
## 454 Single unit: Semi-detached house
## 455 Multi-unit house, flat
## 456 Multi-unit house, flat
## 457 Single unit: Terraced house
## 458 Single unit: Detached house
## 459 Single unit: Detached house
## 460 Multi-unit house, flat
## 461 Single unit: Semi-detached house
## 462 Single unit: Semi-detached house
## 463 Multi-unit house, flat
## 464 Single unit: Detached house
## 465 Single unit: Terraced house
## 466 Single unit: Terraced house
## 467 Multi-unit house, flat
## 468 Single unit: Detached house
## 469 Multi-unit house, flat
## 470 Multi-unit house, flat
## 471 Single unit: Semi-detached house
## 472 Farm
## 473 Single unit: Terraced house
## 474 Multi-unit house, flat
## 475 Single unit: Terraced house
## 476 Multi-unit house, flat
## 477 Single unit: Terraced house
## 478 Multi-unit house, flat
## 479 Single unit: Semi-detached house
## 480 Multi-unit house, flat
## 481 Single unit: Detached house
## 482 Single unit: Terraced house
## 483 Single unit: Terraced house
## 484 Single unit: Terraced house
## 485 Single unit: Terraced house
## 486 Single unit: Detached house
## 487 Single unit: Semi-detached house
## 488 Single unit: Semi-detached house
## 489 Single unit: Terraced house
## 490 Multi-unit house, flat
## 491 Single unit: Semi-detached house
## 492 Single unit: Terraced house
## 493 Single unit: Semi-detached house
## 494 Single unit: Detached house
## 495 Single unit: Terraced house
## 496 Single unit: Semi-detached house
## 497 Single unit: Terraced house
## 498 Single unit: Detached house
## 499 Multi-unit house, flat
## 500 Single unit: Terraced house
## 501 Single unit: Semi-detached house
## 502 Single unit: Detached house
## 503 Single unit: Terraced house
## 504 Multi-unit house, flat
## 505 Single unit: Terraced house
## 506 Single unit: Detached house
## 507 Single unit: Semi-detached house
## 508 Single unit: Terraced house
## 509 Single unit: Semi-detached house
## 510 Multi-unit house, flat
## 511 Single unit: Terraced house
## 512 Multi-unit house, flat
## 513 Single unit: Semi-detached house
## 514 Multi-unit house, flat
## 515 Single unit: Terraced house
## 516 Single unit: Terraced house
## 517 Single unit: Terraced house
## 518 Single unit: Detached house
## 519 Single unit: Terraced house
## 520 Multi-unit house, flat
## 521 Multi-unit house, flat
## 522 Single unit: Terraced house
## 523 Single unit: Semi-detached house
## 524 Single unit: Terraced house
## 525 Single unit: Semi-detached house
## 526 Single unit: Detached house
## 527 Single unit: Detached house
## 528 Single unit: Semi-detached house
## 529 Single unit: Semi-detached house
## 530 Single unit: Semi-detached house
## 531 Multi-unit house, flat
## 532 Multi-unit house, flat
## 533 Single unit: Semi-detached house
## 534 Single unit: Semi-detached house
## 535 Single unit: Terraced house
## 536 Single unit: Terraced house
## 537 Single unit: Terraced house
## 538 Single unit: Detached house
## 539 Single unit: Detached house
## 540 Multi-unit house, flat
## 541 Single unit: Detached house
## 542 Single unit: Semi-detached house
## 543 Multi-unit house, flat
## 544 Multi-unit: Sheltered/retirement housing
## 545 Single unit: Terraced house
## 546 Single unit: Detached house
## 547 Single unit: Semi-detached house
## 548 Multi-unit house, flat
## 549 Single unit: Detached house
## 550 Single unit: Terraced house
## 551 Single unit: Terraced house
## 552 Single unit: Semi-detached house
## 553 Single unit: Semi-detached house
## 554 Single unit: Terraced house
## 555 Single unit: Semi-detached house
## 556 Single unit: Detached house
## 557 Single unit: Detached house
## 558 Multi-unit house, flat
## 559 Single unit: Semi-detached house
## 560 Single unit: Semi-detached house
## 561 Multi-unit house, flat
## 562 Single unit: Semi-detached house
## 563 Multi-unit house, flat
## 564 Multi-unit house, flat
## 565 Single unit: Terraced house
## 566 Single unit: Semi-detached house
## 567 Single unit: Detached house
## 568 Multi-unit house, flat
## 569 Single unit: Semi-detached house
## 570 Farm
## 571 Single unit: Terraced house
## 572 Multi-unit house, flat
## 573 Single unit: Semi-detached house
## 574 Single unit: Detached house
## 575 Single unit: Terraced house
## 576 Single unit: Detached house
## 577 Multi-unit: Sheltered/retirement housing
## 578 Single unit: Detached house
## 579 Multi-unit house, flat
## 580 Multi-unit: Sheltered/retirement housing
## 581 Single unit: Semi-detached house
## 582 Single unit: Terraced house
## 583 Single unit: Semi-detached house
## 584 Single unit: Terraced house
## 585 Multi-unit house, flat
## 586 Farm
## 587 Single unit: Detached house
## 588 Single unit: Semi-detached house
## 589 Single unit: Semi-detached house
## 590 Single unit: Detached house
## 591 Multi-unit house, flat
## 592 Single unit: Terraced house
## 593 Single unit: Detached house
## 594 Single unit: Semi-detached house
## 595 Single unit: Detached house
## 596 Multi-unit house, flat
## 597 Single unit: Detached house
## 598 Single unit: Terraced house
## 599 Single unit: Semi-detached house
## 600 Single unit: Semi-detached house
## 601 Single unit: Terraced house
## 602 Multi-unit house, flat
## 603 Single unit: Semi-detached house
## 604 Single unit: Semi-detached house
## 605 Single unit: Detached house
## 606 Multi-unit house, flat
## 607 Single unit: Semi-detached house
## 608 Multi-unit house, flat
## 609 Single unit: Semi-detached house
## 610 Single unit: Terraced house
## 611 Multi-unit house, flat
## 612 Multi-unit house, flat
## 613 Multi-unit house, flat
## 614 Single unit: Detached house
## 615 Single unit: Terraced house
## 616 Single unit: Detached house
## 617 Single unit: Semi-detached house
## 618 Single unit: Terraced house
## 619 Single unit: Terraced house
## 620 Single unit: Semi-detached house
## 621 Single unit: Terraced house
## 622 Single unit: Detached house
## 623 Multi-unit house, flat
## 624 Single unit: Semi-detached house
## 625 Single unit: Terraced house
## 626 Single unit: Terraced house
## 627 Single unit: Semi-detached house
## 628 Single unit: Semi-detached house
## 629 Single unit: Detached house
## 630 Single unit: Semi-detached house
## 631 Single unit: Terraced house
## 632 Single unit: Semi-detached house
## 633 Single unit: Semi-detached house
## 634 Multi-unit house, flat
## 635 Single unit: Terraced house
## 636 Multi-unit house, flat
## 637 Single unit: Terraced house
## 638 Single unit: Semi-detached house
## 639 Multi-unit house, flat
## 640 Single unit: Detached house
## 641 Single unit: Detached house
## 642 Single unit: Semi-detached house
## 643 Single unit: Terraced house
## 644 Single unit: Semi-detached house
## 645 Single unit: Semi-detached house
## 646 Single unit: Detached house
## 647 Single unit: Detached house
## 648 Multi-unit house, flat
## 649 Single unit: Semi-detached house
## 650 Single unit: Terraced house
## 651 Single unit: Detached house
## 652 Single unit: Terraced house
## 653 Single unit: Semi-detached house
## 654 Single unit: Detached house
## 655 Single unit: Terraced house
## 656 Single unit: Semi-detached house
## 657 Single unit: Terraced house
## 658 Single unit: Terraced house
## 659 Single unit: Detached house
## 660 Single unit: Terraced house
## 661 Single unit: Terraced house
## 662 Single unit: Detached house
## 663 Single unit: Detached house
## 664 Single unit: Semi-detached house
## 665 Single unit: Detached house
## 666 Single unit: Semi-detached house
## 667 Multi-unit house, flat
## 668 Multi-unit house, flat
## 669 Single unit: Semi-detached house
## 670 Single unit: Detached house
## 671 Single unit: Semi-detached house
## 672 Single unit: Terraced house
## 673 Multi-unit house, flat
## 674 Single unit: Terraced house
## 675 Single unit: Semi-detached house
## 676 Single unit: Detached house
## 677 Multi-unit house, flat
## 678 Multi-unit: Sheltered/retirement housing
## 679 Single unit: Terraced house
## 680 Single unit: Terraced house
## 681 Single unit: Semi-detached house
## 682 Single unit: Detached house
## 683 Single unit: Semi-detached house
## 684 Single unit: Detached house
## 685 Single unit: Terraced house
## 686 Single unit: Terraced house
## 687 Single unit: Terraced house
## 688 Single unit: Terraced house
## 689 Single unit: Terraced house
## 690 Single unit: Semi-detached house
## 691 Multi-unit house, flat
## 692 Single unit: Detached house
## 693 Single unit: Semi-detached house
## 694 Single unit: Detached house
## 695 Multi-unit house, flat
## 696 Single unit: Semi-detached house
## 697 Single unit: Semi-detached house
## 698 Single unit: Terraced house
## 699 Single unit: Semi-detached house
## 700 Single unit: Terraced house
## 701 Single unit: Terraced house
## 702 Single unit: Detached house
## 703 Single unit: Semi-detached house
## 704 Single unit: Terraced house
## 705 Single unit: Terraced house
## 706 Single unit: Terraced house
## 707 Single unit: Semi-detached house
## 708 Single unit: Semi-detached house
## 709 Single unit: Semi-detached house
## 710 Single unit: Semi-detached house
## 711 Single unit: Detached house
## 712 Single unit: Semi-detached house
## 713 Single unit: Terraced house
## 714 Single unit: Semi-detached house
## 715 Single unit: Semi-detached house
## 716 Single unit: Terraced house
## 717 Multi-unit house, flat
## 718 Single unit: Semi-detached house
## 719 Single unit: Detached house
## 720 Multi-unit house, flat
## 721 Single unit: Detached house
## 722 Single unit: Semi-detached house
## 723 Single unit: Semi-detached house
## 724 Single unit: Semi-detached house
## 725 Multi-unit house, flat
## 726 Single unit: Detached house
## 727 Single unit: Terraced house
## 728 Single unit: Terraced house
## 729 Single unit: Terraced house
## 730 Single unit: Terraced house
## 731 Single unit: Semi-detached house
## 732 Single unit: Semi-detached house
## 733 Single unit: Semi-detached house
## 734 Single unit: Semi-detached house
## 735 Single unit: Semi-detached house
## 736 Single unit: Semi-detached house
## 737 Single unit: Detached house
## 738 Single unit: Detached house
## 739 Multi-unit house, flat
## 740 Single unit: Semi-detached house
## 741 Single unit: Detached house
## 742 Single unit: Semi-detached house
## 743 Single unit: Semi-detached house
## 744 Single unit: Semi-detached house
## 745 Single unit: Detached house
## 746 Single unit: Terraced house
## 747 Single unit: Semi-detached house
## 748 Multi-unit house, flat
## 749 Single unit: Terraced house
## 750 Single unit: Semi-detached house
## 751 Single unit: Terraced house
## 752 Multi-unit house, flat
## 753 Single unit: Semi-detached house
## 754 Multi-unit house, flat
## 755 Single unit: Terraced house
## 756 Single unit: Semi-detached house
## 757 Single unit: Terraced house
## 758 Single unit: Terraced house
## 759 Single unit: Detached house
## 760 Single unit: Detached house
## 761 Single unit: Terraced house
## 762 Single unit: Detached house
## 763 Single unit: Detached house
## 764 Multi-unit house, flat
## 765 Single unit: Semi-detached house
## 766 Single unit: Semi-detached house
## 767 Single unit: Detached house
## 768 Single unit: Detached house
## 769 Single unit: Semi-detached house
## 770 Single unit: Detached house
## 771 Single unit: Terraced house
## 772 Multi-unit: Sheltered/retirement housing
## 773 Single unit: Semi-detached house
## 774 Single unit: Terraced house
## 775 Single unit: Terraced house
## 776 Single unit: Semi-detached house
## 777 Single unit: Semi-detached house
## 778 Single unit: Detached house
## 779 Single unit: Semi-detached house
## 780 Multi-unit house, flat
## 781 Single unit: Detached house
## 782 Single unit: Detached house
## 783 Single unit: Semi-detached house
## 784 Multi-unit house, flat
## 785 Single unit: Terraced house
## 786 Single unit: Terraced house
## 787 Single unit: Semi-detached house
## 788 Single unit: Semi-detached house
## 789 Single unit: Semi-detached house
## 790 Multi-unit house, flat
## 791 Single unit: Semi-detached house
## 792 Single unit: Semi-detached house
## 793 Single unit: Semi-detached house
## 794 Single unit: Detached house
## 795 Multi-unit house, flat
## 796 Single unit: Terraced house
## 797 Single unit: Terraced house
## 798 Single unit: Semi-detached house
## 799 Single unit: Terraced house
## 800 Single unit: Terraced house
## 801 Single unit: Terraced house
## 802 Multi-unit: Sheltered/retirement housing
## 803 Single unit: Semi-detached house
## 804 Single unit: Terraced house
## 805 Single unit: Semi-detached house
## 806 Single unit: Semi-detached house
## 807 Single unit: Terraced house
## 808 Single unit: Terraced house
## 809 Single unit: Detached house
## 810 Single unit: Semi-detached house
## 811 Multi-unit house, flat
## 812 Single unit: Detached house
## 813 Multi-unit house, flat
## 814 Multi-unit house, flat
## 815 Single unit: Semi-detached house
## 816 Single unit: Terraced house
## 817 Multi-unit house, flat
## 818 Single unit: Detached house
## 819 Single unit: Terraced house
## 820 Multi-unit house, flat
## 821 Single unit: Detached house
## 822 Multi-unit house, flat
## 823 Single unit: Detached house
## 824 Multi-unit house, flat
## 825 Single unit: Terraced house
## 826 Single unit: Detached house
## 827 Single unit: Detached house
## 828 Single unit: Detached house
## 829 Single unit: Terraced house
## 830 Single unit: Semi-detached house
## 831 Single unit: Detached house
## 832 Single unit: Detached house
## 833 Single unit: Detached house
## 834 Single unit: Terraced house
## 835 Single unit: Detached house
## 836 Single unit: Detached house
## 837 Single unit: Semi-detached house
## 838 Single unit: Detached house
## 839 Single unit: Semi-detached house
## 840 Single unit: Detached house
## 841 Single unit: Semi-detached house
## 842 Single unit: Terraced house
## 843 Single unit: Terraced house
## 844 Single unit: Semi-detached house
## 845 Single unit: Terraced house
## 846 Single unit: Detached house
## 847 Single unit: Semi-detached house
## 848 Single unit: Detached house
## 849 Single unit: Semi-detached house
## 850 Multi-unit house, flat
## 851 Multi-unit house, flat
## 852 Single unit: Semi-detached house
## 853 Single unit: Semi-detached house
## 854 Single unit: Detached house
## 855 Single unit: Semi-detached house
## 856 Single unit: Semi-detached house
## 857 Single unit: Semi-detached house
## 858 Single unit: Semi-detached house
## 859 Single unit: Terraced house
## 860 Single unit: Semi-detached house
## 861 Multi-unit house, flat
## 862 Single unit: Detached house
## 863 Single unit: Semi-detached house
## 864 Single unit: Terraced house
## 865 Multi-unit house, flat
## 866 Single unit: Detached house
## 867 Single unit: Semi-detached house
## 868 Single unit: Detached house
## 869 Single unit: Detached house
## 870 Single unit: Terraced house
## 871 Single unit: Semi-detached house
## 872 Multi-unit house, flat
## 873 Single unit: Semi-detached house
## 874 Multi-unit house, flat
## 875 Single unit: Terraced house
## 876 Single unit: Terraced house
## 877 Single unit: Semi-detached house
## 878 Single unit: Terraced house
## 879 Single unit: Terraced house
## 880 Single unit: Detached house
## 881 Single unit: Semi-detached house
## 882 Single unit: Semi-detached house
## 883 Multi-unit house, flat
## 884 Single unit: Terraced house
## 885 Single unit: Terraced house
## 886 Single unit: Terraced house
## 887 Multi-unit house, flat
## 888 Single unit: Detached house
## 889 Multi-unit: Student apartments, rooms
## 890 Single unit: Semi-detached house
## 891 Single unit: Terraced house
## 892 Single unit: Terraced house
## 893 Multi-unit house, flat
## 894 Single unit: Semi-detached house
## 895 Single unit: Semi-detached house
## 896 Multi-unit house, flat
## 897 Single unit: Semi-detached house
## 898 Single unit: Terraced house
## 899 Single unit: Detached house
## 900 Multi-unit: Sheltered/retirement housing
## 901 Single unit: Semi-detached house
## 902 Single unit: Detached house
## 903 Single unit: Terraced house
## 904 Single unit: Detached house
## 905 Single unit: Semi-detached house
## 906 Single unit: Terraced house
## 907 Multi-unit house, flat
## 908 Single unit: Semi-detached house
## 909 Single unit: Terraced house
## 910 Single unit: Semi-detached house
## 911 Single unit: Detached house
## 912 Single unit: Detached house
## 913 Single unit: Terraced house
## 914 Single unit: Terraced house
## 915 Single unit: Detached house
## 916 Single unit: Semi-detached house
## 917 Single unit: Terraced house
## 918 Single unit: Terraced house
## 919 Single unit: Semi-detached house
## 920 Single unit: Semi-detached house
## 921 Single unit: Semi-detached house
## 922 Single unit: Semi-detached house
## 923 Single unit: Semi-detached house
## 924 Single unit: Semi-detached house
## 925 Single unit: Semi-detached house
## 926 Multi-unit house, flat
## 927 Single unit: Detached house
## 928 Single unit: Detached house
## 929 Single unit: Semi-detached house
## 930 Single unit: Semi-detached house
## 931 Single unit: Terraced house
## 932 Single unit: Terraced house
## 933 Single unit: Detached house
## 934 Single unit: Terraced house
## 935 Single unit: Semi-detached house
## 936 Single unit: Semi-detached house
## 937 Multi-unit house, flat
## 938 Single unit: Semi-detached house
## 939 Single unit: Semi-detached house
## 940 Single unit: Semi-detached house
## 941 Single unit: Detached house
## 942 Single unit: Semi-detached house
## 943 Multi-unit house, flat
## 944 Single unit: Detached house
## 945 Single unit: Terraced house
## 946 Single unit: Semi-detached house
## 947 Farm
## 948 Single unit: Terraced house
## 949 Single unit: Semi-detached house
## 950 Multi-unit house, flat
## 951 Single unit: Detached house
## 952 Multi-unit house, flat
## 953 Single unit: Detached house
## 954 Single unit: Terraced house
## 955 Single unit: Semi-detached house
## 956 Single unit: Semi-detached house
## 957 Multi-unit house, flat
## 958 Single unit: Semi-detached house
## 959 Single unit: Semi-detached house
## 960 Single unit: Detached house
## 961 Single unit: Detached house
## 962 Single unit: Terraced house
## 963 Single unit: Detached house
## 964 Multi-unit house, flat
## 965 Single unit: Semi-detached house
## 966 Multi-unit house, flat
## 967 Single unit: Detached house
## 968 Single unit: Terraced house
## 969 Multi-unit house, flat
## 970 Single unit: Detached house
## 971 Single unit: Semi-detached house
## 972 Single unit: Terraced house
## 973 Single unit: Terraced house
## 974 Single unit: Terraced house
## 975 Multi-unit house, flat
## 976 Single unit: Terraced house
## 977 Single unit: Detached house
## 978 Single unit: Semi-detached house
## 979 Single unit: Detached house
## 980 Single unit: Terraced house
## 981 Multi-unit house, flat
## 982 Single unit: Detached house
## 983 Single unit: Semi-detached house
## 984 Single unit: Semi-detached house
## 985 Single unit: Terraced house
## 986 Single unit: Terraced house
## 987 Single unit: Semi-detached house
## 988 Multi-unit house, flat
## 989 Single unit: Semi-detached house
## 990 Single unit: Terraced house
## 991 Single unit: Terraced house
## 992 Single unit: Detached house
## 993 Single unit: Detached house
## 994 Single unit: Detached house
## 995 Single unit: Detached house
## 996 Single unit: Terraced house
## 997 Single unit: Detached house
## 998 Single unit: Detached house
## 999 Multi-unit house, flat
## 1000 Single unit: Terraced house
## 1001 Single unit: Detached house
## 1002 Single unit: Detached house
## 1003 Single unit: Terraced house
## 1004 Single unit: Semi-detached house
## 1005 Single unit: Detached house
## 1006 Multi-unit house, flat
## 1007 Single unit: Semi-detached house
## 1008 Single unit: Semi-detached house
## 1009 Single unit: Detached house
## 1010 Multi-unit house, flat
## 1011 Single unit: Terraced house
## 1012 Single unit: Terraced house
## 1013 Single unit: Semi-detached house
## 1014 Single unit: Terraced house
## 1015 Single unit: Detached house
## 1016 Multi-unit house, flat
## 1017 Single unit: Detached house
## 1018 Single unit: Semi-detached house
## 1019 Single unit: Terraced house
## 1020 Single unit: Terraced house
## 1021 Single unit: Semi-detached house
## 1022 Single unit: Semi-detached house
## 1023 Multi-unit house, flat
## 1024 Single unit: Terraced house
## 1025 Single unit: Terraced house
## 1026 Single unit: Detached house
## 1027 Single unit: Semi-detached house
## 1028 Single unit: Semi-detached house
## 1029 Multi-unit house, flat
## 1030 Single unit: Semi-detached house
## 1031 Single unit: Detached house
## 1032 Single unit: Detached house
## 1033 Multi-unit house, flat
## 1034 Single unit: Terraced house
## 1035 Single unit: Semi-detached house
## 1036 Single unit: Semi-detached house
## 1037 Single unit: Terraced house
## 1038 Single unit: Semi-detached house
## 1039 Single unit: Detached house
## 1040 Multi-unit house, flat
## 1041 Multi-unit house, flat
## 1042 Single unit: Terraced house
## 1043 Single unit: Detached house
## 1044 Multi-unit house, flat
## 1045 Multi-unit house, flat
## 1046 Single unit: Terraced house
## 1047 Single unit: Semi-detached house
## 1048 Single unit: Semi-detached house
## 1049 Single unit: Semi-detached house
## 1050 Single unit: Semi-detached house
## 1051 Single unit: Terraced house
## 1052 Single unit: Terraced house
## 1053 Single unit: Detached house
## 1054 Single unit: Detached house
## 1055 Single unit: Semi-detached house
## 1056 Multi-unit house, flat
## 1057 Single unit: Semi-detached house
## 1058 Single unit: Terraced house
## 1059 Single unit: Detached house
## 1060 Single unit: Terraced house
## 1061 Single unit: Semi-detached house
## 1062 Single unit: Semi-detached house
## 1063 Single unit: Terraced house
## 1064 Single unit: Semi-detached house
## 1065 Single unit: Detached house
## 1066 Single unit: Detached house
## 1067 Single unit: Detached house
## 1068 Single unit: Semi-detached house
## 1069 Single unit: Terraced house
## 1070 Single unit: Detached house
## 1071 Multi-unit house, flat
## 1072 Farm
## 1073 Multi-unit house, flat
## 1074 Single unit: Semi-detached house
## 1075 Single unit: Terraced house
## 1076 Multi-unit house, flat
## 1077 Farm
## 1078 Single unit: Detached house
## 1079 Single unit: Terraced house
## 1080 Single unit: Detached house
## 1081 Single unit: Detached house
## 1082 Single unit: Detached house
## 1083 Single unit: Detached house
## 1084 Single unit: Terraced house
## 1085 Multi-unit house, flat
## 1086 Single unit: Terraced house
## 1087 Multi-unit house, flat
## 1088 Single unit: Semi-detached house
## 1089 Single unit: Detached house
## 1090 Single unit: Semi-detached house
## 1091 Single unit: Terraced house
## 1092 Single unit: Semi-detached house
## 1093 <NA>
## 1094 Single unit: Semi-detached house
## 1095 Single unit: Detached house
## 1096 Single unit: Semi-detached house
## 1097 Multi-unit house, flat
## 1098 Single unit: Semi-detached house
## 1099 Single unit: Detached house
## 1100 Multi-unit house, flat
## 1101 Single unit: Semi-detached house
## 1102 Single unit: Detached house
## 1103 Single unit: Terraced house
## 1104 Multi-unit house, flat
## 1105 Single unit: Semi-detached house
## 1106 Single unit: Terraced house
## 1107 Single unit: Terraced house
## 1108 Single unit: Terraced house
## 1109 Multi-unit house, flat
## 1110 Multi-unit house, flat
## 1111 Multi-unit house, flat
## 1112 Multi-unit: Sheltered/retirement housing
## 1113 Single unit: Detached house
## 1114 Single unit: Semi-detached house
## 1115 Single unit: Detached house
## 1116 Single unit: Terraced house
## 1117 Single unit: Detached house
## 1118 Single unit: Terraced house
## 1119 Multi-unit: Sheltered/retirement housing
## 1120 Single unit: Detached house
## 1121 Single unit: Detached house
## 1122 Multi-unit house, flat
## 1123 Single unit: Detached house
## 1124 Single unit: Detached house
## 1125 Multi-unit house, flat
## 1126 Single unit: Terraced house
## 1127 Multi-unit house, flat
## 1128 Single unit: Semi-detached house
## 1129 Single unit: Terraced house
## 1130 Single unit: Semi-detached house
## 1131 Single unit: Terraced house
## 1132 Single unit: Semi-detached house
## 1133 Single unit: Terraced house
## 1134 Single unit: Terraced house
## 1135 Single unit: Detached house
## 1136 Single unit: Semi-detached house
## 1137 Single unit: Detached house
## 1138 Other
## 1139 Multi-unit house, flat
## 1140 Single unit: Terraced house
## 1141 Single unit: Semi-detached house
## 1142 Single unit: Terraced house
## 1143 Single unit: Terraced house
## 1144 Multi-unit house, flat
## 1145 Single unit: Terraced house
## 1146 Single unit: Semi-detached house
## 1147 Multi-unit house, flat
## 1148 Single unit: Terraced house
## 1149 Single unit: Terraced house
## 1150 Single unit: Semi-detached house
## 1151 Single unit: Detached house
## 1152 Farm
## 1153 Single unit: Terraced house
## 1154 Single unit: Detached house
## 1155 Single unit: Detached house
## 1156 Single unit: Terraced house
## 1157 Single unit: Detached house
## 1158 Multi-unit house, flat
## 1159 Single unit: Semi-detached house
## 1160 Single unit: Detached house
## 1161 Single unit: Detached house
## 1162 Single unit: Semi-detached house
## 1163 Single unit: Detached house
## 1164 Single unit: Terraced house
## 1165 Single unit: Detached house
## 1166 Single unit: Terraced house
## 1167 Single unit: Detached house
## 1168 Single unit: Detached house
## 1169 Multi-unit house, flat
## 1170 Single unit: Detached house
## 1171 Single unit: Terraced house
## 1172 Single unit: Terraced house
## 1173 Single unit: Terraced house
## 1174 Multi-unit house, flat
## 1175 Single unit: Terraced house
## 1176 Multi-unit house, flat
## 1177 Single unit: Terraced house
## 1178 Single unit: Semi-detached house
## 1179 Single unit: Semi-detached house
## 1180 Single unit: Detached house
## 1181 Single unit: Semi-detached house
## 1182 Single unit: Semi-detached house
## 1183 Single unit: Terraced house
## 1184 Single unit: Detached house
## 1185 Single unit: Terraced house
## 1186 Single unit: Detached house
## 1187 Single unit: Terraced house
## 1188 Single unit: Terraced house
## 1189 Single unit: Detached house
## 1190 Single unit: Semi-detached house
## 1191 Single unit: Terraced house
## 1192 Multi-unit house, flat
## 1193 Single unit: Terraced house
## 1194 Single unit: Semi-detached house
## 1195 Single unit: Terraced house
## 1196 Single unit: Semi-detached house
## 1197 Single unit: Semi-detached house
## 1198 Multi-unit house, flat
## 1199 Single unit: Detached house
## 1200 Single unit: Terraced house
## 1201 Single unit: Semi-detached house
## 1202 Single unit: Semi-detached house
## 1203 Single unit: Detached house
## 1204 Single unit: Semi-detached house
## 1205 Multi-unit house, flat
## 1206 Single unit: Terraced house
## 1207 Single unit: Terraced house
## 1208 Multi-unit house, flat
## 1209 Single unit: Semi-detached house
## 1210 Farm
## 1211 Multi-unit house, flat
## 1212 Single unit: Detached house
## 1213 Multi-unit house, flat
## 1214 Single unit: Semi-detached house
## 1215 Single unit: Semi-detached house
## 1216 Single unit: Detached house
## 1217 Single unit: Terraced house
## 1218 Single unit: Terraced house
## 1219 Multi-unit house, flat
## 1220 Single unit: Semi-detached house
## 1221 Single unit: Semi-detached house
## 1222 Single unit: Detached house
## 1223 Single unit: Terraced house
## 1224 Single unit: Semi-detached house
## 1225 Single unit: Semi-detached house
## 1226 Single unit: Semi-detached house
## 1227 Single unit: Semi-detached house
## 1228 Single unit: Semi-detached house
## 1229 Single unit: Semi-detached house
## 1230 Single unit: Terraced house
## 1231 Single unit: Semi-detached house
## 1232 Single unit: Semi-detached house
## 1233 Single unit: Detached house
## 1234 Single unit: Terraced house
## 1235 Single unit: Semi-detached house
## 1236 Single unit: Semi-detached house
## 1237 Multi-unit house, flat
## 1238 Single unit: Detached house
## 1239 Multi-unit house, flat
## 1240 Single unit: Terraced house
## 1241 Single unit: Semi-detached house
## 1242 Single unit: Terraced house
## 1243 Single unit: Detached house
## 1244 Single unit: Detached house
## 1245 Single unit: Semi-detached house
## 1246 Single unit: Semi-detached house
## 1247 Single unit: Semi-detached house
## 1248 Multi-unit house, flat
## 1249 Single unit: Semi-detached house
## 1250 Other
## 1251 Single unit: Semi-detached house
## 1252 Multi-unit house, flat
## 1253 Single unit: Detached house
## 1254 Single unit: Semi-detached house
## 1255 Multi-unit house, flat
## 1256 Multi-unit house, flat
## 1257 Single unit: Terraced house
## 1258 Single unit: Semi-detached house
## 1259 Single unit: Detached house
## 1260 Single unit: Terraced house
## 1261 Single unit: Semi-detached house
## 1262 Single unit: Semi-detached house
## 1263 Single unit: Detached house
## 1264 Single unit: Semi-detached house
## 1265 Multi-unit house, flat
## 1266 Single unit: Detached house
## 1267 Single unit: Detached house
## 1268 Single unit: Terraced house
## 1269 Single unit: Detached house
## 1270 Single unit: Semi-detached house
## 1271 Single unit: Semi-detached house
## 1272 Multi-unit house, flat
## 1273 Single unit: Terraced house
## 1274 Single unit: Semi-detached house
## 1275 Single unit: Semi-detached house
## 1276 Single unit: Semi-detached house
## 1277 Single unit: Semi-detached house
## 1278 Multi-unit house, flat
## 1279 Single unit: Terraced house
## 1280 Single unit: Detached house
## 1281 Single unit: Semi-detached house
## 1282 Multi-unit house, flat
## 1283 Single unit: Semi-detached house
## 1284 Multi-unit house, flat
## 1285 Single unit: Terraced house
## 1286 Multi-unit house, flat
## 1287 Single unit: Detached house
## 1288 Multi-unit house, flat
## 1289 Single unit: Terraced house
## 1290 Single unit: Semi-detached house
## 1291 Single unit: Detached house
## 1292 Multi-unit house, flat
## 1293 Multi-unit: Student apartments, rooms
## 1294 Multi-unit house, flat
## 1295 Single unit: Detached house
## 1296 Single unit: Semi-detached house
## 1297 Multi-unit house, flat
## 1298 Single unit: Semi-detached house
## 1299 Single unit: Detached house
## 1300 Single unit: Terraced house
## 1301 Single unit: Terraced house
## 1302 Single unit: Semi-detached house
## 1303 Single unit: Detached house
## 1304 Multi-unit house, flat
## 1305 Single unit: Detached house
## 1306 Single unit: Terraced house
## 1307 Single unit: Semi-detached house
## 1308 Single unit: Terraced house
## 1309 Single unit: Detached house
## 1310 Single unit: Detached house
## 1311 Single unit: Terraced house
## 1312 Single unit: Semi-detached house
## 1313 Single unit: Terraced house
## 1314 Single unit: Detached house
## 1315 Single unit: Terraced house
## 1316 Multi-unit house, flat
## 1317 Single unit: Detached house
## 1318 Single unit: Terraced house
## 1319 Single unit: Terraced house
## 1320 Single unit: Semi-detached house
## 1321 Single unit: Semi-detached house
## 1322 Single unit: Detached house
## 1323 Multi-unit house, flat
## 1324 Single unit: Detached house
## 1325 Single unit: Semi-detached house
## 1326 Single unit: Detached house
## 1327 Multi-unit house, flat
## 1328 Single unit: Detached house
## 1329 Single unit: Detached house
## 1330 Single unit: Semi-detached house
## 1331 Single unit: Detached house
## 1332 Single unit: Terraced house
## 1333 Single unit: Detached house
## 1334 Multi-unit house, flat
## 1335 Single unit: Detached house
## 1336 Multi-unit house, flat
## 1337 Single unit: Semi-detached house
## 1338 Single unit: Semi-detached house
## 1339 Multi-unit house, flat
## 1340 Single unit: Semi-detached house
## 1341 Multi-unit house, flat
## 1342 Single unit: Detached house
## 1343 Single unit: Terraced house
## 1344 Farm
## 1345 Single unit: Semi-detached house
## 1346 Single unit: Detached house
## 1347 Single unit: Terraced house
## 1348 Single unit: Detached house
## 1349 Single unit: Semi-detached house
## 1350 Single unit: Terraced house
## 1351 Single unit: Semi-detached house
## 1352 Single unit: Detached house
## 1353 Multi-unit house, flat
## 1354 Other
## 1355 Single unit: Semi-detached house
## 1356 Single unit: Terraced house
## 1357 Single unit: Detached house
## 1358 Single unit: Terraced house
## 1359 Single unit: Terraced house
## 1360 Single unit: Semi-detached house
## 1361 Single unit: Semi-detached house
## 1362 Single unit: Semi-detached house
## 1363 Single unit: Detached house
## 1364 Single unit: Semi-detached house
## 1365 House-trailer or boat
## 1366 Single unit: Detached house
## 1367 Single unit: Semi-detached house
## 1368 Single unit: Semi-detached house
## 1369 Single unit: Detached house
## 1370 Single unit: Detached house
## 1371 Single unit: Semi-detached house
## 1372 Multi-unit house, flat
## 1373 Single unit: Terraced house
## 1374 Single unit: Semi-detached house
## 1375 Single unit: Detached house
## 1376 Single unit: Detached house
## 1377 Multi-unit house, flat
## 1378 Single unit: Terraced house
## 1379 Single unit: Detached house
## 1380 Multi-unit house, flat
## 1381 Single unit: Terraced house
## 1382 Single unit: Semi-detached house
## 1383 Single unit: Detached house
## 1384 Single unit: Detached house
## 1385 Other
## 1386 Multi-unit: Student apartments, rooms
## 1387 Single unit: Terraced house
## 1388 Single unit: Terraced house
## 1389 Single unit: Detached house
## 1390 Single unit: Detached house
## 1391 Farm
## 1392 Single unit: Terraced house
## 1393 Single unit: Detached house
## 1394 Single unit: Detached house
## 1395 Single unit: Terraced house
## 1396 Single unit: Semi-detached house
## 1397 Single unit: Semi-detached house
## 1398 Single unit: Terraced house
## 1399 Multi-unit house, flat
## 1400 Single unit: Terraced house
## 1401 Single unit: Detached house
## 1402 Single unit: Detached house
## 1403 Single unit: Semi-detached house
## 1404 Multi-unit house, flat
## 1405 Multi-unit house, flat
## 1406 Single unit: Detached house
## 1407 Multi-unit: Sheltered/retirement housing
## 1408 Single unit: Detached house
## 1409 Multi-unit house, flat
## 1410 Multi-unit house, flat
## 1411 Single unit: Semi-detached house
## 1412 Multi-unit house, flat
## 1413 Single unit: Semi-detached house
## 1414 Single unit: Terraced house
## 1415 Single unit: Detached house
## 1416 Single unit: Terraced house
## 1417 Single unit: Terraced house
## 1418 Single unit: Terraced house
## 1419 Single unit: Detached house
## 1420 Single unit: Terraced house
## 1421 Multi-unit house, flat
## 1422 Single unit: Terraced house
## 1423 Single unit: Semi-detached house
## 1424 Single unit: Terraced house
## 1425 Single unit: Terraced house
## 1426 Single unit: Detached house
## 1427 Single unit: Detached house
## 1428 Single unit: Terraced house
## 1429 Single unit: Detached house
## 1430 Single unit: Detached house
## 1431 Single unit: Detached house
## 1432 Single unit: Semi-detached house
## 1433 Single unit: Semi-detached house
## 1434 Single unit: Detached house
## 1435 Single unit: Semi-detached house
## 1436 Single unit: Semi-detached house
## 1437 Single unit: Terraced house
## 1438 Single unit: Semi-detached house
## 1439 Single unit: Terraced house
## 1440 Single unit: Terraced house
## 1441 Single unit: Detached house
## 1442 Single unit: Terraced house
## 1443 Single unit: Detached house
## 1444 Single unit: Semi-detached house
## 1445 Single unit: Terraced house
## 1446 Single unit: Terraced house
## 1447 Single unit: Semi-detached house
## 1448 Single unit: Detached house
## 1449 Single unit: Semi-detached house
## 1450 Multi-unit house, flat
## 1451 Multi-unit: Sheltered/retirement housing
## 1452 Single unit: Terraced house
## 1453 Single unit: Terraced house
## 1454 Single unit: Semi-detached house
## 1455 Multi-unit house, flat
## 1456 Single unit: Detached house
## 1457 Single unit: Terraced house
## 1458 Single unit: Semi-detached house
## 1459 Only housing unit in building with other purpose
## 1460 Single unit: Detached house
## 1461 Single unit: Terraced house
## 1462 Single unit: Detached house
## 1463 Multi-unit house, flat
## 1464 Multi-unit house, flat
## 1465 Single unit: Detached house
## 1466 Multi-unit house, flat
## 1467 Single unit: Semi-detached house
## 1468 Single unit: Detached house
## 1469 Single unit: Semi-detached house
## 1470 Single unit: Detached house
## 1471 Single unit: Semi-detached house
## 1472 Single unit: Detached house
## 1473 Single unit: Terraced house
## 1474 Single unit: Detached house
## 1475 Single unit: Terraced house
## 1476 Single unit: Semi-detached house
## 1477 Single unit: Detached house
## 1478 Single unit: Detached house
## 1479 Single unit: Terraced house
## 1480 Single unit: Terraced house
## 1481 Single unit: Terraced house
## 1482 Single unit: Terraced house
## 1483 Single unit: Semi-detached house
## 1484 Single unit: Semi-detached house
## 1485 Single unit: Terraced house
## 1486 Other
## 1487 Single unit: Terraced house
## 1488 Single unit: Semi-detached house
## 1489 Single unit: Terraced house
## 1490 Single unit: Terraced house
## 1491 Single unit: Detached house
## 1492 Single unit: Detached house
## 1493 Single unit: Semi-detached house
## 1494 Single unit: Detached house
## 1495 Single unit: Terraced house
## 1496 Multi-unit house, flat
## 1497 Single unit: Detached house
## 1498 Single unit: Detached house
## 1499 Single unit: Semi-detached house
## 1500 Single unit: Detached house
## 1501 Single unit: Terraced house
## 1502 Single unit: Detached house
## 1503 Farm
## 1504 Single unit: Semi-detached house
## 1505 Single unit: Terraced house
## 1506 Single unit: Terraced house
## 1507 Other
## 1508 Single unit: Terraced house
## 1509 Single unit: Semi-detached house
## 1510 Single unit: Terraced house
## 1511 Single unit: Terraced house
## 1512 Single unit: Terraced house
## 1513 Multi-unit house, flat
## 1514 Single unit: Terraced house
## 1515 Single unit: Semi-detached house
## 1516 Single unit: Semi-detached house
## 1517 Multi-unit house, flat
## 1518 Single unit: Terraced house
## 1519 Single unit: Terraced house
## 1520 Single unit: Detached house
## 1521 Single unit: Detached house
## 1522 Single unit: Semi-detached house
## 1523 Single unit: Detached house
## 1524 Single unit: Semi-detached house
## 1525 Single unit: Detached house
## 1526 Single unit: Terraced house
## 1527 Single unit: Semi-detached house
## 1528 Single unit: Terraced house
## 1529 Single unit: Detached house
## 1530 Single unit: Semi-detached house
## 1531 Single unit: Terraced house
## 1532 Single unit: Terraced house
## 1533 Single unit: Terraced house
## 1534 Single unit: Terraced house
## 1535 Only housing unit in building with other purpose
## 1536 Multi-unit house, flat
## 1537 Single unit: Detached house
## 1538 Single unit: Semi-detached house
## 1539 Single unit: Terraced house
## 1540 Single unit: Semi-detached house
## 1541 Single unit: Terraced house
## 1542 Single unit: Semi-detached house
## 1543 Single unit: Terraced house
## 1544 Single unit: Detached house
## 1545 Single unit: Detached house
## 1546 Single unit: Semi-detached house
## 1547 Single unit: Terraced house
## 1548 Single unit: Detached house
## 1549 Single unit: Terraced house
## 1550 Single unit: Detached house
## 1551 Multi-unit house, flat
## 1552 Multi-unit house, flat
## 1553 Single unit: Terraced house
## 1554 Multi-unit house, flat
## 1555 Single unit: Terraced house
## 1556 Single unit: Semi-detached house
## 1557 Single unit: Detached house
## 1558 Multi-unit house, flat
## 1559 Single unit: Detached house
## 1560 Single unit: Semi-detached house
## 1561 Single unit: Detached house
## 1562 Single unit: Terraced house
## 1563 Single unit: Detached house
## 1564 Multi-unit house, flat
## 1565 Single unit: Detached house
## 1566 Single unit: Detached house
## 1567 House-trailer or boat
## 1568 Single unit: Detached house
## 1569 Multi-unit house, flat
## 1570 Single unit: Detached house
## 1571 Single unit: Detached house
## 1572 Single unit: Terraced house
## 1573 Single unit: Terraced house
## 1574 Single unit: Terraced house
## 1575 Multi-unit house, flat
## 1576 Single unit: Terraced house
## 1577 Single unit: Detached house
## 1578 Single unit: Detached house
## 1579 Single unit: Terraced house
## 1580 Single unit: Detached house
## 1581 Single unit: Terraced house
## 1582 Single unit: Semi-detached house
## 1583 Single unit: Semi-detached house
## 1584 Single unit: Detached house
## 1585 Single unit: Detached house
## 1586 Single unit: Terraced house
## 1587 Single unit: Terraced house
## 1588 Single unit: Semi-detached house
## 1589 Single unit: Semi-detached house
## 1590 Single unit: Terraced house
## 1591 Farm
## 1592 Single unit: Detached house
## 1593 Single unit: Semi-detached house
## 1594 Single unit: Terraced house
## 1595 Single unit: Terraced house
## 1596 Multi-unit house, flat
## 1597 Single unit: Semi-detached house
## 1598 Single unit: Semi-detached house
## 1599 Single unit: Terraced house
## 1600 Multi-unit house, flat
## 1601 Multi-unit house, flat
## 1602 Single unit: Detached house
## 1603 Single unit: Semi-detached house
## 1604 Single unit: Semi-detached house
## 1605 Single unit: Detached house
## 1606 Single unit: Terraced house
## 1607 Single unit: Semi-detached house
## 1608 Single unit: Terraced house
## 1609 Multi-unit house, flat
## 1610 Single unit: Terraced house
## 1611 Single unit: Semi-detached house
## 1612 Single unit: Terraced house
## 1613 Multi-unit house, flat
## 1614 Single unit: Semi-detached house
## 1615 Single unit: Detached house
## 1616 Single unit: Terraced house
## 1617 Multi-unit house, flat
## 1618 Single unit: Semi-detached house
## 1619 Single unit: Semi-detached house
## 1620 Single unit: Detached house
## 1621 Single unit: Terraced house
## 1622 Single unit: Semi-detached house
## 1623 Single unit: Semi-detached house
## 1624 Single unit: Terraced house
## 1625 Single unit: Semi-detached house
## 1626 Single unit: Semi-detached house
## 1627 Single unit: Terraced house
## 1628 Multi-unit: Sheltered/retirement housing
## 1629 Single unit: Semi-detached house
## 1630 Farm
## 1631 Single unit: Detached house
## 1632 Single unit: Semi-detached house
## 1633 Single unit: Semi-detached house
## 1634 Single unit: Terraced house
## 1635 Single unit: Detached house
## 1636 Multi-unit house, flat
## 1637 Single unit: Semi-detached house
## 1638 Single unit: Detached house
## 1639 Single unit: Detached house
## 1640 Multi-unit house, flat
## 1641 Multi-unit house, flat
## 1642 Single unit: Detached house
## 1643 Single unit: Detached house
## 1644 Single unit: Semi-detached house
## 1645 Single unit: Terraced house
## 1646 Single unit: Detached house
## 1647 Single unit: Detached house
## 1648 Single unit: Semi-detached house
## 1649 Single unit: Semi-detached house
## 1650 Single unit: Detached house
## 1651 Single unit: Detached house
## 1652 Single unit: Semi-detached house
## 1653 Single unit: Semi-detached house
## 1654 Single unit: Semi-detached house
## 1655 Single unit: Detached house
## 1656 Single unit: Terraced house
## 1657 Single unit: Terraced house
## 1658 Multi-unit: Sheltered/retirement housing
## 1659 Single unit: Detached house
## 1660 Single unit: Detached house
## 1661 Single unit: Detached house
## 1662 Single unit: Detached house
## 1663 Single unit: Semi-detached house
## 1664 Single unit: Detached house
## 1665 Single unit: Semi-detached house
## 1666 Multi-unit house, flat
## 1667 Single unit: Detached house
## 1668 Single unit: Terraced house
## 1669 Single unit: Terraced house
## 1670 Single unit: Semi-detached house
## 1671 Single unit: Terraced house
## 1672 Single unit: Terraced house
## 1673 Single unit: Detached house
## 1674 Single unit: Detached house
## 1675 Single unit: Semi-detached house
## 1676 Single unit: Semi-detached house
## 1677 Single unit: Semi-detached house
## 1678 Only housing unit in building with other purpose
## 1679 Single unit: Detached house
## 1680 Single unit: Detached house
## 1681 Single unit: Semi-detached house
## 1682 Multi-unit house, flat
## 1683 Single unit: Detached house
## 1684 Single unit: Semi-detached house
## 1685 Single unit: Detached house
## 1686 Single unit: Semi-detached house
## 1687 Single unit: Detached house
## 1688 Single unit: Terraced house
## 1689 Multi-unit house, flat
## 1690 Single unit: Terraced house
## 1691 Multi-unit house, flat
## 1692 Single unit: Detached house
## 1693 Single unit: Semi-detached house
## 1694 Single unit: Semi-detached house
## 1695 Single unit: Detached house
## 1696 Single unit: Terraced house
## 1697 Multi-unit house, flat
## 1698 Single unit: Terraced house
## 1699 Single unit: Detached house
## 1700 Single unit: Detached house
## 1701 Multi-unit house, flat
## 1702 Single unit: Semi-detached house
## 1703 Single unit: Detached house
## 1704 Single unit: Detached house
## 1705 Single unit: Terraced house
## 1706 Multi-unit house, flat
## 1707 Single unit: Terraced house
## 1708 Single unit: Detached house
## 1709 Single unit: Semi-detached house
## 1710 Single unit: Detached house
## 1711 Single unit: Semi-detached house
## 1712 Single unit: Detached house
## 1713 Multi-unit house, flat
## 1714 Single unit: Terraced house
## 1715 Single unit: Detached house
## 1716 Single unit: Detached house
## 1717 Single unit: Detached house
## 1718 Single unit: Detached house
## 1719 Single unit: Semi-detached house
## 1720 Single unit: Semi-detached house
## 1721 Single unit: Terraced house
## 1722 Other
## 1723 Single unit: Detached house
## 1724 Multi-unit house, flat
## 1725 Single unit: Terraced house
## 1726 Multi-unit house, flat
## 1727 Single unit: Semi-detached house
## 1728 Single unit: Terraced house
## 1729 Multi-unit house, flat
## 1730 Single unit: Semi-detached house
## 1731 Single unit: Detached house
## 1732 Multi-unit house, flat
## 1733 Single unit: Terraced house
## 1734 Single unit: Semi-detached house
## 1735 Single unit: Terraced house
## 1736 Single unit: Semi-detached house
## 1737 Single unit: Detached house
## 1738 Single unit: Semi-detached house
## 1739 Single unit: Semi-detached house
## 1740 Single unit: Semi-detached house
## 1741 Single unit: Semi-detached house
## 1742 Single unit: Terraced house
## 1743 Single unit: Detached house
## 1744 Single unit: Detached house
## 1745 Single unit: Semi-detached house
## 1746 Single unit: Detached house
## 1747 Single unit: Terraced house
## 1748 Multi-unit house, flat
## 1749 Single unit: Detached house
## 1750 Single unit: Terraced house
## 1751 Single unit: Semi-detached house
## 1752 Multi-unit house, flat
## 1753 Single unit: Semi-detached house
## 1754 Single unit: Detached house
## 1755 Single unit: Detached house
## 1756 Multi-unit house, flat
## 1757 Single unit: Terraced house
## 1758 Single unit: Semi-detached house
## 1759 Single unit: Terraced house
## 1760 Single unit: Detached house
## 1761 Single unit: Semi-detached house
## 1762 Single unit: Terraced house
## 1763 Other
## 1764 Single unit: Terraced house
## 1765 Single unit: Semi-detached house
## 1766 Single unit: Semi-detached house
## 1767 Single unit: Semi-detached house
## 1768 Only housing unit in building with other purpose
## 1769 Single unit: Semi-detached house
## 1770 Single unit: Semi-detached house
## 1771 Single unit: Detached house
## 1772 Single unit: Semi-detached house
## 1773 Single unit: Semi-detached house
## 1774 Multi-unit house, flat
## 1775 Single unit: Detached house
## 1776 Single unit: Detached house
## 1777 Multi-unit house, flat
## 1778 Single unit: Semi-detached house
## 1779 Single unit: Terraced house
## 1780 Multi-unit house, flat
## 1781 Single unit: Semi-detached house
## 1782 Single unit: Detached house
## 1783 Single unit: Semi-detached house
## 1784 Single unit: Detached house
## 1785 Single unit: Semi-detached house
## 1786 Single unit: Semi-detached house
## 1787 Multi-unit house, flat
## 1788 Single unit: Semi-detached house
## 1789 Single unit: Semi-detached house
## 1790 Single unit: Terraced house
## 1791 Single unit: Semi-detached house
## 1792 Single unit: Semi-detached house
## 1793 Multi-unit house, flat
## 1794 Single unit: Detached house
## 1795 Single unit: Detached house
## 1796 Single unit: Semi-detached house
## 1797 Single unit: Detached house
## 1798 Single unit: Detached house
## 1799 Single unit: Terraced house
## 1800 Single unit: Terraced house
## 1801 Single unit: Detached house
## 1802 Single unit: Terraced house
## 1803 Single unit: Semi-detached house
## 1804 Single unit: Detached house
## 1805 Single unit: Semi-detached house
## 1806 Other
## 1807 Multi-unit house, flat
## 1808 Multi-unit house, flat
## 1809 Multi-unit house, flat
## 1810 Single unit: Terraced house
## 1811 Single unit: Semi-detached house
## 1812 Single unit: Detached house
## 1813 Single unit: Terraced house
## 1814 Single unit: Detached house
## 1815 Single unit: Terraced house
## 1816 Single unit: Detached house
## 1817 Single unit: Semi-detached house
## 1818 Single unit: Semi-detached house
## 1819 Single unit: Detached house
## 1820 Multi-unit house, flat
## 1821 Single unit: Semi-detached house
## 1822 Single unit: Semi-detached house
## 1823 Multi-unit house, flat
## 1824 Single unit: Semi-detached house
## 1825 Single unit: Terraced house
## 1826 Single unit: Terraced house
## 1827 Single unit: Semi-detached house
## 1828 Single unit: Terraced house
## 1829 Single unit: Detached house
## 1830 Single unit: Semi-detached house
## 1831 Single unit: Semi-detached house
## 1832 Multi-unit house, flat
## 1833 Multi-unit house, flat
## 1834 Multi-unit: Sheltered/retirement housing
## 1835 Single unit: Semi-detached house
## 1836 Single unit: Detached house
## 1837 Multi-unit house, flat
## 1838 Single unit: Semi-detached house
## 1839 Single unit: Semi-detached house
## 1840 Multi-unit house, flat
## 1841 Single unit: Terraced house
## 1842 Single unit: Detached house
## 1843 Single unit: Detached house
## 1844 Single unit: Terraced house
## 1845 Single unit: Semi-detached house
## 1846 Single unit: Semi-detached house
## 1847 Single unit: Detached house
## 1848 Multi-unit house, flat
## 1849 Single unit: Semi-detached house
## 1850 Single unit: Detached house
## 1851 Multi-unit house, flat
## 1852 Multi-unit house, flat
## 1853 Single unit: Semi-detached house
## 1854 Single unit: Terraced house
## 1855 Single unit: Detached house
## 1856 Single unit: Terraced house
## 1857 Single unit: Semi-detached house
## 1858 Multi-unit house, flat
## 1859 Single unit: Semi-detached house
## 1860 Multi-unit house, flat
## 1861 Single unit: Terraced house
## 1862 Single unit: Terraced house
## 1863 Single unit: Semi-detached house
## 1864 Single unit: Semi-detached house
## 1865 Single unit: Terraced house
## 1866 Single unit: Detached house
## 1867 Single unit: Detached house
## 1868 Multi-unit house, flat
## 1869 Multi-unit house, flat
## 1870 Single unit: Detached house
## 1871 Single unit: Terraced house
## 1872 Multi-unit house, flat
## 1873 Single unit: Detached house
## 1874 Single unit: Detached house
## 1875 Multi-unit house, flat
## 1876 Multi-unit house, flat
## 1877 Single unit: Detached house
## 1878 Single unit: Terraced house
## 1879 Single unit: Detached house
## 1880 Single unit: Detached house
## 1881 Single unit: Detached house
## 1882 Single unit: Terraced house
## 1883 Single unit: Terraced house
## 1884 Single unit: Detached house
## 1885 Single unit: Terraced house
## 1886 Single unit: Terraced house
## 1887 Single unit: Detached house
## 1888 Single unit: Semi-detached house
## 1889 Single unit: Detached house
## 1890 Single unit: Terraced house
## 1891 Multi-unit house, flat
## 1892 Single unit: Semi-detached house
## 1893 Single unit: Detached house
## 1894 Single unit: Terraced house
## 1895 Single unit: Semi-detached house
## 1896 Single unit: Detached house
## 1897 Single unit: Semi-detached house
## 1898 Multi-unit house, flat
## 1899 Single unit: Semi-detached house
## 1900 Single unit: Semi-detached house
## 1901 Single unit: Detached house
## 1902 Single unit: Detached house
## 1903 Single unit: Detached house
## 1904 Single unit: Terraced house
## 1905 Single unit: Terraced house
## 1906 Only housing unit in building with other purpose
## 1907 Single unit: Semi-detached house
## 1908 Single unit: Detached house
## 1909 Single unit: Terraced house
## 1910 Single unit: Semi-detached house
## 1911 Single unit: Semi-detached house
## 1912 Single unit: Terraced house
## 1913 Single unit: Semi-detached house
## 1914 Single unit: Semi-detached house
## 1915 Multi-unit house, flat
## 1916 Single unit: Semi-detached house
## 1917 Single unit: Semi-detached house
## 1918 Single unit: Detached house
## 1919 Single unit: Semi-detached house
## 1920 Single unit: Detached house
## 1921 Single unit: Terraced house
## 1922 Single unit: Detached house
## 1923 Single unit: Semi-detached house
## 1924 Single unit: Semi-detached house
## 1925 Single unit: Terraced house
## 1926 Multi-unit house, flat
## 1927 Single unit: Semi-detached house
## 1928 Single unit: Semi-detached house
## 1929 Single unit: Terraced house
## 1930 Multi-unit: Sheltered/retirement housing
## 1931 Single unit: Terraced house
## 1932 Single unit: Detached house
## 1933 Single unit: Detached house
## 1934 Single unit: Terraced house
## 1935 Single unit: Semi-detached house
## 1936 Single unit: Terraced house
## 1937 Single unit: Semi-detached house
## 1938 Multi-unit house, flat
## 1939 Single unit: Detached house
## 1940 Multi-unit house, flat
## 1941 Single unit: Terraced house
## 1942 Single unit: Semi-detached house
## 1943 Single unit: Terraced house
## 1944 Single unit: Detached house
## 1945 Single unit: Terraced house
## 1946 Single unit: Semi-detached house
## 1947 Single unit: Semi-detached house
## 1948 Single unit: Terraced house
## 1949 Single unit: Terraced house
## 1950 Single unit: Semi-detached house
## 1951 Single unit: Semi-detached house
## 1952 Multi-unit house, flat
## 1953 Single unit: Terraced house
## 1954 Single unit: Detached house
## 1955 Multi-unit house, flat
## 1956 Single unit: Semi-detached house
## 1957 Single unit: Terraced house
## 1958 Multi-unit house, flat
## 1959 Single unit: Semi-detached house
## 1960 Single unit: Terraced house
## 1961 Single unit: Semi-detached house
## 1962 Single unit: Terraced house
## 1963 Other
## 1964 Single unit: Semi-detached house
## 1965 Single unit: Terraced house
## 1966 Multi-unit house, flat
## 1967 Multi-unit house, flat
## 1968 Multi-unit house, flat
## 1969 Single unit: Semi-detached house
## 1970 Single unit: Terraced house
## 1971 Single unit: Terraced house
## 1972 Multi-unit house, flat
## 1973 Single unit: Semi-detached house
## 1974 Single unit: Detached house
## 1975 Single unit: Terraced house
## 1976 Single unit: Detached house
## 1977 Multi-unit house, flat
## 1978 Multi-unit house, flat
## 1979 Single unit: Terraced house
## 1980 Single unit: Detached house
## 1981 Single unit: Terraced house
## 1982 Single unit: Semi-detached house
## 1983 Single unit: Terraced house
## 1984 Single unit: Semi-detached house
## 1985 Single unit: Terraced house
## 1986 Single unit: Detached house
## 1987 Single unit: Detached house
## 1988 Single unit: Detached house
## 1989 Single unit: Semi-detached house
## 1990 Single unit: Detached house
## 1991 Single unit: Semi-detached house
## 1992 Single unit: Terraced house
## 1993 Single unit: Terraced house
## 1994 Single unit: Terraced house
## 1995 Single unit: Terraced house
## 1996 Single unit: Terraced house
## 1997 Single unit: Terraced house
## 1998 Single unit: Semi-detached house
## 1999 Single unit: Semi-detached house
## 2000 Single unit: Detached house
## 2001 Single unit: Terraced house
## 2002 Single unit: Semi-detached house
## 2003 Single unit: Detached house
## 2004 Single unit: Detached house
## 2005 Single unit: Semi-detached house
## 2006 Single unit: Detached house
## 2007 Single unit: Semi-detached house
## 2008 Single unit: Terraced house
## 2009 Single unit: Terraced house
## 2010 Single unit: Terraced house
## 2011 Single unit: Terraced house
## 2012 Single unit: Terraced house
## 2013 Single unit: Terraced house
## 2014 Single unit: Terraced house
## 2015 Single unit: Semi-detached house
## 2016 Single unit: Detached house
## 2017 Single unit: Semi-detached house
## 2018 Single unit: Detached house
## 2019 Single unit: Semi-detached house
## 2020 Single unit: Detached house
## 2021 Multi-unit house, flat
## 2022 Multi-unit house, flat
## 2023 Single unit: Semi-detached house
## 2024 Single unit: Terraced house
## 2025 Single unit: Detached house
## 2026 Single unit: Detached house
## 2027 Single unit: Semi-detached house
## 2028 Single unit: Terraced house
## 2029 Single unit: Detached house
## 2030 Single unit: Detached house
## 2031 Single unit: Terraced house
## 2032 Single unit: Terraced house
## 2033 Multi-unit house, flat
## 2034 Single unit: Terraced house
## 2035 Single unit: Semi-detached house
## 2036 Single unit: Semi-detached house
## 2037 Single unit: Terraced house
## 2038 Multi-unit house, flat
## 2039 Single unit: Semi-detached house
## 2040 Single unit: Terraced house
## 2041 Single unit: Terraced house
## 2042 Single unit: Semi-detached house
## 2043 Single unit: Detached house
## 2044 Single unit: Semi-detached house
## 2045 Multi-unit house, flat
## 2046 Other
## 2047 Single unit: Detached house
## 2048 Single unit: Detached house
## 2049 Other
## 2050 Single unit: Semi-detached house
## 2051 Single unit: Terraced house
## 2052 Single unit: Detached house
## 2053 Single unit: Semi-detached house
## 2054 Multi-unit house, flat
## 2055 Single unit: Terraced house
## 2056 Single unit: Detached house
## 2057 Multi-unit house, flat
## 2058 Single unit: Detached house
## 2059 Single unit: Semi-detached house
## 2060 Single unit: Semi-detached house
## 2061 Single unit: Terraced house
## 2062 Single unit: Detached house
## 2063 Single unit: Terraced house
## 2064 Single unit: Detached house
## 2065 Single unit: Terraced house
## 2066 Single unit: Detached house
## 2067 Single unit: Semi-detached house
## 2068 Single unit: Terraced house
## 2069 Multi-unit house, flat
## 2070 Single unit: Semi-detached house
## 2071 Single unit: Semi-detached house
## 2072 Single unit: Detached house
## 2073 Single unit: Semi-detached house
## 2074 Single unit: Semi-detached house
## 2075 Single unit: Detached house
## 2076 Multi-unit: Sheltered/retirement housing
## 2077 Single unit: Semi-detached house
## 2078 Single unit: Terraced house
## 2079 Single unit: Detached house
## 2080 Single unit: Terraced house
## 2081 Single unit: Semi-detached house
## 2082 Farm
## 2083 Single unit: Terraced house
## 2084 Single unit: Terraced house
## 2085 Farm
## 2086 Single unit: Detached house
## 2087 Multi-unit house, flat
## 2088 Single unit: Terraced house
## 2089 Single unit: Terraced house
## 2090 Single unit: Detached house
## 2091 Single unit: Semi-detached house
## 2092 Single unit: Semi-detached house
## 2093 Single unit: Terraced house
## 2094 Multi-unit house, flat
## 2095 Single unit: Semi-detached house
## 2096 Single unit: Detached house
## 2097 Single unit: Semi-detached house
## 2098 Single unit: Terraced house
## 2099 Single unit: Detached house
## 2100 Single unit: Terraced house
## 2101 Multi-unit house, flat
## 2102 Single unit: Semi-detached house
## 2103 Single unit: Terraced house
## 2104 Single unit: Semi-detached house
## 2105 Single unit: Semi-detached house
## 2106 Single unit: Detached house
## 2107 Multi-unit house, flat
## 2108 Single unit: Terraced house
## 2109 Single unit: Detached house
## 2110 Single unit: Terraced house
## 2111 Single unit: Detached house
## 2112 Single unit: Detached house
## 2113 Single unit: Semi-detached house
## 2114 Single unit: Terraced house
## 2115 Single unit: Terraced house
## 2116 Single unit: Detached house
## 2117 Single unit: Detached house
## 2118 Multi-unit house, flat
## 2119 Single unit: Terraced house
## 2120 Single unit: Semi-detached house
## 2121 Single unit: Terraced house
## 2122 Multi-unit house, flat
## 2123 Single unit: Terraced house
## 2124 Single unit: Detached house
## 2125 Single unit: Terraced house
## 2126 Single unit: Terraced house
## 2127 Single unit: Terraced house
## 2128 Single unit: Terraced house
## 2129 Multi-unit house, flat
## 2130 Single unit: Detached house
## 2131 Single unit: Semi-detached house
## 2132 Single unit: Semi-detached house
## 2133 Multi-unit house, flat
## 2134 Single unit: Detached house
## 2135 Single unit: Semi-detached house
## 2136 Single unit: Detached house
## 2137 Single unit: Semi-detached house
## 2138 Single unit: Terraced house
## 2139 Single unit: Semi-detached house
## 2140 Farm
## 2141 Single unit: Terraced house
## 2142 Single unit: Terraced house
## 2143 Single unit: Semi-detached house
## 2144 Single unit: Semi-detached house
## 2145 Single unit: Detached house
## 2146 Single unit: Semi-detached house
## 2147 Single unit: Semi-detached house
## 2148 Single unit: Semi-detached house
## 2149 Single unit: Terraced house
## 2150 Single unit: Semi-detached house
## 2151 Single unit: Terraced house
## 2152 Farm
## 2153 Multi-unit house, flat
## 2154 Single unit: Semi-detached house
## 2155 Single unit: Terraced house
## 2156 Single unit: Semi-detached house
## 2157 Single unit: Semi-detached house
## 2158 Single unit: Detached house
## 2159 Single unit: Detached house
## 2160 Multi-unit house, flat
## 2161 Single unit: Semi-detached house
## 2162 Single unit: Terraced house
## 2163 Single unit: Semi-detached house
## 2164 Single unit: Terraced house
## 2165 Single unit: Semi-detached house
## 2166 Single unit: Semi-detached house
## 2167 Single unit: Semi-detached house
## 2168 Single unit: Detached house
## 2169 Single unit: Semi-detached house
## 2170 Single unit: Semi-detached house
## 2171 Multi-unit house, flat
## 2172 Single unit: Detached house
## 2173 Single unit: Semi-detached house
## 2174 Single unit: Semi-detached house
## 2175 Farm
## 2176 Single unit: Detached house
## 2177 Single unit: Detached house
## 2178 Single unit: Detached house
## 2179 Single unit: Terraced house
## 2180 Single unit: Detached house
## 2181 Single unit: Detached house
## 2182 Single unit: Detached house
## 2183 Multi-unit house, flat
## 2184 Single unit: Detached house
## 2185 Multi-unit house, flat
## 2186 Single unit: Terraced house
## 2187 Single unit: Detached house
## 2188 Single unit: Semi-detached house
## 2189 Single unit: Detached house
## 2190 Single unit: Terraced house
## 2191 Multi-unit house, flat
## 2192 Single unit: Detached house
## 2193 Single unit: Semi-detached house
## 2194 Multi-unit house, flat
## 2195 Single unit: Terraced house
## 2196 Single unit: Semi-detached house
## 2197 Single unit: Detached house
## 2198 Single unit: Terraced house
## 2199 Multi-unit house, flat
## 2200 Single unit: Terraced house
## 2201 Single unit: Terraced house
## 2202 Single unit: Terraced house
## 2203 Single unit: Semi-detached house
## 2204 Single unit: Terraced house
## 2205 Multi-unit house, flat
## 2206 Single unit: Detached house
## 2207 Single unit: Terraced house
## 2208 Single unit: Detached house
## 2209 Single unit: Detached house
## 2210 Single unit: Detached house
## 2211 Single unit: Terraced house
## 2212 Single unit: Terraced house
## 2213 Multi-unit house, flat
## 2214 Single unit: Semi-detached house
## 2215 Single unit: Detached house
## 2216 Multi-unit house, flat
## 2217 Single unit: Semi-detached house
## 2218 Single unit: Terraced house
## 2219 Single unit: Terraced house
## 2220 Single unit: Terraced house
## 2221 Single unit: Terraced house
## 2222 Only housing unit in building with other purpose
## 2223 Single unit: Terraced house
## 2224 Single unit: Semi-detached house
## 2225 Single unit: Detached house
## 2226 Single unit: Detached house
## 2227 Single unit: Semi-detached house
## 2228 Single unit: Semi-detached house
## 2229 Single unit: Terraced house
## 2230 Single unit: Detached house
## 2231 Single unit: Detached house
## 2232 Multi-unit house, flat
## 2233 Single unit: Terraced house
## 2234 Single unit: Detached house
## 2235 Single unit: Semi-detached house
## 2236 Single unit: Terraced house
## 2237 Single unit: Terraced house
## 2238 Single unit: Semi-detached house
## 2239 Single unit: Semi-detached house
## 2240 Single unit: Terraced house
## 2241 Single unit: Detached house
## 2242 Multi-unit house, flat
## 2243 Multi-unit house, flat
## 2244 Single unit: Terraced house
## 2245 Multi-unit: Student apartments, rooms
## 2246 Single unit: Terraced house
## 2247 Multi-unit house, flat
## 2248 Single unit: Semi-detached house
## 2249 Single unit: Detached house
## 2250 Single unit: Detached house
## 2251 Single unit: Detached house
## 2252 Single unit: Semi-detached house
## 2253 Single unit: Semi-detached house
## 2254 Single unit: Detached house
## 2255 Single unit: Terraced house
## 2256 Single unit: Semi-detached house
## 2257 Single unit: Detached house
## 2258 Single unit: Detached house
## 2259 Single unit: Detached house
## 2260 Single unit: Semi-detached house
## 2261 Single unit: Terraced house
## 2262 Single unit: Detached house
## 2263 Single unit: Terraced house
## 2264 Single unit: Terraced house
## 2265 Multi-unit: Sheltered/retirement housing
## 2266 <NA>
## 2267 Multi-unit house, flat
## 2268 Single unit: Semi-detached house
## 2269 Single unit: Detached house
## 2270 <NA>
## 2271 Multi-unit house, flat
## 2272 Multi-unit house, flat
## 2273 Single unit: Terraced house
## 2274 <NA>
## 2275 Only housing unit in building with other purpose
## 2276 Single unit: Semi-detached house
## 2277 Single unit: Terraced house
## 2278 Multi-unit house, flat
## 2279 Multi-unit house, flat
## 2280 Single unit: Detached house
## 2281 Single unit: Semi-detached house
## 2282 Single unit: Semi-detached house
## 2283 <NA>
## 2284 Single unit: Terraced house
## 2285 Single unit: Detached house
## 2286 Single unit: Semi-detached house
## 2287 <NA>
## 2288 <NA>
## 2289 Single unit: Terraced house
## 2290 Single unit: Detached house
## 2291 Single unit: Semi-detached house
## 2292 Single unit: Terraced house
## 2293 Single unit: Detached house
## 2294 Multi-unit house, flat
## 2295 Single unit: Detached house
## 2296 Multi-unit: Sheltered/retirement housing
## 2297 Single unit: Semi-detached house
## 2298 Single unit: Detached house
## 2299 Single unit: Terraced house
## 2300 Single unit: Terraced house
## 2301 <NA>
## 2302 <NA>
## 2303 <NA>
## 2304 <NA>
## 2305 Single unit: Semi-detached house
## 2306 <NA>
## 2307 <NA>
## 2308 Single unit: Terraced house
## 2309 Single unit: Terraced house
## 2310 Single unit: Semi-detached house
## 2311 <NA>
## 2312 Single unit: Terraced house
## 2313 <NA>
## 2314 Multi-unit house, flat
## 2315 Single unit: Semi-detached house
## 2316 Single unit: Semi-detached house
## 2317 Single unit: Semi-detached house
## 2318 Single unit: Terraced house
## 2319 Multi-unit house, flat
## 2320 Multi-unit house, flat
## 2321 Single unit: Semi-detached house
## 2322 Multi-unit house, flat
## 2323 Only housing unit in building with other purpose
## 2324 <NA>
## 2325 Single unit: Detached house
## 2326 Single unit: Semi-detached house
## 2327 Single unit: Terraced house
## 2328 <NA>
## 2329 Single unit: Detached house
## 2330 Single unit: Detached house
## 2331 Single unit: Semi-detached house
## 2332 <NA>
## 2333 Single unit: Terraced house
## 2334 Single unit: Semi-detached house
## 2335 Single unit: Terraced house
## 2336 Single unit: Detached house
## 2337 Single unit: Semi-detached house
## 2338 Single unit: Terraced house
## 2339 Single unit: Semi-detached house
## 2340 Single unit: Detached house
## 2341 <NA>
## 2342 Single unit: Semi-detached house
## 2343 Multi-unit house, flat
## 2344 Single unit: Terraced house
## 2345 Single unit: Terraced house
## 2346 Only housing unit in building with other purpose
## 2347 Single unit: Semi-detached house
## 2348 Single unit: Terraced house
## 2349 <NA>
## 2350 Single unit: Detached house
## 2351 Single unit: Terraced house
## 2352 Single unit: Detached house
## 2353 <NA>
## 2354 Single unit: Detached house
## 2355 Multi-unit house, flat
## 2356 Single unit: Semi-detached house
## 2357 Single unit: Detached house
## 2358 Single unit: Semi-detached house
## 2359 <NA>
## 2360 Single unit: Terraced house
## 2361 Multi-unit house, flat
## 2362 Single unit: Detached house
## 2363 Single unit: Semi-detached house
## 2364 Single unit: Detached house
## 2365 <NA>
## 2366 Single unit: Detached house
## 2367 Multi-unit house, flat
## 2368 Single unit: Semi-detached house
## 2369 Multi-unit house, flat
## 2370 Single unit: Semi-detached house
## 2371 Single unit: Detached house
## 2372 Single unit: Detached house
## 2373 Single unit: Terraced house
## 2374 Single unit: Semi-detached house
## 2375 <NA>
## 2376 Single unit: Detached house
## 2377 Single unit: Detached house
## 2378 Single unit: Detached house
## 2379 <NA>
## 2380 Single unit: Detached house
## 2381 Multi-unit house, flat
## 2382 Single unit: Terraced house
## 2383 Multi-unit house, flat
## 2384 Single unit: Semi-detached house
## 2385 Single unit: Detached house
## 2386 Single unit: Terraced house
## 2387 Single unit: Terraced house
## 2388 Single unit: Semi-detached house
## 2389 <NA>
## 2390 Multi-unit house, flat
## 2391 <NA>
## 2392 Single unit: Terraced house
## 2393 Single unit: Terraced house
## 2394 Single unit: Terraced house
## 2395 Single unit: Detached house
## 2396 Single unit: Semi-detached house
## 2397 Single unit: Detached house
## 2398 Single unit: Terraced house
## 2399 Single unit: Detached house
## 2400 Multi-unit house, flat
## 2401 Single unit: Detached house
## 2402 Single unit: Terraced house
## 2403 Single unit: Semi-detached house
## 2404 Single unit: Detached house
## 2405 Single unit: Terraced house
## 2406 Multi-unit house, flat
## 2407 Single unit: Semi-detached house
## 2408 <NA>
## 2409 Single unit: Semi-detached house
## 2410 Multi-unit house, flat
## 2411 Single unit: Terraced house
## 2412 Single unit: Semi-detached house
## 2413 Single unit: Terraced house
## 2414 Multi-unit house, flat
## 2415 Single unit: Terraced house
## 2416 Single unit: Semi-detached house
## 2417 Single unit: Semi-detached house
## 2418 Single unit: Semi-detached house
## 2419 Single unit: Detached house
## 2420 Single unit: Detached house
## 2421 <NA>
## 2422 Single unit: Terraced house
## 2423 Single unit: Semi-detached house
## 2424 Multi-unit: Sheltered/retirement housing
## 2425 Single unit: Detached house
## 2426 Single unit: Detached house
## 2427 Single unit: Terraced house
## 2428 Single unit: Detached house
## 2429 Other
## 2430 Single unit: Semi-detached house
## 2431 Multi-unit house, flat
## 2432 Single unit: Semi-detached house
## 2433 Single unit: Detached house
## 2434 Single unit: Semi-detached house
## 2435 <NA>
## 2436 <NA>
## 2437 <NA>
## 2438 Single unit: Semi-detached house
## 2439 Single unit: Terraced house
## 2440 Single unit: Semi-detached house
## 2441 Multi-unit house, flat
## 2442 Single unit: Semi-detached house
## 2443 Single unit: Detached house
## 2444 <NA>
## 2445 Single unit: Semi-detached house
## 2446 Single unit: Detached house
## 2447 Single unit: Semi-detached house
## 2448 Single unit: Semi-detached house
## 2449 Other
## 2450 Multi-unit house, flat
## 2451 Multi-unit house, flat
## 2452 <NA>
## 2453 Single unit: Semi-detached house
## 2454 <NA>
## 2455 Multi-unit house, flat
## 2456 Single unit: Semi-detached house
## 2457 Multi-unit house, flat
## 2458 Multi-unit house, flat
## 2459 <NA>
## 2460 Single unit: Terraced house
## 2461 Single unit: Detached house
## 2462 Single unit: Terraced house
## 2463 Single unit: Terraced house
## 2464 Multi-unit house, flat
## 2465 <NA>
## 2466 Single unit: Terraced house
## 2467 Single unit: Semi-detached house
## 2468 Single unit: Semi-detached house
## 2469 Multi-unit house, flat
## 2470 <NA>
## 2471 Single unit: Semi-detached house
## 2472 Multi-unit house, flat
## 2473 Multi-unit house, flat
## 2474 Multi-unit house, flat
## 2475 Single unit: Terraced house
## 2476 Single unit: Terraced house
## 2477 Single unit: Detached house
## 2478 Single unit: Detached house
## 2479 <NA>
## 2480 Single unit: Terraced house
## 2481 Single unit: Terraced house
## 2482 <NA>
## 2483 <NA>
## 2484 Single unit: Detached house
## 2485 Multi-unit house, flat
## 2486 Multi-unit house, flat
## 2487 Single unit: Detached house
## 2488 Single unit: Terraced house
## 2489 Single unit: Terraced house
## 2490 Single unit: Terraced house
## 2491 Multi-unit house, flat
## 2492 <NA>
## 2493 Other
## 2494 Single unit: Terraced house
## 2495 Single unit: Semi-detached house
## 2496 <NA>
## 2497 Single unit: Terraced house
## 2498 Single unit: Detached house
## 2499 Single unit: Terraced house
## 2500 Single unit: Terraced house
## 2501 Single unit: Semi-detached house
## 2502 Single unit: Terraced house
## 2503 Single unit: Terraced house
## 2504 <NA>
## 2505 Single unit: Semi-detached house
## 2506 Single unit: Detached house
## 2507 Multi-unit house, flat
## 2508 Single unit: Semi-detached house
## 2509 Single unit: Detached house
## 2510 Single unit: Terraced house
## 2511 Single unit: Detached house
## 2512 Single unit: Semi-detached house
## 2513 <NA>
## 2514 Single unit: Detached house
## 2515 Single unit: Terraced house
## 2516 Single unit: Terraced house
## 2517 Single unit: Detached house
## 2518 Single unit: Semi-detached house
## 2519 <NA>
## 2520 Multi-unit house, flat
## 2521 <NA>
## 2522 Single unit: Terraced house
## 2523 Single unit: Terraced house
## 2524 Single unit: Terraced house
## 2525 Single unit: Detached house
## 2526 Single unit: Semi-detached house
## 2527 Multi-unit house, flat
## 2528 Multi-unit house, flat
## 2529 Single unit: Detached house
## 2530 Single unit: Detached house
## 2531 Only housing unit in building with other purpose
## 2532 Single unit: Semi-detached house
## 2533 Single unit: Terraced house
## 2534 <NA>
## 2535 Multi-unit house, flat
## 2536 Single unit: Semi-detached house
## 2537 Multi-unit house, flat
## 2538 <NA>
## 2539 Single unit: Terraced house
## 2540 <NA>
## 2541 Single unit: Terraced house
## 2542 <NA>
## 2543 Single unit: Detached house
## 2544 <NA>
## 2545 Single unit: Semi-detached house
## 2546 <NA>
## 2547 Multi-unit house, flat
## 2548 Single unit: Semi-detached house
## 2549 Single unit: Detached house
## 2550 Single unit: Semi-detached house
## 2551 Multi-unit house, flat
## 2552 Multi-unit house, flat
## 2553 Single unit: Terraced house
## 2554 Single unit: Semi-detached house
## 2555 Single unit: Semi-detached house
## 2556 Single unit: Terraced house
## 2557 Single unit: Terraced house
## 2558 Single unit: Semi-detached house
## 2559 Single unit: Semi-detached house
## 2560 Single unit: Semi-detached house
## 2561 Single unit: Detached house
## 2562 Single unit: Semi-detached house
## 2563 Single unit: Detached house
## 2564 Single unit: Terraced house
## 2565 Single unit: Semi-detached house
## 2566 Single unit: Semi-detached house
## 2567 Single unit: Terraced house
## 2568 Single unit: Semi-detached house
## 2569 Multi-unit house, flat
## 2570 Single unit: Semi-detached house
## 2571 <NA>
## 2572 Multi-unit house, flat
## 2573 Single unit: Detached house
## 2574 Single unit: Terraced house
## 2575 Single unit: Detached house
## 2576 <NA>
## 2577 Multi-unit house, flat
## 2578 Multi-unit house, flat
## 2579 <NA>
## 2580 Single unit: Terraced house
## 2581 Single unit: Semi-detached house
## 2582 Single unit: Terraced house
## 2583 Single unit: Detached house
## 2584 Single unit: Terraced house
## 2585 Multi-unit house, flat
## 2586 Single unit: Terraced house
## 2587 Multi-unit house, flat
## 2588 Single unit: Semi-detached house
## 2589 Single unit: Semi-detached house
## 2590 Multi-unit house, flat
## 2591 Single unit: Terraced house
## 2592 Single unit: Semi-detached house
## 2593 Single unit: Semi-detached house
## 2594 Single unit: Semi-detached house
## 2595 Single unit: Semi-detached house
## 2596 Single unit: Terraced house
## 2597 Single unit: Semi-detached house
## 2598 <NA>
## 2599 Single unit: Terraced house
## 2600 Single unit: Detached house
## 2601 <NA>
## 2602 Single unit: Detached house
## 2603 Multi-unit house, flat
## 2604 Single unit: Semi-detached house
## 2605 Multi-unit house, flat
## 2606 Single unit: Terraced house
## 2607 Multi-unit house, flat
## 2608 Single unit: Terraced house
## 2609 <NA>
## 2610 Single unit: Semi-detached house
## 2611 Single unit: Terraced house
## 2612 <NA>
## 2613 Single unit: Terraced house
## 2614 <NA>
## 2615 Multi-unit house, flat
## 2616 Single unit: Semi-detached house
## 2617 Single unit: Terraced house
## 2618 Multi-unit house, flat
## 2619 Single unit: Detached house
## 2620 Only housing unit in building with other purpose
## 2621 Multi-unit house, flat
## 2622 Single unit: Detached house
## 2623 Single unit: Terraced house
## 2624 Multi-unit house, flat
## 2625 Single unit: Semi-detached house
## 2626 Single unit: Detached house
## 2627 Single unit: Terraced house
## 2628 Single unit: Semi-detached house
## 2629 Single unit: Terraced house
## 2630 Multi-unit house, flat
## 2631 Single unit: Terraced house
## 2632 Single unit: Semi-detached house
## 2633 Single unit: Semi-detached house
## 2634 Single unit: Terraced house
## 2635 Single unit: Semi-detached house
## 2636 Multi-unit house, flat
## 2637 Multi-unit house, flat
## 2638 Single unit: Terraced house
## 2639 <NA>
## 2640 Single unit: Detached house
## 2641 Multi-unit house, flat
## 2642 Single unit: Semi-detached house
## 2643 Single unit: Terraced house
## 2644 <NA>
## 2645 Multi-unit house, flat
## 2646 <NA>
## 2647 <NA>
## 2648 Multi-unit house, flat
## 2649 Single unit: Terraced house
## 2650 <NA>
## 2651 Single unit: Semi-detached house
## 2652 Single unit: Terraced house
## 2653 Single unit: Semi-detached house
## 2654 Multi-unit house, flat
## 2655 <NA>
## 2656 Multi-unit house, flat
## 2657 <NA>
## 2658 <NA>
## 2659 Multi-unit house, flat
## 2660 Single unit: Semi-detached house
## 2661 Single unit: Semi-detached house
## 2662 Single unit: Detached house
## 2663 Multi-unit house, flat
## 2664 Single unit: Terraced house
## 2665 Single unit: Semi-detached house
## 2666 Single unit: Terraced house
## 2667 Single unit: Semi-detached house
## 2668 <NA>
## 2669 <NA>
## 2670 Multi-unit house, flat
## 2671 Single unit: Semi-detached house
## 2672 Single unit: Semi-detached house
## 2673 Single unit: Terraced house
## 2674 Single unit: Terraced house
## 2675 Multi-unit house, flat
## 2676 Multi-unit house, flat
## 2677 Single unit: Semi-detached house
## 2678 Single unit: Detached house
## 2679 Single unit: Detached house
## 2680 Single unit: Detached house
## 2681 Single unit: Semi-detached house
## 2682 Single unit: Semi-detached house
## 2683 Single unit: Detached house
## 2684 Single unit: Terraced house
## 2685 Single unit: Terraced house
## 2686 Multi-unit house, flat
## 2687 Multi-unit house, flat
## 2688 Multi-unit house, flat
## 2689 Single unit: Terraced house
## 2690 Single unit: Semi-detached house
## 2691 <NA>
## 2692 Single unit: Semi-detached house
## 2693 Single unit: Terraced house
## 2694 Single unit: Detached house
## 2695 Single unit: Detached house
## 2696 <NA>
## 2697 Single unit: Detached house
## 2698 Single unit: Detached house
## 2699 Single unit: Terraced house
## 2700 Single unit: Detached house
## 2701 <NA>
## 2702 Multi-unit house, flat
## 2703 Single unit: Semi-detached house
## 2704 Single unit: Terraced house
## 2705 Single unit: Semi-detached house
## 2706 Multi-unit house, flat
## 2707 Multi-unit house, flat
## 2708 Single unit: Semi-detached house
## 2709 Multi-unit house, flat
## 2710 Multi-unit house, flat
## 2711 <NA>
## 2712 Single unit: Semi-detached house
## 2713 Single unit: Semi-detached house
## 2714 Single unit: Terraced house
## 2715 Single unit: Semi-detached house
## 2716 Single unit: Detached house
## 2717 Single unit: Detached house
## 2718 Single unit: Terraced house
## 2719 Single unit: Detached house
## 2720 Single unit: Semi-detached house
## 2721 <NA>
## 2722 Multi-unit house, flat
## 2723 Single unit: Detached house
## 2724 Only housing unit in building with other purpose
## 2725 Single unit: Semi-detached house
## 2726 Single unit: Semi-detached house
## 2727 Multi-unit house, flat
## 2728 Single unit: Semi-detached house
## 2729 Multi-unit house, flat
## 2730 Single unit: Detached house
## 2731 Single unit: Semi-detached house
## 2732 Single unit: Detached house
## 2733 Single unit: Terraced house
## 2734 Single unit: Terraced house
## 2735 Single unit: Detached house
## 2736 Multi-unit house, flat
## 2737 Multi-unit house, flat
## 2738 Single unit: Semi-detached house
## 2739 Single unit: Terraced house
## 2740 Single unit: Semi-detached house
## 2741 Single unit: Detached house
## 2742 <NA>
## 2743 Single unit: Terraced house
## 2744 Single unit: Terraced house
## 2745 Single unit: Detached house
## 2746 <NA>
## 2747 Single unit: Terraced house
## 2748 Single unit: Terraced house
## 2749 Single unit: Detached house
## 2750 Single unit: Terraced house
## 2751 Single unit: Detached house
## 2752 Single unit: Terraced house
## 2753 Multi-unit house, flat
## 2754 Single unit: Semi-detached house
## 2755 Single unit: Terraced house
## 2756 Single unit: Semi-detached house
## 2757 <NA>
## 2758 Single unit: Terraced house
## 2759 Single unit: Detached house
## 2760 Multi-unit house, flat
## 2761 Single unit: Terraced house
## 2762 Multi-unit house, flat
## 2763 Multi-unit house, flat
## 2764 <NA>
## 2765 Single unit: Terraced house
## 2766 Single unit: Detached house
## 2767 Single unit: Semi-detached house
## 2768 Multi-unit house, flat
## 2769 Multi-unit house, flat
## 2770 <NA>
## 2771 Single unit: Semi-detached house
## 2772 Single unit: Semi-detached house
## 2773 Single unit: Semi-detached house
## 2774 Single unit: Semi-detached house
## 2775 Multi-unit house, flat
## 2776 <NA>
## 2777 Single unit: Terraced house
## 2778 Single unit: Terraced house
## 2779 <NA>
## 2780 Single unit: Terraced house
## 2781 Single unit: Terraced house
## 2782 Single unit: Semi-detached house
## 2783 Multi-unit house, flat
## 2784 Multi-unit house, flat
## 2785 Single unit: Semi-detached house
## 2786 Single unit: Semi-detached house
## 2787 Single unit: Detached house
## 2788 Multi-unit: Sheltered/retirement housing
## 2789 <NA>
## 2790 Multi-unit house, flat
## 2791 Single unit: Terraced house
## 2792 Single unit: Semi-detached house
## 2793 Single unit: Semi-detached house
## 2794 Single unit: Semi-detached house
## 2795 Single unit: Terraced house
## 2796 <NA>
## 2797 Single unit: Terraced house
## 2798 Single unit: Detached house
## 2799 Multi-unit house, flat
## 2800 Single unit: Terraced house
## 2801 <NA>
## 2802 Multi-unit house, flat
## 2803 Single unit: Semi-detached house
## 2804 Single unit: Semi-detached house
## 2805 Single unit: Semi-detached house
## 2806 Multi-unit house, flat
## 2807 <NA>
## 2808 Multi-unit house, flat
## 2809 Single unit: Semi-detached house
## 2810 Multi-unit house, flat
## 2811 Single unit: Semi-detached house
## 2812 Single unit: Detached house
## 2813 <NA>
## 2814 Single unit: Terraced house
## 2815 Single unit: Terraced house
## 2816 <NA>
## 2817 Single unit: Semi-detached house
## 2818 Only housing unit in building with other purpose
## 2819 Single unit: Terraced house
## 2820 Multi-unit house, flat
## 2821 <NA>
## 2822 Single unit: Terraced house
## 2823 Single unit: Semi-detached house
## 2824 Single unit: Terraced house
## 2825 Single unit: Semi-detached house
## 2826 Single unit: Detached house
## 2827 Single unit: Detached house
## 2828 Single unit: Semi-detached house
## 2829 Single unit: Semi-detached house
## 2830 Single unit: Semi-detached house
## 2831 <NA>
## 2832 Single unit: Terraced house
## 2833 Multi-unit house, flat
## 2834 Single unit: Semi-detached house
## 2835 Single unit: Detached house
## 2836 Single unit: Semi-detached house
## 2837 Single unit: Terraced house
## 2838 Multi-unit house, flat
## 2839 Single unit: Detached house
## 2840 <NA>
## 2841 Single unit: Detached house
## 2842 Multi-unit house, flat
## 2843 <NA>
## 2844 Single unit: Terraced house
## 2845 Multi-unit house, flat
## 2846 Single unit: Terraced house
## 2847 Single unit: Terraced house
## 2848 <NA>
## 2849 Single unit: Detached house
## 2850 Single unit: Detached house
## 2851 Single unit: Terraced house
## 2852 Single unit: Terraced house
## 2853 Only housing unit in building with other purpose
## 2854 <NA>
## 2855 <NA>
## 2856 Single unit: Detached house
## 2857 Single unit: Detached house
## 2858 <NA>
## 2859 Single unit: Detached house
## 2860 Single unit: Terraced house
## 2861 Single unit: Semi-detached house
## 2862 Single unit: Detached house
## 2863 Multi-unit house, flat
## 2864 <NA>
## 2865 Multi-unit house, flat
## 2866 Single unit: Semi-detached house
## 2867 Multi-unit house, flat
## 2868 Single unit: Detached house
## 2869 Single unit: Semi-detached house
## 2870 <NA>
## 2871 <NA>
## 2872 Single unit: Semi-detached house
## 2873 Single unit: Terraced house
## 2874 Single unit: Semi-detached house
## 2875 Single unit: Semi-detached house
## 2876 Single unit: Detached house
## 2877 Multi-unit house, flat
## 2878 <NA>
## 2879 Single unit: Semi-detached house
## 2880 Single unit: Terraced house
## 2881 Multi-unit house, flat
## 2882 Single unit: Semi-detached house
## 2883 Multi-unit house, flat
## 2884 Single unit: Detached house
## 2885 Single unit: Semi-detached house
## 2886 Single unit: Detached house
## 2887 <NA>
## 2888 Single unit: Semi-detached house
## 2889 Multi-unit house, flat
## 2890 Multi-unit house, flat
## 2891 Single unit: Detached house
## 2892 Multi-unit house, flat
## 2893 Single unit: Terraced house
## 2894 Multi-unit house, flat
## 2895 Single unit: Semi-detached house
## 2896 Single unit: Terraced house
## 2897 Other
## 2898 Multi-unit house, flat
## 2899 <NA>
## 2900 Multi-unit house, flat
## 2901 <NA>
## 2902 Multi-unit house, flat
## 2903 Single unit: Detached house
## 2904 Single unit: Terraced house
## 2905 Single unit: Terraced house
## 2906 Farm
## 2907 <NA>
## 2908 <NA>
## 2909 Multi-unit house, flat
## 2910 Only housing unit in building with other purpose
## 2911 <NA>
## 2912 Single unit: Terraced house
## 2913 Multi-unit: Student apartments, rooms
## 2914 Single unit: Semi-detached house
## 2915 Single unit: Terraced house
## 2916 <NA>
## 2917 <NA>
## 2918 Multi-unit house, flat
## 2919 <NA>
## 2920 Single unit: Terraced house
## 2921 Single unit: Terraced house
## 2922 Single unit: Detached house
## 2923 Multi-unit house, flat
## 2924 Other
## 2925 <NA>
## 2926 Single unit: Detached house
## 2927 <NA>
## 2928 Multi-unit house, flat
## 2929 Single unit: Semi-detached house
## 2930 Single unit: Semi-detached house
## 2931 <NA>
## 2932 Single unit: Terraced house
## 2933 Single unit: Terraced house
## 2934 Single unit: Terraced house
## 2935 Single unit: Detached house
## 2936 <NA>
## 2937 Single unit: Semi-detached house
## 2938 Single unit: Terraced house
## 2939 Single unit: Detached house
## 2940 <NA>
## 2941 Single unit: Semi-detached house
## 2942 Multi-unit house, flat
## 2943 Single unit: Semi-detached house
## 2944 Multi-unit house, flat
## 2945 Multi-unit house, flat
## 2946 Single unit: Terraced house
## 2947 Single unit: Terraced house
## 2948 Single unit: Semi-detached house
## 2949 Multi-unit house, flat
## 2950 Multi-unit house, flat
## 2951 Single unit: Detached house
## 2952 Single unit: Semi-detached house
## 2953 Multi-unit house, flat
## 2954 Single unit: Semi-detached house
## 2955 Single unit: Terraced house
## 2956 <NA>
## 2957 Single unit: Terraced house
## 2958 Single unit: Semi-detached house
## 2959 <NA>
## 2960 Single unit: Terraced house
## 2961 Single unit: Detached house
## 2962 Single unit: Semi-detached house
## 2963 Multi-unit house, flat
## 2964 Single unit: Terraced house
## 2965 Multi-unit house, flat
## 2966 <NA>
## 2967 <NA>
## 2968 Single unit: Detached house
## 2969 Single unit: Semi-detached house
## 2970 Single unit: Terraced house
## 2971 Single unit: Detached house
## 2972 <NA>
## 2973 Single unit: Terraced house
## 2974 Single unit: Detached house
## 2975 Multi-unit house, flat
## 2976 Single unit: Semi-detached house
## 2977 Single unit: Semi-detached house
## 2978 <NA>
## 2979 <NA>
## 2980 <NA>
## 2981 Single unit: Detached house
## 2982 <NA>
## 2983 Single unit: Detached house
## 2984 Single unit: Terraced house
## 2985 Single unit: Terraced house
## 2986 Single unit: Semi-detached house
## 2987 Only housing unit in building with other purpose
## 2988 <NA>
## 2989 Single unit: Semi-detached house
## 2990 Single unit: Detached house
## 2991 Single unit: Semi-detached house
## 2992 Single unit: Terraced house
## 2993 Single unit: Semi-detached house
## 2994 Single unit: Terraced house
## 2995 Single unit: Semi-detached house
## 2996 <NA>
## 2997 <NA>
## 2998 Single unit: Terraced house
## 2999 <NA>
## 3000 <NA>
## 3001 Single unit: Terraced house
## 3002 Single unit: Detached house
## 3003 Single unit: Detached house
## 3004 <NA>
## 3005 Multi-unit house, flat
## 3006 <NA>
## 3007 Single unit: Terraced house
## 3008 Single unit: Terraced house
## 3009 Single unit: Detached house
## 3010 Multi-unit house, flat
## 3011 Single unit: Terraced house
## 3012 Single unit: Semi-detached house
## 3013 Single unit: Detached house
## 3014 Single unit: Semi-detached house
## 3015 Single unit: Terraced house
## 3016 Single unit: Detached house
## 3017 Single unit: Semi-detached house
## 3018 Single unit: Detached house
## 3019 <NA>
## 3020 <NA>
## 3021 Single unit: Detached house
## 3022 Single unit: Semi-detached house
## 3023 <NA>
## 3024 Single unit: Detached house
## 3025 Multi-unit house, flat
## 3026 Single unit: Terraced house
## 3027 Single unit: Semi-detached house
## 3028 Other
## 3029 Single unit: Terraced house
## 3030 Multi-unit house, flat
## 3031 Single unit: Semi-detached house
## 3032 Single unit: Semi-detached house
## 3033 Single unit: Semi-detached house
## 3034 Single unit: Detached house
## 3035 Single unit: Semi-detached house
## 3036 Single unit: Terraced house
## 3037 Single unit: Terraced house
## 3038 <NA>
## 3039 <NA>
## 3040 Single unit: Semi-detached house
## 3041 Single unit: Detached house
## 3042 Single unit: Detached house
## 3043 Single unit: Terraced house
## 3044 Multi-unit house, flat
## 3045 Multi-unit house, flat
## 3046 Single unit: Terraced house
## 3047 <NA>
## 3048 Single unit: Detached house
## 3049 Single unit: Detached house
## 3050 Single unit: Semi-detached house
## 3051 Single unit: Terraced house
## 3052 Single unit: Terraced house
## 3053 Single unit: Semi-detached house
## 3054 Single unit: Semi-detached house
## 3055 Single unit: Semi-detached house
## 3056 Single unit: Detached house
## 3057 Single unit: Detached house
## 3058 Single unit: Terraced house
## 3059 Single unit: Detached house
## 3060 Single unit: Terraced house
## 3061 Multi-unit house, flat
## 3062 Single unit: Terraced house
## 3063 Single unit: Terraced house
## 3064 Single unit: Detached house
## 3065 Multi-unit house, flat
## 3066 Single unit: Semi-detached house
## 3067 Single unit: Semi-detached house
## 3068 Single unit: Terraced house
## 3069 Single unit: Semi-detached house
## 3070 Single unit: Terraced house
## 3071 Single unit: Detached house
## 3072 Single unit: Terraced house
## 3073 Single unit: Semi-detached house
## 3074 Multi-unit house, flat
## 3075 Single unit: Detached house
## 3076 Single unit: Detached house
## 3077 Single unit: Terraced house
## 3078 Multi-unit house, flat
## 3079 <NA>
## 3080 Single unit: Detached house
## 3081 Single unit: Terraced house
## 3082 Single unit: Terraced house
## 3083 Single unit: Detached house
## 3084 <NA>
## 3085 <NA>
## 3086 Single unit: Detached house
## 3087 <NA>
## 3088 Single unit: Terraced house
## 3089 Single unit: Semi-detached house
## 3090 Single unit: Terraced house
## 3091 Single unit: Terraced house
## 3092 Multi-unit house, flat
## 3093 Single unit: Terraced house
## 3094 Single unit: Semi-detached house
## 3095 <NA>
## 3096 Single unit: Detached house
## 3097 Multi-unit house, flat
## 3098 <NA>
## 3099 Multi-unit house, flat
## 3100 Single unit: Terraced house
## 3101 Multi-unit house, flat
## 3102 Single unit: Semi-detached house
## 3103 Single unit: Detached house
## 3104 Multi-unit house, flat
## 3105 Single unit: Terraced house
## 3106 Single unit: Detached house
## 3107 Multi-unit house, flat
## 3108 Single unit: Semi-detached house
## 3109 Single unit: Detached house
## 3110 Multi-unit house, flat
## 3111 Single unit: Semi-detached house
## 3112 Multi-unit house, flat
## 3113 Single unit: Detached house
## 3114 Multi-unit house, flat
## 3115 Single unit: Detached house
## 3116 Multi-unit house, flat
## 3117 <NA>
## 3118 <NA>
## 3119 Single unit: Semi-detached house
## 3120 Single unit: Semi-detached house
## 3121 Single unit: Semi-detached house
## 3122 Multi-unit house, flat
## 3123 Single unit: Semi-detached house
## 3124 <NA>
## 3125 Multi-unit house, flat
## 3126 Single unit: Detached house
## 3127 Single unit: Detached house
## 3128 <NA>
## 3129 Single unit: Detached house
## 3130 Single unit: Detached house
## 3131 Single unit: Terraced house
## 3132 <NA>
## 3133 Multi-unit house, flat
## 3134 Single unit: Terraced house
## 3135 Single unit: Detached house
## 3136 Single unit: Detached house
## 3137 <NA>
## 3138 <NA>
## 3139 Single unit: Detached house
## 3140 Single unit: Terraced house
## 3141 Single unit: Semi-detached house
## 3142 Single unit: Detached house
## 3143 Multi-unit: Sheltered/retirement housing
## 3144 Single unit: Detached house
## 3145 Multi-unit house, flat
## 3146 Single unit: Semi-detached house
## 3147 Single unit: Terraced house
## 3148 Single unit: Terraced house
## 3149 Single unit: Detached house
## 3150 Multi-unit house, flat
## 3151 Single unit: Semi-detached house
## 3152 <NA>
## 3153 Single unit: Terraced house
## 3154 Multi-unit house, flat
## 3155 Single unit: Terraced house
## 3156 Single unit: Terraced house
## 3157 <NA>
## 3158 Single unit: Semi-detached house
## 3159 Single unit: Semi-detached house
## 3160 Single unit: Terraced house
## 3161 Single unit: Terraced house
## 3162 Multi-unit house, flat
## 3163 Single unit: Detached house
## 3164 Single unit: Detached house
## 3165 <NA>
## 3166 Single unit: Semi-detached house
## 3167 Single unit: Terraced house
## 3168 Single unit: Detached house
## 3169 Single unit: Terraced house
## 3170 Single unit: Semi-detached house
## 3171 Single unit: Terraced house
## 3172 Single unit: Terraced house
## 3173 <NA>
## 3174 Single unit: Semi-detached house
## 3175 <NA>
## 3176 Single unit: Terraced house
## 3177 Single unit: Terraced house
## 3178 Single unit: Detached house
## 3179 Single unit: Terraced house
## 3180 Single unit: Terraced house
## 3181 Single unit: Semi-detached house
## 3182 Single unit: Semi-detached house
## 3183 Single unit: Semi-detached house
## 3184 Multi-unit house, flat
## 3185 Single unit: Detached house
## 3186 Single unit: Terraced house
## 3187 Single unit: Terraced house
## 3188 Single unit: Semi-detached house
## 3189 Single unit: Semi-detached house
## 3190 <NA>
## 3191 Single unit: Terraced house
## 3192 Single unit: Semi-detached house
## 3193 Multi-unit house, flat
## 3194 Single unit: Detached house
## 3195 <NA>
## 3196 <NA>
## 3197 Multi-unit house, flat
## 3198 <NA>
## 3199 Single unit: Semi-detached house
## 3200 Multi-unit house, flat
## 3201 Other
## 3202 Single unit: Terraced house
## 3203 Single unit: Semi-detached house
## 3204 Single unit: Terraced house
## 3205 Single unit: Detached house
## 3206 Single unit: Terraced house
## 3207 Single unit: Detached house
## 3208 Single unit: Detached house
## 3209 <NA>
## 3210 Single unit: Terraced house
## 3211 Single unit: Terraced house
## 3212 Single unit: Semi-detached house
## 3213 Multi-unit house, flat
## 3214 Single unit: Terraced house
## 3215 Multi-unit house, flat
## 3216 Single unit: Terraced house
## 3217 Multi-unit house, flat
## 3218 Multi-unit house, flat
## 3219 Multi-unit house, flat
## 3220 <NA>
## 3221 Single unit: Terraced house
## 3222 Multi-unit house, flat
## 3223 Farm
## 3224 <NA>
## 3225 Multi-unit house, flat
## 3226 Multi-unit house, flat
## 3227 Single unit: Terraced house
## 3228 Multi-unit house, flat
## 3229 Single unit: Semi-detached house
## 3230 Multi-unit house, flat
## 3231 Single unit: Detached house
## 3232 Single unit: Detached house
## 3233 Single unit: Detached house
## 3234 Multi-unit: Sheltered/retirement housing
## 3235 Single unit: Semi-detached house
## 3236 Single unit: Semi-detached house
## 3237 Single unit: Terraced house
## 3238 <NA>
## 3239 Single unit: Semi-detached house
## 3240 Single unit: Semi-detached house
## 3241 Single unit: Terraced house
## 3242 <NA>
## 3243 Single unit: Semi-detached house
## 3244 <NA>
## 3245 Single unit: Semi-detached house
## 3246 <NA>
## 3247 Single unit: Semi-detached house
## 3248 <NA>
## 3249 Single unit: Semi-detached house
## 3250 <NA>
## 3251 Multi-unit house, flat
## 3252 Single unit: Detached house
## 3253 Single unit: Terraced house
## 3254 Single unit: Semi-detached house
## 3255 Multi-unit house, flat
## 3256 Single unit: Semi-detached house
## 3257 Single unit: Detached house
## 3258 Single unit: Semi-detached house
## 3259 Single unit: Terraced house
## 3260 <NA>
## 3261 Single unit: Semi-detached house
## 3262 Single unit: Terraced house
## 3263 Single unit: Semi-detached house
## 3264 Single unit: Terraced house
## 3265 Single unit: Terraced house
## 3266 Single unit: Terraced house
## 3267 Single unit: Terraced house
## 3268 Single unit: Semi-detached house
## 3269 Single unit: Semi-detached house
## 3270 <NA>
## 3271 Multi-unit house, flat
## 3272 Single unit: Terraced house
## 3273 Single unit: Detached house
## 3274 Single unit: Detached house
## 3275 Multi-unit house, flat
## 3276 Single unit: Semi-detached house
## 3277 Single unit: Semi-detached house
## 3278 Single unit: Detached house
## 3279 Single unit: Semi-detached house
## 3280 Single unit: Detached house
## 3281 Single unit: Terraced house
## 3282 Single unit: Semi-detached house
## 3283 Single unit: Terraced house
## 3284 Single unit: Semi-detached house
## 3285 Single unit: Terraced house
## 3286 Single unit: Detached house
## 3287 Single unit: Terraced house
## 3288 Single unit: Terraced house
## 3289 Single unit: Semi-detached house
## 3290 Multi-unit house, flat
## 3291 Multi-unit house, flat
## 3292 <NA>
## 3293 Single unit: Terraced house
## 3294 Multi-unit house, flat
## 3295 Single unit: Semi-detached house
## 3296 Single unit: Detached house
## 3297 Single unit: Semi-detached house
## 3298 Single unit: Terraced house
## 3299 Multi-unit house, flat
## 3300 Single unit: Terraced house
## 3301 <NA>
## 3302 Single unit: Semi-detached house
## 3303 Single unit: Detached house
## 3304 Single unit: Semi-detached house
## 3305 Single unit: Terraced house
## 3306 Single unit: Detached house
## 3307 Single unit: Semi-detached house
## 3308 <NA>
## 3309 Single unit: Semi-detached house
## 3310 House-trailer or boat
## 3311 <NA>
## 3312 Multi-unit house, flat
## 3313 Single unit: Semi-detached house
## 3314 Single unit: Detached house
## 3315 Single unit: Terraced house
## 3316 <NA>
## 3317 Single unit: Terraced house
## 3318 Multi-unit house, flat
## 3319 Single unit: Detached house
## 3320 Single unit: Semi-detached house
## 3321 Single unit: Terraced house
## 3322 Multi-unit house, flat
## 3323 Single unit: Semi-detached house
## 3324 Single unit: Detached house
## 3325 Single unit: Detached house
## 3326 Single unit: Terraced house
## 3327 Single unit: Detached house
## 3328 Multi-unit house, flat
## 3329 Single unit: Semi-detached house
## 3330 Single unit: Detached house
## 3331 Multi-unit house, flat
## 3332 Multi-unit house, flat
## 3333 Single unit: Semi-detached house
## 3334 Single unit: Semi-detached house
## 3335 Single unit: Detached house
## 3336 Single unit: Detached house
## 3337 Multi-unit house, flat
## 3338 <NA>
## 3339 <NA>
## 3340 <NA>
## 3341 Single unit: Semi-detached house
## 3342 Multi-unit house, flat
## 3343 <NA>
## 3344 Multi-unit house, flat
## 3345 Single unit: Semi-detached house
## 3346 Single unit: Detached house
## 3347 <NA>
## 3348 Single unit: Terraced house
## 3349 Single unit: Detached house
## 3350 Multi-unit house, flat
## 3351 Single unit: Terraced house
## 3352 Single unit: Terraced house
## 3353 Single unit: Detached house
## 3354 Single unit: Detached house
## 3355 Single unit: Detached house
## 3356 Single unit: Terraced house
## 3357 Single unit: Terraced house
## 3358 Multi-unit house, flat
## 3359 <NA>
## 3360 <NA>
## 3361 Single unit: Semi-detached house
## 3362 Single unit: Detached house
## 3363 Single unit: Semi-detached house
## 3364 Single unit: Terraced house
## 3365 Single unit: Terraced house
## 3366 <NA>
## 3367 <NA>
## 3368 Single unit: Semi-detached house
## 3369 Single unit: Terraced house
## 3370 Multi-unit house, flat
## 3371 Single unit: Detached house
## 3372 <NA>
## 3373 Single unit: Semi-detached house
## 3374 <NA>
## 3375 Multi-unit house, flat
## 3376 Single unit: Detached house
## 3377 Single unit: Detached house
## 3378 Single unit: Detached house
## 3379 Single unit: Terraced house
## 3380 Multi-unit house, flat
## 3381 Single unit: Detached house
## 3382 Single unit: Detached house
## 3383 <NA>
## 3384 Multi-unit house, flat
## 3385 Single unit: Semi-detached house
## 3386 Single unit: Detached house
## 3387 Single unit: Terraced house
## 3388 Single unit: Semi-detached house
## 3389 Single unit: Semi-detached house
## 3390 Multi-unit house, flat
## 3391 Single unit: Terraced house
## 3392 Multi-unit house, flat
## 3393 Multi-unit house, flat
## 3394 Single unit: Detached house
## 3395 Single unit: Detached house
## 3396 <NA>
## 3397 Single unit: Detached house
## 3398 Single unit: Detached house
## 3399 Single unit: Detached house
## 3400 Single unit: Detached house
## 3401 <NA>
## 3402 Multi-unit house, flat
## 3403 Single unit: Detached house
## 3404 Multi-unit house, flat
## 3405 Single unit: Terraced house
## 3406 Only housing unit in building with other purpose
## 3407 Single unit: Terraced house
## 3408 Single unit: Detached house
## 3409 Single unit: Semi-detached house
## 3410 Multi-unit house, flat
## 3411 <NA>
## 3412 Single unit: Semi-detached house
## 3413 Single unit: Semi-detached house
## 3414 Single unit: Terraced house
## 3415 Single unit: Semi-detached house
## 3416 <NA>
## 3417 Single unit: Terraced house
## 3418 <NA>
## 3419 <NA>
## 3420 Single unit: Semi-detached house
## 3421 Multi-unit house, flat
## 3422 Single unit: Detached house
## 3423 Single unit: Detached house
## 3424 Single unit: Terraced house
## 3425 Single unit: Terraced house
## 3426 Single unit: Semi-detached house
## 3427 Single unit: Semi-detached house
## 3428 Multi-unit house, flat
## 3429 Single unit: Detached house
## 3430 <NA>
## 3431 Single unit: Terraced house
## 3432 Other
## 3433 Single unit: Semi-detached house
## 3434 Single unit: Terraced house
## 3435 Single unit: Semi-detached house
## 3436 Single unit: Terraced house
## 3437 Single unit: Semi-detached house
## 3438 Single unit: Detached house
## 3439 Single unit: Terraced house
## 3440 <NA>
## 3441 Multi-unit house, flat
## 3442 <NA>
## 3443 Single unit: Semi-detached house
## 3444 <NA>
## 3445 Single unit: Terraced house
## 3446 Multi-unit house, flat
## 3447 Multi-unit house, flat
## 3448 Other
## 3449 Single unit: Semi-detached house
## 3450 Single unit: Semi-detached house
## 3451 Single unit: Semi-detached house
## 3452 Single unit: Terraced house
## 3453 <NA>
## 3454 Single unit: Terraced house
## 3455 Single unit: Terraced house
## 3456 Single unit: Detached house
## 3457 Single unit: Terraced house
## 3458 Single unit: Detached house
## 3459 Multi-unit house, flat
## 3460 Single unit: Detached house
## 3461 Single unit: Terraced house
## 3462 Single unit: Detached house
## 3463 <NA>
## 3464 Single unit: Detached house
## 3465 <NA>
## 3466 Single unit: Terraced house
## 3467 Single unit: Detached house
## 3468 Single unit: Semi-detached house
## 3469 <NA>
## 3470 <NA>
## 3471 Multi-unit house, flat
## 3472 <NA>
## 3473 Single unit: Terraced house
## 3474 Single unit: Semi-detached house
## 3475 Single unit: Terraced house
## 3476 Multi-unit house, flat
## 3477 <NA>
## 3478 Single unit: Terraced house
## 3479 Single unit: Detached house
## 3480 Single unit: Terraced house
## 3481 Single unit: Terraced house
## 3482 Single unit: Detached house
## 3483 Multi-unit house, flat
## 3484 Single unit: Detached house
## 3485 Single unit: Terraced house
## 3486 Single unit: Detached house
## 3487 Single unit: Detached house
## 3488 Single unit: Semi-detached house
## 3489 <NA>
## 3490 Multi-unit house, flat
## 3491 Multi-unit house, flat
## 3492 Single unit: Terraced house
## 3493 Single unit: Semi-detached house
## 3494 Single unit: Semi-detached house
## 3495 Single unit: Terraced house
## 3496 Single unit: Semi-detached house
## 3497 Single unit: Detached house
## 3498 Single unit: Terraced house
## 3499 <NA>
## 3500 <NA>
## 3501 Single unit: Detached house
## 3502 Single unit: Semi-detached house
## 3503 <NA>
## 3504 Single unit: Detached house
## 3505 Single unit: Terraced house
## 3506 Single unit: Terraced house
## 3507 Single unit: Terraced house
## 3508 <NA>
## 3509 <NA>
## 3510 Single unit: Semi-detached house
## 3511 Single unit: Semi-detached house
## 3512 Single unit: Terraced house
## 3513 Multi-unit house, flat
## 3514 Single unit: Detached house
## 3515 Multi-unit house, flat
## 3516 Single unit: Detached house
## 3517 <NA>
## 3518 Single unit: Semi-detached house
## 3519 Multi-unit house, flat
## 3520 Multi-unit house, flat
## 3521 Single unit: Semi-detached house
## 3522 Other
## 3523 Single unit: Semi-detached house
## 3524 Single unit: Terraced house
## 3525 Single unit: Semi-detached house
## 3526 Single unit: Terraced house
## 3527 <NA>
## 3528 Single unit: Terraced house
## 3529 Single unit: Detached house
## 3530 Single unit: Semi-detached house
## 3531 Single unit: Detached house
## 3532 Single unit: Detached house
## 3533 Single unit: Semi-detached house
## 3534 Single unit: Semi-detached house
## 3535 Multi-unit house, flat
## 3536 Multi-unit house, flat
## 3537 <NA>
## 3538 <NA>
## 3539 Single unit: Terraced house
## 3540 Single unit: Semi-detached house
## 3541 Single unit: Terraced house
## 3542 <NA>
## 3543 Single unit: Semi-detached house
## 3544 Multi-unit house, flat
## 3545 Single unit: Detached house
## 3546 Single unit: Semi-detached house
## 3547 Multi-unit house, flat
## 3548 <NA>
## 3549 <NA>
## 3550 Single unit: Semi-detached house
## 3551 Single unit: Semi-detached house
## 3552 Single unit: Terraced house
## 3553 <NA>
## 3554 Single unit: Terraced house
## 3555 Other
## 3556 Single unit: Terraced house
## 3557 Single unit: Detached house
## 3558 Single unit: Detached house
## 3559 <NA>
## 3560 Multi-unit house, flat
## 3561 <NA>
## 3562 Multi-unit house, flat
## 3563 Single unit: Semi-detached house
## 3564 <NA>
## 3565 Multi-unit house, flat
## 3566 Single unit: Semi-detached house
## 3567 Single unit: Semi-detached house
## 3568 Multi-unit house, flat
## 3569 Multi-unit house, flat
## 3570 Single unit: Semi-detached house
## 3571 Single unit: Semi-detached house
## 3572 Single unit: Terraced house
## 3573 Single unit: Terraced house
## 3574 Multi-unit house, flat
## 3575 <NA>
## 3576 Single unit: Detached house
## 3577 Single unit: Detached house
## 3578 Single unit: Terraced house
## 3579 Multi-unit house, flat
## 3580 Single unit: Detached house
## 3581 <NA>
## 3582 Single unit: Semi-detached house
## 3583 Single unit: Terraced house
## 3584 Single unit: Detached house
## 3585 Multi-unit house, flat
## 3586 Multi-unit house, flat
## 3587 Single unit: Semi-detached house
## 3588 Single unit: Terraced house
## 3589 Single unit: Semi-detached house
## 3590 Single unit: Terraced house
## 3591 Single unit: Detached house
## 3592 Single unit: Semi-detached house
## 3593 Single unit: Semi-detached house
## 3594 Single unit: Semi-detached house
## 3595 Single unit: Detached house
## 3596 Single unit: Detached house
## 3597 Single unit: Terraced house
## 3598 Single unit: Semi-detached house
## 3599 Single unit: Detached house
## 3600 Single unit: Semi-detached house
## 3601 Single unit: Semi-detached house
## 3602 Single unit: Detached house
## 3603 Single unit: Terraced house
## 3604 Single unit: Detached house
## 3605 Single unit: Terraced house
## 3606 Single unit: Semi-detached house
## 3607 Multi-unit house, flat
## 3608 Single unit: Detached house
## 3609 Single unit: Semi-detached house
## 3610 Single unit: Terraced house
## 3611 Single unit: Detached house
## 3612 Single unit: Terraced house
## 3613 Multi-unit house, flat
## 3614 Single unit: Semi-detached house
## 3615 <NA>
## 3616 Single unit: Terraced house
## 3617 Single unit: Terraced house
## 3618 Single unit: Semi-detached house
## 3619 Single unit: Terraced house
## 3620 Single unit: Semi-detached house
## 3621 Single unit: Detached house
## 3622 Single unit: Semi-detached house
## 3623 Single unit: Terraced house
## 3624 Single unit: Terraced house
## 3625 Multi-unit house, flat
## 3626 <NA>
## 3627 Single unit: Detached house
## 3628 <NA>
## 3629 Single unit: Semi-detached house
## 3630 Multi-unit house, flat
## 3631 Single unit: Semi-detached house
## 3632 Single unit: Detached house
## 3633 Single unit: Detached house
## 3634 Single unit: Terraced house
## 3635 Multi-unit: Sheltered/retirement housing
## 3636 Multi-unit house, flat
## 3637 <NA>
## 3638 <NA>
## 3639 Single unit: Semi-detached house
## 3640 Single unit: Terraced house
## 3641 <NA>
## 3642 <NA>
## 3643 Single unit: Terraced house
## 3644 Single unit: Terraced house
## 3645 Single unit: Semi-detached house
## 3646 Single unit: Terraced house
## 3647 Multi-unit house, flat
## 3648 Multi-unit house, flat
## 3649 <NA>
## 3650 Single unit: Semi-detached house
## 3651 Multi-unit house, flat
## 3652 Single unit: Semi-detached house
## 3653 Single unit: Detached house
## 3654 Multi-unit house, flat
## 3655 Only housing unit in building with other purpose
## 3656 Single unit: Terraced house
## 3657 <NA>
## 3658 Single unit: Semi-detached house
## 3659 Single unit: Semi-detached house
## 3660 Single unit: Semi-detached house
## 3661 Multi-unit house, flat
## 3662 Single unit: Detached house
## 3663 Single unit: Detached house
## 3664 Single unit: Semi-detached house
## 3665 <NA>
## 3666 Single unit: Detached house
## 3667 Single unit: Semi-detached house
## 3668 Multi-unit house, flat
## 3669 Single unit: Semi-detached house
## 3670 Multi-unit house, flat
## 3671 Single unit: Detached house
## 3672 Single unit: Detached house
## 3673 Multi-unit house, flat
## 3674 <NA>
## 3675 Single unit: Semi-detached house
## 3676 Single unit: Terraced house
## 3677 Multi-unit house, flat
## 3678 Single unit: Semi-detached house
## 3679 Other
## 3680 Multi-unit house, flat
## 3681 Multi-unit house, flat
## 3682 <NA>
## 3683 Single unit: Terraced house
## 3684 Single unit: Detached house
## 3685 Multi-unit house, flat
## 3686 Single unit: Semi-detached house
## 3687 Single unit: Semi-detached house
## 3688 Single unit: Semi-detached house
## 3689 <NA>
## 3690 Single unit: Terraced house
## 3691 <NA>
## 3692 Single unit: Terraced house
## 3693 Multi-unit house, flat
## 3694 <NA>
## 3695 Multi-unit house, flat
## 3696 Single unit: Terraced house
## 3697 Single unit: Terraced house
## 3698 Single unit: Detached house
## 3699 <NA>
## 3700 Single unit: Semi-detached house
## 3701 Single unit: Terraced house
## 3702 Single unit: Terraced house
## 3703 Multi-unit house, flat
## 3704 Single unit: Semi-detached house
## 3705 Multi-unit house, flat
## 3706 <NA>
## 3707 Single unit: Detached house
## 3708 Single unit: Terraced house
## 3709 Single unit: Semi-detached house
## 3710 Single unit: Terraced house
## 3711 Single unit: Terraced house
## 3712 Single unit: Detached house
## 3713 Multi-unit house, flat
## 3714 Multi-unit house, flat
## 3715 Multi-unit house, flat
## 3716 Multi-unit house, flat
## 3717 <NA>
## 3718 Single unit: Terraced house
## 3719 Single unit: Semi-detached house
## 3720 Single unit: Terraced house
## 3721 Single unit: Detached house
## 3722 Multi-unit house, flat
## 3723 Single unit: Semi-detached house
## 3724 Multi-unit house, flat
## 3725 Single unit: Terraced house
## 3726 Single unit: Semi-detached house
## 3727 <NA>
## 3728 Single unit: Semi-detached house
## 3729 <NA>
## 3730 Multi-unit house, flat
## 3731 Single unit: Semi-detached house
## 3732 Single unit: Detached house
## 3733 Multi-unit house, flat
## 3734 Multi-unit house, flat
## 3735 Single unit: Terraced house
## 3736 Single unit: Detached house
## 3737 Single unit: Terraced house
## 3738 Only housing unit in building with other purpose
## 3739 Single unit: Detached house
## 3740 Multi-unit house, flat
## 3741 Single unit: Semi-detached house
## 3742 Single unit: Semi-detached house
## 3743 <NA>
## 3744 <NA>
## 3745 Single unit: Detached house
## 3746 Multi-unit house, flat
## 3747 Multi-unit house, flat
## 3748 Single unit: Detached house
## 3749 Multi-unit house, flat
## 3750 Multi-unit house, flat
## 3751 Single unit: Semi-detached house
## 3752 Single unit: Terraced house
## 3753 Single unit: Semi-detached house
## 3754 Single unit: Semi-detached house
## 3755 Multi-unit house, flat
## 3756 Single unit: Semi-detached house
## 3757 Single unit: Detached house
## 3758 Single unit: Terraced house
## 3759 <NA>
## 3760 Single unit: Semi-detached house
## 3761 Multi-unit: Sheltered/retirement housing
## 3762 Single unit: Terraced house
## 3763 Single unit: Terraced house
## 3764 Single unit: Terraced house
## 3765 Single unit: Terraced house
## 3766 Single unit: Semi-detached house
## 3767 Multi-unit house, flat
## 3768 Single unit: Detached house
## 3769 Only housing unit in building with other purpose
## 3770 Single unit: Detached house
## 3771 Single unit: Detached house
## 3772 Single unit: Semi-detached house
## 3773 Single unit: Semi-detached house
## 3774 Multi-unit house, flat
## 3775 Multi-unit house, flat
## 3776 <NA>
## 3777 Multi-unit house, flat
## 3778 Single unit: Terraced house
## 3779 Single unit: Terraced house
## 3780 Multi-unit house, flat
## 3781 Single unit: Terraced house
## 3782 Other
## 3783 Single unit: Terraced house
## 3784 Single unit: Semi-detached house
## 3785 <NA>
## 3786 Single unit: Semi-detached house
## 3787 Single unit: Semi-detached house
## 3788 Multi-unit house, flat
## 3789 Multi-unit house, flat
## 3790 Multi-unit house, flat
## 3791 Single unit: Terraced house
## 3792 Single unit: Detached house
## 3793 Single unit: Terraced house
## 3794 Single unit: Terraced house
## 3795 Single unit: Terraced house
## 3796 Single unit: Detached house
## 3797 Single unit: Detached house
## 3798 Multi-unit house, flat
## 3799 Multi-unit house, flat
## 3800 Single unit: Terraced house
## 3801 Only housing unit in building with other purpose
## 3802 Single unit: Detached house
## 3803 Single unit: Semi-detached house
## 3804 <NA>
## 3805 Farm
## 3806 Multi-unit house, flat
## 3807 Single unit: Semi-detached house
## 3808 Single unit: Terraced house
## 3809 Single unit: Terraced house
## 3810 <NA>
## 3811 <NA>
## 3812 Single unit: Detached house
## 3813 Single unit: Semi-detached house
## 3814 Single unit: Semi-detached house
## 3815 Single unit: Terraced house
## 3816 <NA>
## 3817 <NA>
## 3818 Single unit: Terraced house
## 3819 Single unit: Semi-detached house
## 3820 Multi-unit house, flat
## 3821 <NA>
## 3822 Single unit: Semi-detached house
## 3823 Multi-unit house, flat
## 3824 Single unit: Semi-detached house
## 3825 Multi-unit house, flat
## 3826 Single unit: Detached house
## 3827 Single unit: Semi-detached house
## 3828 Single unit: Semi-detached house
## 3829 <NA>
## 3830 Single unit: Terraced house
## 3831 Single unit: Detached house
## 3832 Single unit: Detached house
## 3833 <NA>
## 3834 Single unit: Semi-detached house
## 3835 Single unit: Detached house
## 3836 Single unit: Terraced house
## 3837 <NA>
## 3838 Single unit: Detached house
## 3839 Multi-unit house, flat
## 3840 Multi-unit house, flat
## 3841 Single unit: Terraced house
## 3842 <NA>
## 3843 <NA>
## 3844 Multi-unit house, flat
## 3845 Single unit: Detached house
## 3846 Multi-unit house, flat
## 3847 Single unit: Semi-detached house
## 3848 Single unit: Terraced house
## 3849 Single unit: Semi-detached house
## 3850 <NA>
## 3851 Single unit: Semi-detached house
## 3852 Single unit: Semi-detached house
## 3853 Multi-unit house, flat
## 3854 Single unit: Semi-detached house
## 3855 Single unit: Semi-detached house
## 3856 Single unit: Semi-detached house
## 3857 Multi-unit house, flat
## 3858 <NA>
## 3859 Multi-unit house, flat
## 3860 Single unit: Semi-detached house
## 3861 Single unit: Semi-detached house
## 3862 Multi-unit house, flat
## 3863 Single unit: Terraced house
## 3864 Single unit: Terraced house
## 3865 Single unit: Semi-detached house
## 3866 Multi-unit house, flat
## 3867 Multi-unit house, flat
## 3868 Single unit: Semi-detached house
## 3869 Multi-unit house, flat
## 3870 <NA>
## 3871 Multi-unit house, flat
## 3872 Multi-unit house, flat
## 3873 Multi-unit house, flat
## 3874 <NA>
## 3875 Single unit: Terraced house
## 3876 Multi-unit: Student apartments, rooms
## 3877 Single unit: Semi-detached house
## 3878 Single unit: Semi-detached house
## 3879 Single unit: Semi-detached house
## 3880 Single unit: Semi-detached house
## 3881 Single unit: Semi-detached house
## 3882 Single unit: Terraced house
## 3883 Single unit: Terraced house
## 3884 Farm
## 3885 Multi-unit house, flat
## 3886 Single unit: Detached house
## 3887 Multi-unit house, flat
## 3888 Single unit: Semi-detached house
## 3889 Farm
## 3890 <NA>
## 3891 Single unit: Terraced house
## 3892 Multi-unit house, flat
## 3893 <NA>
## 3894 <NA>
## 3895 Single unit: Terraced house
## 3896 Single unit: Semi-detached house
## 3897 Single unit: Terraced house
## 3898 Single unit: Detached house
## 3899 Multi-unit house, flat
## 3900 Other
## 3901 Single unit: Terraced house
## 3902 Single unit: Semi-detached house
## 3903 Multi-unit house, flat
## 3904 Single unit: Terraced house
## 3905 Single unit: Semi-detached house
## 3906 Single unit: Semi-detached house
## 3907 Multi-unit house, flat
## 3908 Single unit: Detached house
## 3909 Multi-unit house, flat
## 3910 Single unit: Detached house
## 3911 Single unit: Semi-detached house
## 3912 Single unit: Semi-detached house
## 3913 Single unit: Terraced house
## 3914 Single unit: Semi-detached house
## 3915 <NA>
## 3916 Multi-unit house, flat
## 3917 Multi-unit house, flat
## 3918 Single unit: Terraced house
## 3919 Single unit: Semi-detached house
## 3920 Single unit: Detached house
## 3921 Single unit: Semi-detached house
## 3922 Multi-unit house, flat
## 3923 Single unit: Detached house
## 3924 <NA>
## 3925 Single unit: Semi-detached house
## 3926 <NA>
## 3927 Multi-unit house, flat
## 3928 Single unit: Terraced house
## 3929 Single unit: Semi-detached house
## 3930 Single unit: Semi-detached house
## 3931 <NA>
## 3932 Single unit: Terraced house
## 3933 Single unit: Terraced house
## 3934 Multi-unit house, flat
## 3935 Single unit: Detached house
## 3936 <NA>
## 3937 Single unit: Semi-detached house
## 3938 Single unit: Detached house
## 3939 <NA>
## 3940 Multi-unit house, flat
## 3941 Multi-unit house, flat
## 3942 Single unit: Semi-detached house
## 3943 Multi-unit house, flat
## 3944 Multi-unit house, flat
## 3945 Multi-unit house, flat
## 3946 Single unit: Semi-detached house
## 3947 <NA>
## 3948 Single unit: Detached house
## 3949 Single unit: Semi-detached house
## 3950 Single unit: Terraced house
## 3951 Single unit: Semi-detached house
## 3952 Single unit: Semi-detached house
## 3953 Multi-unit house, flat
## 3954 Single unit: Detached house
## 3955 <NA>
## 3956 Single unit: Terraced house
## 3957 Single unit: Detached house
## 3958 Single unit: Terraced house
## 3959 Single unit: Terraced house
## 3960 Single unit: Terraced house
## 3961 Single unit: Semi-detached house
## 3962 Single unit: Semi-detached house
## 3963 Single unit: Terraced house
## 3964 Single unit: Terraced house
## 3965 Single unit: Terraced house
## 3966 <NA>
## 3967 Single unit: Semi-detached house
## 3968 Single unit: Detached house
## 3969 Multi-unit house, flat
## 3970 Single unit: Terraced house
## 3971 Single unit: Detached house
## 3972 Single unit: Terraced house
## 3973 Multi-unit house, flat
## 3974 Multi-unit house, flat
## 3975 Single unit: Semi-detached house
## 3976 Single unit: Semi-detached house
## 3977 Single unit: Terraced house
## 3978 Single unit: Terraced house
## 3979 Multi-unit house, flat
## 3980 Single unit: Terraced house
## 3981 Single unit: Semi-detached house
## 3982 Single unit: Semi-detached house
## 3983 Single unit: Detached house
## 3984 Single unit: Semi-detached house
## 3985 Multi-unit house, flat
## 3986 Single unit: Terraced house
## 3987 Multi-unit house, flat
## 3988 <NA>
## 3989 Single unit: Detached house
## 3990 Multi-unit house, flat
## 3991 <NA>
## 3992 Multi-unit house, flat
## 3993 Single unit: Semi-detached house
## 3994 Single unit: Semi-detached house
## 3995 Single unit: Semi-detached house
## 3996 Single unit: Terraced house
## 3997 Single unit: Detached house
## 3998 Multi-unit house, flat
## 3999 Single unit: Semi-detached house
## 4000 Single unit: Semi-detached house
## 4001 Single unit: Terraced house
## 4002 Multi-unit house, flat
## 4003 Multi-unit house, flat
## 4004 Multi-unit house, flat
## 4005 Multi-unit house, flat
## 4006 Single unit: Terraced house
## 4007 Multi-unit house, flat
## 4008 Single unit: Terraced house
## 4009 Single unit: Terraced house
## 4010 Multi-unit house, flat
## 4011 Single unit: Semi-detached house
## 4012 Single unit: Terraced house
## 4013 Multi-unit house, flat
## 4014 Single unit: Semi-detached house
## 4015 Single unit: Semi-detached house
## 4016 Multi-unit house, flat
## 4017 Single unit: Terraced house
## 4018 Single unit: Semi-detached house
## 4019 Single unit: Terraced house
## 4020 Multi-unit house, flat
## 4021 Single unit: Detached house
## 4022 Single unit: Detached house
## 4023 <NA>
## 4024 Single unit: Terraced house
## 4025 Single unit: Detached house
## 4026 Single unit: Detached house
## 4027 Multi-unit house, flat
## 4028 <NA>
## 4029 <NA>
## 4030 Single unit: Terraced house
## 4031 Single unit: Detached house
## 4032 Farm
## 4033 Single unit: Terraced house
## 4034 Single unit: Terraced house
## 4035 Single unit: Terraced house
## 4036 Single unit: Terraced house
## 4037 Single unit: Semi-detached house
## 4038 Single unit: Semi-detached house
## 4039 Single unit: Semi-detached house
## 4040 Single unit: Semi-detached house
## 4041 Single unit: Detached house
## 4042 Single unit: Detached house
## 4043 Single unit: Semi-detached house
## 4044 Single unit: Detached house
## 4045 Single unit: Terraced house
## 4046 Single unit: Detached house
## 4047 Single unit: Detached house
## 4048 Single unit: Semi-detached house
## 4049 Single unit: Detached house
## 4050 Multi-unit house, flat
## 4051 Single unit: Terraced house
## 4052 Single unit: Semi-detached house
## 4053 Multi-unit house, flat
## 4054 Single unit: Detached house
## 4055 Single unit: Terraced house
## 4056 <NA>
## 4057 <NA>
## 4058 Single unit: Detached house
## 4059 Multi-unit house, flat
## 4060 Single unit: Detached house
## 4061 <NA>
## 4062 Single unit: Terraced house
## 4063 Single unit: Terraced house
## 4064 Multi-unit house, flat
## 4065 Single unit: Terraced house
## 4066 Single unit: Semi-detached house
## 4067 Single unit: Terraced house
## 4068 Single unit: Terraced house
## 4069 Single unit: Semi-detached house
## 4070 Single unit: Semi-detached house
## 4071 Multi-unit house, flat
## 4072 Single unit: Terraced house
## 4073 Multi-unit house, flat
## 4074 Single unit: Terraced house
## 4075 Single unit: Terraced house
## 4076 Single unit: Detached house
## 4077 Single unit: Semi-detached house
## 4078 Multi-unit house, flat
## 4079 <NA>
## 4080 Single unit: Semi-detached house
## 4081 Multi-unit house, flat
## 4082 Single unit: Terraced house
## 4083 Single unit: Terraced house
## 4084 Single unit: Terraced house
## 4085 Single unit: Detached house
## 4086 <NA>
## 4087 Single unit: Terraced house
## 4088 Multi-unit house, flat
## 4089 Single unit: Semi-detached house
## 4090 Single unit: Detached house
## 4091 Multi-unit house, flat
## 4092 Single unit: Detached house
## 4093 Single unit: Terraced house
## 4094 Single unit: Semi-detached house
## 4095 <NA>
## 4096 Multi-unit house, flat
## 4097 Single unit: Terraced house
## 4098 Single unit: Terraced house
## 4099 Single unit: Terraced house
## 4100 Single unit: Detached house
## 4101 Multi-unit: Student apartments, rooms
## 4102 <NA>
## 4103 <NA>
## 4104 Single unit: Terraced house
## 4105 Single unit: Semi-detached house
## 4106 Single unit: Terraced house
## 4107 Single unit: Semi-detached house
## 4108 Multi-unit house, flat
## 4109 Single unit: Semi-detached house
## 4110 Multi-unit house, flat
## 4111 Single unit: Semi-detached house
## 4112 Single unit: Terraced house
## 4113 Single unit: Detached house
## 4114 Single unit: Semi-detached house
## 4115 Single unit: Semi-detached house
## 4116 Multi-unit house, flat
## 4117 Multi-unit house, flat
## 4118 Multi-unit house, flat
## 4119 Single unit: Detached house
## 4120 <NA>
## 4121 Single unit: Detached house
## 4122 Single unit: Terraced house
## 4123 Single unit: Semi-detached house
## 4124 <NA>
## 4125 Single unit: Semi-detached house
## 4126 Single unit: Semi-detached house
## 4127 Single unit: Semi-detached house
## 4128 Single unit: Semi-detached house
## 4129 Single unit: Terraced house
## 4130 Multi-unit house, flat
## 4131 Single unit: Detached house
## 4132 Single unit: Terraced house
## 4133 Single unit: Terraced house
## 4134 Single unit: Semi-detached house
## 4135 Single unit: Semi-detached house
## 4136 Single unit: Semi-detached house
## 4137 <NA>
## 4138 Single unit: Detached house
## 4139 Multi-unit house, flat
## 4140 <NA>
## 4141 Multi-unit house, flat
## 4142 Multi-unit house, flat
## 4143 Multi-unit house, flat
## 4144 <NA>
## 4145 Single unit: Semi-detached house
## 4146 Single unit: Terraced house
## 4147 Single unit: Terraced house
## 4148 Single unit: Detached house
## 4149 Single unit: Detached house
## 4150 Single unit: Terraced house
## 4151 Single unit: Detached house
## 4152 Single unit: Semi-detached house
## 4153 Single unit: Terraced house
## 4154 Single unit: Semi-detached house
## 4155 Single unit: Terraced house
## 4156 Multi-unit house, flat
## 4157 Single unit: Detached house
## 4158 Single unit: Detached house
## 4159 Multi-unit: Sheltered/retirement housing
## 4160 Single unit: Detached house
## 4161 Single unit: Terraced house
## 4162 Multi-unit house, flat
## 4163 Single unit: Semi-detached house
## 4164 Multi-unit house, flat
## 4165 Single unit: Detached house
## 4166 Multi-unit house, flat
## 4167 <NA>
## 4168 Multi-unit house, flat
## 4169 Multi-unit house, flat
## 4170 Single unit: Semi-detached house
## 4171 Single unit: Terraced house
## 4172 Multi-unit house, flat
## 4173 Other
## 4174 Single unit: Detached house
## 4175 Single unit: Semi-detached house
## 4176 Multi-unit house, flat
## 4177 Multi-unit house, flat
## 4178 <NA>
## 4179 Single unit: Terraced house
## 4180 Multi-unit house, flat
## 4181 <NA>
## 4182 Single unit: Semi-detached house
## 4183 Single unit: Terraced house
## 4184 Single unit: Terraced house
## 4185 Single unit: Detached house
## 4186 Single unit: Terraced house
## 4187 Single unit: Detached house
## 4188 Single unit: Terraced house
## 4189 Single unit: Semi-detached house
## 4190 Single unit: Terraced house
## 4191 Single unit: Semi-detached house
## 4192 Single unit: Detached house
## 4193 Single unit: Terraced house
## 4194 <NA>
## 4195 Single unit: Semi-detached house
## 4196 Single unit: Terraced house
## 4197 Other
## 4198 Multi-unit house, flat
## 4199 Multi-unit house, flat
## 4200 Multi-unit house, flat
## 4201 Single unit: Detached house
## 4202 Single unit: Terraced house
## 4203 Multi-unit house, flat
## 4204 Multi-unit house, flat
## 4205 Single unit: Terraced house
## 4206 Single unit: Semi-detached house
## 4207 Single unit: Semi-detached house
## 4208 Single unit: Semi-detached house
## 4209 <NA>
## 4210 Single unit: Semi-detached house
## 4211 Single unit: Detached house
## 4212 <NA>
## 4213 Multi-unit house, flat
## 4214 Single unit: Terraced house
## 4215 Multi-unit house, flat
## 4216 Single unit: Semi-detached house
## 4217 Single unit: Semi-detached house
## 4218 Single unit: Semi-detached house
## 4219 Single unit: Terraced house
## 4220 <NA>
## 4221 Multi-unit house, flat
## 4222 Multi-unit house, flat
## 4223 Single unit: Semi-detached house
## 4224 Single unit: Terraced house
## 4225 <NA>
## 4226 Single unit: Semi-detached house
## 4227 Single unit: Terraced house
## 4228 Single unit: Semi-detached house
## 4229 Single unit: Detached house
## 4230 Single unit: Terraced house
## 4231 Single unit: Detached house
## 4232 Multi-unit house, flat
## 4233 Single unit: Detached house
## 4234 Single unit: Detached house
## 4235 <NA>
## 4236 Single unit: Semi-detached house
## 4237 Multi-unit house, flat
## 4238 Single unit: Terraced house
## 4239 Single unit: Terraced house
## 4240 Single unit: Semi-detached house
## 4241 Multi-unit house, flat
## 4242 Single unit: Semi-detached house
## 4243 Multi-unit house, flat
## 4244 Multi-unit house, flat
## 4245 Other
## 4246 <NA>
## 4247 Single unit: Detached house
## 4248 Single unit: Semi-detached house
## 4249 Single unit: Detached house
## 4250 Multi-unit house, flat
## 4251 <NA>
## 4252 Multi-unit house, flat
## 4253 Single unit: Semi-detached house
## 4254 Single unit: Semi-detached house
## 4255 Single unit: Detached house
## 4256 Single unit: Detached house
## 4257 Single unit: Semi-detached house
## 4258 Single unit: Semi-detached house
## 4259 Single unit: Terraced house
## 4260 Single unit: Detached house
## 4261 Multi-unit house, flat
## 4262 Single unit: Terraced house
## 4263 Single unit: Detached house
## 4264 Single unit: Detached house
## 4265 Single unit: Semi-detached house
## 4266 <NA>
## 4267 Single unit: Terraced house
## 4268 <NA>
## 4269 Single unit: Semi-detached house
## 4270 Single unit: Terraced house
## 4271 <NA>
## 4272 Single unit: Semi-detached house
## 4273 Single unit: Semi-detached house
## 4274 Multi-unit house, flat
## 4275 Multi-unit house, flat
## 4276 Single unit: Semi-detached house
## 4277 Single unit: Terraced house
## 4278 Single unit: Detached house
## 4279 Single unit: Terraced house
## 4280 Single unit: Semi-detached house
## 4281 Single unit: Detached house
## 4282 <NA>
## 4283 Single unit: Detached house
## 4284 Single unit: Semi-detached house
## 4285 Single unit: Terraced house
## 4286 Single unit: Terraced house
## 4287 Single unit: Terraced house
## 4288 Single unit: Terraced house
## 4289 Single unit: Terraced house
## 4290 Single unit: Semi-detached house
## 4291 Single unit: Detached house
## 4292 Single unit: Semi-detached house
## 4293 <NA>
## 4294 Single unit: Terraced house
## 4295 Single unit: Detached house
## 4296 Single unit: Terraced house
## 4297 <NA>
## 4298 Single unit: Terraced house
## 4299 Single unit: Semi-detached house
## 4300 Single unit: Semi-detached house
## 4301 Multi-unit house, flat
## 4302 Single unit: Detached house
## 4303 Single unit: Terraced house
## 4304 <NA>
## 4305 Single unit: Terraced house
## 4306 Single unit: Semi-detached house
## 4307 Single unit: Detached house
## 4308 Single unit: Semi-detached house
## 4309 <NA>
## 4310 Single unit: Detached house
## 4311 <NA>
## 4312 Multi-unit house, flat
## 4313 Single unit: Terraced house
## 4314 <NA>
## 4315 Single unit: Detached house
## 4316 Single unit: Terraced house
## 4317 Single unit: Semi-detached house
## 4318 Single unit: Terraced house
## 4319 Single unit: Terraced house
## 4320 Single unit: Terraced house
## 4321 <NA>
## 4322 Single unit: Detached house
## 4323 <NA>
## 4324 Single unit: Semi-detached house
## 4325 Single unit: Semi-detached house
## 4326 Single unit: Detached house
## 4327 Single unit: Semi-detached house
## 4328 Single unit: Terraced house
## 4329 Single unit: Terraced house
## 4330 Single unit: Detached house
## 4331 Single unit: Detached house
## 4332 Single unit: Detached house
## 4333 Multi-unit house, flat
## 4334 Single unit: Terraced house
## 4335 <NA>
## 4336 Single unit: Detached house
## 4337 Single unit: Semi-detached house
## 4338 Single unit: Semi-detached house
## 4339 Single unit: Terraced house
## 4340 <NA>
## 4341 Multi-unit house, flat
## 4342 Single unit: Semi-detached house
## 4343 Single unit: Detached house
## 4344 Single unit: Semi-detached house
## 4345 Single unit: Detached house
## 4346 Single unit: Detached house
## 4347 Single unit: Semi-detached house
## 4348 Single unit: Detached house
## 4349 Multi-unit house, flat
## 4350 Single unit: Semi-detached house
## 4351 Single unit: Terraced house
## 4352 Single unit: Detached house
## 4353 Multi-unit house, flat
## 4354 Single unit: Terraced house
## 4355 Single unit: Semi-detached house
## 4356 Single unit: Detached house
## 4357 Multi-unit house, flat
## 4358 Multi-unit house, flat
## 4359 Single unit: Detached house
## 4360 Single unit: Detached house
## 4361 Multi-unit house, flat
## 4362 Single unit: Terraced house
## 4363 Multi-unit house, flat
## 4364 Single unit: Terraced house
## 4365 Single unit: Detached house
## 4366 <NA>
## 4367 Single unit: Semi-detached house
## 4368 <NA>
## 4369 Single unit: Semi-detached house
## 4370 Single unit: Semi-detached house
## 4371 Single unit: Detached house
## 4372 Single unit: Detached house
## 4373 Single unit: Terraced house
## 4374 Single unit: Semi-detached house
## 4375 Multi-unit house, flat
## 4376 Multi-unit house, flat
## 4377 Single unit: Semi-detached house
## 4378 Single unit: Detached house
## 4379 Single unit: Detached house
## 4380 Single unit: Terraced house
## 4381 Single unit: Semi-detached house
## 4382 Single unit: Detached house
## 4383 Multi-unit house, flat
## 4384 Single unit: Terraced house
## 4385 Single unit: Terraced house
## 4386 Single unit: Semi-detached house
## 4387 Single unit: Semi-detached house
## 4388 <NA>
## 4389 Single unit: Terraced house
## 4390 Single unit: Semi-detached house
## 4391 Single unit: Terraced house
## 4392 Single unit: Terraced house
## 4393 Single unit: Detached house
## 4394 Single unit: Semi-detached house
## 4395 Single unit: Detached house
## 4396 Single unit: Semi-detached house
## 4397 Multi-unit house, flat
## 4398 <NA>
## 4399 <NA>
## 4400 Single unit: Terraced house
## 4401 Single unit: Detached house
## 4402 <NA>
## 4403 Multi-unit house, flat
## 4404 Single unit: Semi-detached house
## 4405 Multi-unit house, flat
## 4406 Single unit: Detached house
## 4407 Multi-unit house, flat
## 4408 Single unit: Detached house
## 4409 Single unit: Terraced house
## 4410 Single unit: Terraced house
## 4411 <NA>
## 4412 Single unit: Semi-detached house
## 4413 Single unit: Terraced house
## 4414 Single unit: Detached house
## 4415 Single unit: Detached house
## 4416 Single unit: Terraced house
## 4417 <NA>
## 4418 Single unit: Terraced house
## 4419 Single unit: Semi-detached house
## 4420 Single unit: Terraced house
## 4421 Single unit: Semi-detached house
## 4422 Single unit: Terraced house
## 4423 <NA>
## 4424 Single unit: Detached house
## 4425 <NA>
## 4426 Single unit: Terraced house
## 4427 <NA>
## 4428 Single unit: Detached house
## 4429 <NA>
## 4430 Single unit: Terraced house
## 4431 Single unit: Terraced house
## 4432 Single unit: Semi-detached house
## 4433 Single unit: Semi-detached house
## 4434 Single unit: Terraced house
## 4435 Single unit: Terraced house
## 4436 Multi-unit house, flat
## 4437 Single unit: Semi-detached house
## 4438 Multi-unit: Sheltered/retirement housing
## 4439 <NA>
## 4440 Single unit: Semi-detached house
## 4441 <NA>
## 4442 <NA>
## 4443 Single unit: Detached house
## 4444 Single unit: Detached house
## 4445 Single unit: Semi-detached house
## 4446 Single unit: Semi-detached house
## 4447 Single unit: Detached house
## 4448 Single unit: Terraced house
## 4449 Single unit: Semi-detached house
## 4450 Single unit: Terraced house
## 4451 Single unit: Semi-detached house
## 4452 Single unit: Semi-detached house
## 4453 Single unit: Terraced house
## 4454 Single unit: Semi-detached house
## 4455 Multi-unit house, flat
## 4456 Single unit: Detached house
## 4457 Single unit: Terraced house
## 4458 Single unit: Detached house
## 4459 Multi-unit house, flat
## 4460 Single unit: Terraced house
## 4461 Multi-unit house, flat
## 4462 Single unit: Detached house
## 4463 Single unit: Semi-detached house
## 4464 Single unit: Detached house
## 4465 Multi-unit house, flat
## 4466 Single unit: Semi-detached house
## 4467 Single unit: Terraced house
## 4468 Single unit: Semi-detached house
## 4469 Single unit: Detached house
## 4470 <NA>
## 4471 <NA>
## 4472 Single unit: Terraced house
## 4473 <NA>
## 4474 Single unit: Detached house
## 4475 Single unit: Detached house
## 4476 Single unit: Detached house
## 4477 Single unit: Terraced house
## 4478 Single unit: Detached house
## 4479 <NA>
## 4480 Single unit: Terraced house
## 4481 Single unit: Semi-detached house
## 4482 Single unit: Terraced house
## 4483 <NA>
## 4484 Single unit: Detached house
## 4485 <NA>
## 4486 <NA>
## 4487 Single unit: Terraced house
## 4488 Single unit: Terraced house
## 4489 Single unit: Semi-detached house
## 4490 Single unit: Detached house
## 4491 Single unit: Detached house
## 4492 Multi-unit house, flat
## 4493 <NA>
## 4494 Single unit: Semi-detached house
## 4495 Multi-unit house, flat
## 4496 Multi-unit house, flat
## 4497 Single unit: Detached house
## 4498 Multi-unit house, flat
## 4499 Single unit: Semi-detached house
## 4500 Single unit: Semi-detached house
## 4501 <NA>
## 4502 Single unit: Terraced house
## 4503 Single unit: Semi-detached house
## 4504 Single unit: Semi-detached house
## 4505 Multi-unit house, flat
## 4506 Single unit: Detached house
## 4507 <NA>
## 4508 Single unit: Detached house
## 4509 Single unit: Semi-detached house
## 4510 Single unit: Semi-detached house
## 4511 Single unit: Detached house
## 4512 Multi-unit house, flat
## 4513 Single unit: Terraced house
## 4514 Single unit: Detached house
## 4515 Multi-unit house, flat
## 4516 Single unit: Semi-detached house
## 4517 Single unit: Terraced house
## 4518 <NA>
## 4519 Only housing unit in building with other purpose
## 4520 Multi-unit house, flat
## 4521 Multi-unit house, flat
## 4522 Single unit: Terraced house
## 4523 <NA>
## 4524 Single unit: Terraced house
## 4525 <NA>
## 4526 <NA>
## 4527 Single unit: Detached house
## 4528 Single unit: Terraced house
## 4529 Single unit: Detached house
## 4530 Single unit: Detached house
## 4531 Single unit: Terraced house
## 4532 Multi-unit house, flat
## 4533 Multi-unit house, flat
## 4534 Single unit: Detached house
## 4535 Multi-unit house, flat
## 4536 <NA>
## 4537 Single unit: Semi-detached house
## 4538 Single unit: Detached house
## 4539 Single unit: Semi-detached house
## 4540 Single unit: Detached house
## 4541 Single unit: Semi-detached house
## 4542 <NA>
## 4543 Single unit: Detached house
## 4544 Single unit: Terraced house
## 4545 Other
## 4546 Single unit: Semi-detached house
## 4547 Single unit: Terraced house
## 4548 Single unit: Semi-detached house
## 4549 Multi-unit house, flat
## 4550 Single unit: Detached house
## 4551 Single unit: Terraced house
## 4552 Single unit: Semi-detached house
## 4553 Single unit: Terraced house
## 4554 Single unit: Detached house
## 4555 Single unit: Detached house
## 4556 Single unit: Terraced house
## 4557 Single unit: Semi-detached house
## 4558 Single unit: Terraced house
## 4559 Single unit: Detached house
## 4560 Single unit: Terraced house
## 4561 Single unit: Terraced house
## 4562 Multi-unit house, flat
## 4563 <NA>
## 4564 <NA>
## 4565 Multi-unit house, flat
## 4566 Single unit: Semi-detached house
## 4567 Single unit: Detached house
## 4568 Single unit: Semi-detached house
## 4569 Multi-unit house, flat
## 4570 Multi-unit house, flat
## 4571 Single unit: Semi-detached house
## 4572 Multi-unit house, flat
## 4573 Farm
## 4574 <NA>
## 4575 Single unit: Detached house
## 4576 Single unit: Semi-detached house
## 4577 Multi-unit house, flat
## 4578 Single unit: Detached house
## 4579 Single unit: Detached house
## 4580 Other
## 4581 Single unit: Semi-detached house
## 4582 Single unit: Terraced house
## 4583 Single unit: Semi-detached house
## 4584 Single unit: Detached house
## 4585 Single unit: Terraced house
## 4586 Single unit: Terraced house
## 4587 House-trailer or boat
## 4588 Single unit: Semi-detached house
## 4589 <NA>
## 4590 Single unit: Semi-detached house
## 4591 Single unit: Detached house
## 4592 Single unit: Terraced house
## 4593 Other
## 4594 Single unit: Semi-detached house
## 4595 Single unit: Detached house
## 4596 Single unit: Terraced house
## 4597 <NA>
## 4598 Single unit: Terraced house
## 4599 Single unit: Terraced house
## 4600 Other
## 4601 Single unit: Detached house
## 4602 <NA>
## 4603 Single unit: Semi-detached house
## 4604 Single unit: Semi-detached house
## 4605 Single unit: Terraced house
## 4606 Single unit: Semi-detached house
## 4607 Single unit: Detached house
## 4608 Single unit: Terraced house
## 4609 Single unit: Semi-detached house
## 4610 Single unit: Detached house
## 4611 Single unit: Semi-detached house
## 4612 Multi-unit house, flat
## 4613 Single unit: Semi-detached house
## 4614 Single unit: Detached house
## 4615 Multi-unit house, flat
## 4616 Single unit: Semi-detached house
## 4617 Single unit: Detached house
## 4618 Single unit: Detached house
## 4619 Single unit: Terraced house
## 4620 Single unit: Terraced house
## 4621 Single unit: Semi-detached house
## 4622 Single unit: Semi-detached house
## 4623 Single unit: Detached house
## 4624 Multi-unit house, flat
## 4625 Single unit: Semi-detached house
## 4626 Multi-unit house, flat
## 4627 Single unit: Terraced house
## 4628 Multi-unit: Sheltered/retirement housing
## 4629 Single unit: Semi-detached house
## 4630 Single unit: Semi-detached house
## 4631 Single unit: Detached house
## 4632 <NA>
## 4633 Single unit: Semi-detached house
## 4634 <NA>
## 4635 Single unit: Semi-detached house
## 4636 Farm
## 4637 Single unit: Detached house
## 4638 Single unit: Terraced house
## 4639 Single unit: Terraced house
## 4640 Single unit: Terraced house
## 4641 Single unit: Semi-detached house
## 4642 Single unit: Semi-detached house
## 4643 Multi-unit house, flat
## 4644 Single unit: Terraced house
## 4645 Single unit: Detached house
## 4646 Single unit: Detached house
## 4647 Single unit: Semi-detached house
## 4648 Single unit: Semi-detached house
## 4649 Single unit: Terraced house
## 4650 Single unit: Detached house
## 4651 Single unit: Semi-detached house
## 4652 Single unit: Terraced house
## 4653 Single unit: Semi-detached house
## 4654 Single unit: Semi-detached house
## 4655 Multi-unit house, flat
## 4656 Multi-unit house, flat
## 4657 Single unit: Detached house
## 4658 Single unit: Detached house
## 4659 Single unit: Detached house
## 4660 <NA>
## 4661 <NA>
## 4662 Single unit: Detached house
## 4663 Single unit: Terraced house
## 4664 Single unit: Terraced house
## 4665 Single unit: Semi-detached house
## 4666 Multi-unit house, flat
## 4667 <NA>
## 4668 Multi-unit house, flat
## 4669 Single unit: Detached house
## 4670 Single unit: Semi-detached house
## 4671 Multi-unit house, flat
## 4672 Single unit: Detached house
## 4673 Single unit: Semi-detached house
## 4674 Multi-unit house, flat
## 4675 Single unit: Semi-detached house
## 4676 Single unit: Terraced house
## 4677 Single unit: Detached house
## 4678 Multi-unit house, flat
## 4679 Single unit: Semi-detached house
## 4680 Farm
## 4681 <NA>
## 4682 Single unit: Terraced house
## 4683 Single unit: Detached house
## 4684 Single unit: Semi-detached house
## 4685 Multi-unit house, flat
## 4686 Single unit: Detached house
## 4687 <NA>
## 4688 Single unit: Semi-detached house
## 4689 Single unit: Detached house
## 4690 Single unit: Detached house
## 4691 Single unit: Terraced house
## 4692 <NA>
## 4693 Single unit: Detached house
## 4694 Single unit: Detached house
## 4695 Single unit: Semi-detached house
## 4696 Single unit: Detached house
## 4697 Single unit: Terraced house
## 4698 <NA>
## 4699 Single unit: Detached house
## 4700 Multi-unit house, flat
## 4701 Single unit: Semi-detached house
## 4702 Single unit: Semi-detached house
## 4703 Multi-unit house, flat
## 4704 Single unit: Semi-detached house
## 4705 Single unit: Terraced house
## 4706 <NA>
## 4707 <NA>
## 4708 Single unit: Detached house
## 4709 Multi-unit house, flat
## 4710 <NA>
## 4711 Single unit: Terraced house
## 4712 Single unit: Detached house
## 4713 Single unit: Detached house
## 4714 <NA>
## 4715 Multi-unit house, flat
## 4716 <NA>
## 4717 Single unit: Semi-detached house
## 4718 Single unit: Detached house
## 4719 Single unit: Terraced house
## 4720 Multi-unit house, flat
## 4721 <NA>
## 4722 Multi-unit house, flat
## 4723 Single unit: Semi-detached house
## 4724 <NA>
## 4725 Multi-unit house, flat
## 4726 Single unit: Terraced house
## 4727 Single unit: Semi-detached house
## 4728 Farm
## 4729 Single unit: Detached house
## 4730 Single unit: Terraced house
## 4731 Single unit: Semi-detached house
## 4732 Single unit: Terraced house
## 4733 Single unit: Detached house
## 4734 Single unit: Terraced house
## 4735 Multi-unit house, flat
## 4736 Multi-unit: Sheltered/retirement housing
## 4737 Multi-unit house, flat
## 4738 Single unit: Terraced house
## 4739 <NA>
## 4740 Single unit: Terraced house
## 4741 Single unit: Semi-detached house
## 4742 Multi-unit house, flat
## 4743 <NA>
## 4744 Single unit: Detached house
## 4745 Single unit: Terraced house
## 4746 Single unit: Detached house
## 4747 Single unit: Semi-detached house
## 4748 Single unit: Semi-detached house
## 4749 <NA>
## 4750 Single unit: Semi-detached house
## 4751 Multi-unit house, flat
## 4752 Single unit: Terraced house
## 4753 Single unit: Terraced house
## 4754 Multi-unit house, flat
## 4755 Single unit: Detached house
## 4756 Single unit: Semi-detached house
## 4757 Multi-unit house, flat
## 4758 Single unit: Terraced house
## 4759 Multi-unit: Sheltered/retirement housing
## 4760 Single unit: Terraced house
## 4761 Single unit: Semi-detached house
## 4762 Single unit: Semi-detached house
## 4763 Single unit: Semi-detached house
## 4764 Single unit: Detached house
## 4765 Single unit: Detached house
## 4766 Single unit: Detached house
## 4767 Multi-unit house, flat
## 4768 Single unit: Detached house
## 4769 Single unit: Detached house
## 4770 Single unit: Terraced house
## 4771 Single unit: Detached house
## 4772 <NA>
## 4773 Single unit: Semi-detached house
## 4774 Multi-unit house, flat
## 4775 Single unit: Detached house
## 4776 Multi-unit house, flat
## 4777 Single unit: Terraced house
## 4778 Single unit: Detached house
## 4779 Single unit: Semi-detached house
## 4780 Single unit: Terraced house
## 4781 Multi-unit house, flat
## 4782 Single unit: Semi-detached house
## 4783 Single unit: Terraced house
## 4784 Single unit: Terraced house
## 4785 Single unit: Semi-detached house
## 4786 Single unit: Semi-detached house
## 4787 Single unit: Semi-detached house
## 4788 <NA>
## 4789 Single unit: Terraced house
## 4790 <NA>
## 4791 <NA>
## 4792 Single unit: Terraced house
## 4793 Multi-unit house, flat
## 4794 Single unit: Terraced house
## 4795 Single unit: Detached house
## 4796 <NA>
## 4797 Multi-unit house, flat
## 4798 Single unit: Detached house
## 4799 Single unit: Detached house
## 4800 Single unit: Terraced house
## 4801 Single unit: Semi-detached house
## 4802 Multi-unit house, flat
## 4803 <NA>
## 4804 Single unit: Semi-detached house
## 4805 Single unit: Terraced house
## 4806 Single unit: Detached house
## 4807 <NA>
## 4808 Single unit: Terraced house
## 4809 Multi-unit: Sheltered/retirement housing
## 4810 <NA>
## 4811 Single unit: Terraced house
## 4812 Single unit: Semi-detached house
## 4813 Single unit: Semi-detached house
## 4814 <NA>
## 4815 Single unit: Terraced house
## 4816 Multi-unit house, flat
## 4817 Single unit: Semi-detached house
## 4818 Single unit: Semi-detached house
## 4819 <NA>
## 4820 Multi-unit house, flat
## 4821 Single unit: Detached house
## 4822 Single unit: Terraced house
## 4823 Single unit: Semi-detached house
## 4824 <NA>
## 4825 <NA>
## 4826 Single unit: Detached house
## 4827 Multi-unit house, flat
## 4828 Single unit: Semi-detached house
## 4829 Single unit: Semi-detached house
## 4830 Single unit: Semi-detached house
## 4831 Single unit: Terraced house
## 4832 Single unit: Semi-detached house
## 4833 <NA>
## 4834 Single unit: Detached house
## 4835 Other
## 4836 Multi-unit house, flat
## 4837 Single unit: Terraced house
## 4838 Single unit: Semi-detached house
## 4839 Single unit: Detached house
## 4840 Single unit: Semi-detached house
## 4841 Single unit: Detached house
## 4842 Single unit: Detached house
## 4843 Multi-unit house, flat
## 4844 Single unit: Terraced house
## 4845 Single unit: Detached house
## 4846 Single unit: Detached house
## 4847 <NA>
## 4848 Single unit: Detached house
## 4849 Multi-unit house, flat
## 4850 Single unit: Semi-detached house
## 4851 Multi-unit house, flat
## 4852 <NA>
## 4853 Multi-unit house, flat
## 4854 Multi-unit house, flat
## 4855 <NA>
## 4856 Single unit: Terraced house
## 4857 Single unit: Semi-detached house
## 4858 Single unit: Terraced house
## 4859 Multi-unit house, flat
## 4860 Single unit: Semi-detached house
## 4861 Single unit: Detached house
## 4862 Single unit: Semi-detached house
## 4863 Single unit: Semi-detached house
## 4864 Single unit: Terraced house
## 4865 <NA>
## 4866 Multi-unit house, flat
## 4867 Multi-unit house, flat
## 4868 Multi-unit house, flat
## 4869 <NA>
## 4870 Single unit: Terraced house
## 4871 Single unit: Terraced house
## 4872 Single unit: Detached house
## 4873 Single unit: Terraced house
## 4874 Single unit: Semi-detached house
## 4875 Single unit: Terraced house
## 4876 Single unit: Detached house
## 4877 Single unit: Detached house
## 4878 Single unit: Semi-detached house
## 4879 <NA>
## 4880 Single unit: Terraced house
## 4881 Single unit: Terraced house
## 4882 Single unit: Terraced house
## 4883 Single unit: Detached house
## 4884 Multi-unit house, flat
## 4885 Single unit: Semi-detached house
## 4886 Single unit: Terraced house
## 4887 <NA>
## 4888 Single unit: Terraced house
## 4889 Single unit: Semi-detached house
## 4890 Single unit: Detached house
## 4891 Single unit: Terraced house
## 4892 Single unit: Terraced house
## 4893 Single unit: Detached house
## 4894 Single unit: Semi-detached house
## 4895 <NA>
## 4896 <NA>
## 4897 Single unit: Detached house
## 4898 Single unit: Terraced house
## 4899 Single unit: Semi-detached house
## 4900 Single unit: Detached house
## 4901 Single unit: Semi-detached house
## 4902 Single unit: Semi-detached house
## 4903 Single unit: Detached house
## 4904 <NA>
## 4905 Multi-unit house, flat
## 4906 <NA>
## 4907 <NA>
## 4908 Single unit: Detached house
## 4909 <NA>
## 4910 Single unit: Semi-detached house
## 4911 Single unit: Terraced house
## 4912 Single unit: Terraced house
## 4913 Multi-unit house, flat
## 4914 Single unit: Semi-detached house
## 4915 Multi-unit house, flat
## 4916 Single unit: Semi-detached house
## 4917 Single unit: Detached house
## 4918 Single unit: Terraced house
## 4919 Multi-unit house, flat
## 4920 Multi-unit house, flat
## 4921 Single unit: Terraced house
## 4922 Single unit: Terraced house
## 4923 <NA>
## 4924 Single unit: Terraced house
## 4925 Multi-unit house, flat
## 4926 Single unit: Detached house
## 4927 Single unit: Semi-detached house
## 4928 <NA>
## 4929 <NA>
## 4930 Single unit: Terraced house
## 4931 Single unit: Detached house
## 4932 Single unit: Semi-detached house
## 4933 Single unit: Semi-detached house
## 4934 Multi-unit house, flat
## 4935 Single unit: Semi-detached house
## 4936 Single unit: Terraced house
## 4937 Single unit: Terraced house
## 4938 Single unit: Semi-detached house
## 4939 Single unit: Terraced house
## 4940 Single unit: Detached house
## 4941 Single unit: Semi-detached house
## 4942 Single unit: Detached house
## 4943 Single unit: Semi-detached house
## 4944 Single unit: Terraced house
## 4945 Single unit: Semi-detached house
## 4946 Single unit: Semi-detached house
## 4947 Multi-unit house, flat
## 4948 Single unit: Semi-detached house
## 4949 Single unit: Semi-detached house
## 4950 Single unit: Terraced house
## 4951 Single unit: Terraced house
## 4952 Multi-unit house, flat
## 4953 Single unit: Detached house
## 4954 Single unit: Detached house
## 4955 Single unit: Terraced house
## 4956 Single unit: Terraced house
## 4957 <NA>
## 4958 Single unit: Detached house
## 4959 Single unit: Terraced house
## 4960 Single unit: Terraced house
## 4961 Single unit: Terraced house
## 4962 Single unit: Detached house
## 4963 Single unit: Terraced house
## 4964 <NA>
## 4965 Single unit: Semi-detached house
## 4966 Single unit: Terraced house
## 4967 Single unit: Detached house
## 4968 Multi-unit house, flat
## 4969 Single unit: Terraced house
## 4970 Single unit: Detached house
## 4971 Single unit: Terraced house
## 4972 Single unit: Detached house
## 4973 Multi-unit house, flat
## 4974 Single unit: Semi-detached house
## 4975 Multi-unit house, flat
## 4976 <NA>
## 4977 <NA>
## 4978 Single unit: Detached house
## 4979 Multi-unit house, flat
## 4980 Single unit: Semi-detached house
## 4981 <NA>
## 4982 Multi-unit house, flat
## 4983 Single unit: Semi-detached house
## 4984 Single unit: Detached house
## 4985 Single unit: Terraced house
## 4986 Single unit: Detached house
## 4987 Single unit: Detached house
## 4988 Single unit: Terraced house
## 4989 Single unit: Terraced house
## 4990 Multi-unit house, flat
## 4991 Single unit: Terraced house
## 4992 Multi-unit house, flat
## 4993 Other
## 4994 Single unit: Terraced house
## 4995 Single unit: Detached house
## 4996 Single unit: Terraced house
## 4997 Single unit: Semi-detached house
## 4998 Multi-unit house, flat
## 4999 <NA>
## 5000 Single unit: Semi-detached house
## 5001 Single unit: Terraced house
## 5002 Single unit: Detached house
## 5003 Multi-unit house, flat
## 5004 Single unit: Terraced house
## 5005 Multi-unit house, flat
## 5006 Single unit: Terraced house
## 5007 Single unit: Detached house
## 5008 Single unit: Terraced house
## 5009 Single unit: Semi-detached house
## 5010 Single unit: Terraced house
## 5011 Single unit: Terraced house
## 5012 <NA>
## 5013 Multi-unit house, flat
## 5014 Multi-unit house, flat
## 5015 Multi-unit house, flat
## 5016 <NA>
## 5017 Single unit: Semi-detached house
## 5018 <NA>
## 5019 Single unit: Semi-detached house
## 5020 Single unit: Semi-detached house
## 5021 Single unit: Terraced house
## 5022 Single unit: Terraced house
## 5023 Single unit: Terraced house
## 5024 Single unit: Detached house
## 5025 Single unit: Semi-detached house
## 5026 Single unit: Semi-detached house
## 5027 Single unit: Detached house
## 5028 Single unit: Detached house
## 5029 Single unit: Semi-detached house
## 5030 <NA>
## 5031 Single unit: Detached house
## 5032 Multi-unit house, flat
## 5033 Single unit: Terraced house
## 5034 Single unit: Detached house
## 5035 Single unit: Terraced house
## 5036 Single unit: Terraced house
## 5037 Single unit: Detached house
## 5038 <NA>
## 5039 Multi-unit house, flat
## 5040 Multi-unit house, flat
## 5041 Single unit: Detached house
## 5042 <NA>
## 5043 Single unit: Terraced house
## 5044 Multi-unit house, flat
## 5045 Single unit: Semi-detached house
## 5046 Single unit: Detached house
## 5047 <NA>
## 5048 Single unit: Semi-detached house
## 5049 Single unit: Terraced house
## 5050 <NA>
## 5051 <NA>
## 5052 Single unit: Terraced house
## 5053 <NA>
## 5054 Single unit: Detached house
## 5055 Single unit: Terraced house
## 5056 Single unit: Terraced house
## 5057 <NA>
## 5058 <NA>
## 5059 Single unit: Detached house
## 5060 Single unit: Terraced house
## 5061 Single unit: Detached house
## 5062 Single unit: Semi-detached house
## 5063 Single unit: Terraced house
## 5064 Single unit: Terraced house
## 5065 <NA>
## 5066 <NA>
## 5067 Single unit: Semi-detached house
## 5068 <NA>
## 5069 Single unit: Semi-detached house
## 5070 <NA>
## 5071 Single unit: Terraced house
## 5072 Single unit: Semi-detached house
## 5073 Single unit: Detached house
## 5074 Single unit: Detached house
## 5075 Single unit: Terraced house
## 5076 Single unit: Detached house
## 5077 Single unit: Terraced house
## 5078 Multi-unit house, flat
## 5079 Multi-unit house, flat
## 5080 Single unit: Semi-detached house
## 5081 <NA>
## 5082 Single unit: Semi-detached house
## 5083 Single unit: Detached house
## 5084 Single unit: Terraced house
## 5085 Multi-unit: Student apartments, rooms
## 5086 Single unit: Detached house
## 5087 Single unit: Terraced house
## 5088 Single unit: Detached house
## 5089 Single unit: Detached house
## 5090 Single unit: Detached house
## 5091 Multi-unit house, flat
## 5092 Single unit: Terraced house
## 5093 Single unit: Terraced house
## 5094 Single unit: Detached house
## 5095 Single unit: Semi-detached house
## 5096 Single unit: Terraced house
## 5097 Single unit: Terraced house
## 5098 Single unit: Semi-detached house
## 5099 Multi-unit house, flat
## 5100 Single unit: Semi-detached house
## 5101 Single unit: Terraced house
## 5102 Single unit: Terraced house
## 5103 Single unit: Terraced house
## 5104 Single unit: Terraced house
## 5105 Single unit: Semi-detached house
## 5106 Single unit: Semi-detached house
## 5107 <NA>
## 5108 Single unit: Terraced house
## 5109 Single unit: Semi-detached house
## 5110 Single unit: Terraced house
## 5111 Single unit: Semi-detached house
## 5112 <NA>
## 5113 Single unit: Terraced house
## 5114 Single unit: Semi-detached house
## 5115 Single unit: Semi-detached house
## 5116 Single unit: Terraced house
## 5117 Single unit: Detached house
## 5118 Single unit: Semi-detached house
## 5119 Single unit: Semi-detached house
## 5120 Single unit: Detached house
## 5121 Single unit: Semi-detached house
## 5122 Single unit: Semi-detached house
## 5123 Single unit: Semi-detached house
## 5124 Single unit: Detached house
## 5125 <NA>
## 5126 Multi-unit house, flat
## 5127 Single unit: Detached house
## 5128 Single unit: Terraced house
## 5129 Single unit: Semi-detached house
## 5130 Single unit: Terraced house
## 5131 Single unit: Semi-detached house
## 5132 Single unit: Semi-detached house
## 5133 Single unit: Terraced house
## 5134 Single unit: Detached house
## 5135 Single unit: Detached house
## 5136 Multi-unit house, flat
## 5137 Single unit: Detached house
## 5138 Multi-unit house, flat
## 5139 <NA>
## 5140 Single unit: Terraced house
## 5141 Multi-unit house, flat
## 5142 Multi-unit house, flat
## 5143 Single unit: Detached house
## 5144 Single unit: Detached house
## 5145 <NA>
## 5146 Single unit: Detached house
## 5147 Single unit: Semi-detached house
## 5148 Single unit: Detached house
## 5149 Single unit: Semi-detached house
## 5150 Multi-unit house, flat
## 5151 Single unit: Terraced house
## 5152 Single unit: Detached house
## 5153 Single unit: Detached house
## 5154 Single unit: Terraced house
## 5155 Single unit: Detached house
## 5156 <NA>
## 5157 Single unit: Semi-detached house
## 5158 Single unit: Detached house
## 5159 Multi-unit house, flat
## 5160 Single unit: Terraced house
## 5161 Single unit: Terraced house
## 5162 Multi-unit house, flat
## 5163 Single unit: Semi-detached house
## 5164 Single unit: Detached house
## 5165 Multi-unit house, flat
## 5166 Single unit: Semi-detached house
## 5167 Single unit: Detached house
## 5168 <NA>
## 5169 Single unit: Terraced house
## 5170 <NA>
## 5171 Single unit: Terraced house
## 5172 Single unit: Detached house
## 5173 Single unit: Detached house
## 5174 Single unit: Detached house
## 5175 Single unit: Detached house
## 5176 Single unit: Semi-detached house
## 5177 Single unit: Semi-detached house
## 5178 <NA>
## 5179 Single unit: Semi-detached house
## 5180 Single unit: Terraced house
## 5181 Multi-unit house, flat
## 5182 Single unit: Detached house
## 5183 Single unit: Detached house
## 5184 Single unit: Semi-detached house
## 5185 Single unit: Detached house
## 5186 Single unit: Semi-detached house
## 5187 <NA>
## 5188 Single unit: Terraced house
## 5189 Single unit: Semi-detached house
## 5190 Multi-unit house, flat
## 5191 Single unit: Semi-detached house
## 5192 Single unit: Terraced house
## 5193 Single unit: Detached house
## 5194 Single unit: Semi-detached house
## 5195 Single unit: Terraced house
## 5196 Single unit: Terraced house
## 5197 Single unit: Semi-detached house
## 5198 Single unit: Detached house
## 5199 Single unit: Detached house
## 5200 Single unit: Detached house
## 5201 Single unit: Detached house
## 5202 Single unit: Semi-detached house
## 5203 Single unit: Terraced house
## 5204 Single unit: Detached house
## 5205 <NA>
## 5206 <NA>
## 5207 Single unit: Terraced house
## 5208 Multi-unit house, flat
## 5209 <NA>
## 5210 Single unit: Terraced house
## 5211 <NA>
## 5212 Single unit: Terraced house
## 5213 Other
## 5214 Multi-unit house, flat
## 5215 Single unit: Semi-detached house
## 5216 Single unit: Semi-detached house
## 5217 Single unit: Semi-detached house
## 5218 Single unit: Terraced house
## 5219 Single unit: Semi-detached house
## 5220 Single unit: Detached house
## 5221 Single unit: Detached house
## 5222 Single unit: Detached house
## 5223 Single unit: Semi-detached house
## 5224 Single unit: Semi-detached house
## 5225 Single unit: Terraced house
## 5226 Single unit: Semi-detached house
## 5227 Multi-unit house, flat
## 5228 Single unit: Detached house
## 5229 Single unit: Terraced house
## 5230 Single unit: Terraced house
## 5231 Single unit: Terraced house
## 5232 Multi-unit house, flat
## 5233 Single unit: Terraced house
## 5234 Single unit: Detached house
## 5235 <NA>
## 5236 Single unit: Semi-detached house
## 5237 Multi-unit house, flat
## 5238 <NA>
## 5239 Multi-unit house, flat
## 5240 <NA>
## 5241 Single unit: Semi-detached house
## 5242 Single unit: Terraced house
## 5243 Single unit: Semi-detached house
## 5244 Multi-unit house, flat
## 5245 Single unit: Semi-detached house
## 5246 <NA>
## 5247 Single unit: Semi-detached house
## 5248 Single unit: Semi-detached house
## 5249 Single unit: Semi-detached house
## 5250 Single unit: Detached house
## 5251 Single unit: Detached house
## 5252 Multi-unit house, flat
## 5253 Single unit: Semi-detached house
## 5254 <NA>
## 5255 Single unit: Detached house
## 5256 Single unit: Detached house
## 5257 <NA>
## 5258 Multi-unit: Sheltered/retirement housing
## 5259 Single unit: Semi-detached house
## 5260 Single unit: Detached house
## 5261 Other
## 5262 Multi-unit house, flat
## 5263 Multi-unit house, flat
## 5264 Multi-unit house, flat
## 5265 Other
## 5266 Single unit: Terraced house
## 5267 Multi-unit house, flat
## 5268 Single unit: Semi-detached house
## 5269 Multi-unit house, flat
## 5270 Single unit: Detached house
## 5271 <NA>
## 5272 Single unit: Detached house
## 5273 <NA>
## 5274 Multi-unit house, flat
## 5275 Multi-unit house, flat
## 5276 Multi-unit house, flat
## 5277 Multi-unit house, flat
## 5278 Single unit: Detached house
## 5279 Single unit: Semi-detached house
## 5280 Single unit: Detached house
## 5281 Multi-unit house, flat
## 5282 Multi-unit house, flat
## 5283 Single unit: Semi-detached house
## 5284 Single unit: Terraced house
## 5285 Multi-unit house, flat
## 5286 Single unit: Semi-detached house
## 5287 Multi-unit house, flat
## 5288 Single unit: Semi-detached house
## 5289 Single unit: Terraced house
## 5290 Single unit: Detached house
## 5291 Single unit: Detached house
## 5292 Multi-unit house, flat
## 5293 Single unit: Semi-detached house
## 5294 Single unit: Detached house
## 5295 Multi-unit house, flat
## 5296 Single unit: Terraced house
## 5297 Single unit: Semi-detached house
## 5298 Multi-unit house, flat
## 5299 Single unit: Semi-detached house
## 5300 <NA>
## 5301 Multi-unit house, flat
## 5302 Single unit: Semi-detached house
## 5303 Single unit: Detached house
## 5304 <NA>
## 5305 Multi-unit house, flat
## 5306 Single unit: Semi-detached house
## 5307 Single unit: Semi-detached house
## 5308 Single unit: Terraced house
## 5309 Single unit: Semi-detached house
## 5310 <NA>
## 5311 Single unit: Terraced house
## 5312 Multi-unit house, flat
## 5313 Multi-unit house, flat
## 5314 Single unit: Terraced house
## 5315 Multi-unit house, flat
## 5316 Single unit: Detached house
## 5317 Single unit: Semi-detached house
## 5318 Single unit: Terraced house
## 5319 Multi-unit house, flat
## 5320 Single unit: Terraced house
## 5321 Single unit: Terraced house
## 5322 Multi-unit house, flat
## 5323 Single unit: Terraced house
## 5324 Single unit: Semi-detached house
## 5325 Single unit: Semi-detached house
## 5326 Single unit: Detached house
## 5327 Multi-unit house, flat
## 5328 Single unit: Semi-detached house
## 5329 Multi-unit house, flat
## 5330 Single unit: Semi-detached house
## 5331 Single unit: Terraced house
## 5332 Single unit: Detached house
## 5333 Single unit: Terraced house
## 5334 Single unit: Terraced house
## 5335 Single unit: Terraced house
## 5336 Single unit: Terraced house
## 5337 Multi-unit house, flat
## 5338 <NA>
## 5339 Single unit: Terraced house
## 5340 Single unit: Semi-detached house
## 5341 Single unit: Semi-detached house
## 5342 Single unit: Terraced house
## 5343 Single unit: Semi-detached house
## 5344 Single unit: Terraced house
## 5345 Single unit: Detached house
## 5346 Single unit: Terraced house
## 5347 Single unit: Semi-detached house
## 5348 Single unit: Detached house
## 5349 Single unit: Semi-detached house
## 5350 Single unit: Detached house
## 5351 Multi-unit house, flat
## 5352 Single unit: Semi-detached house
## 5353 Single unit: Detached house
## 5354 Other
## 5355 Single unit: Detached house
## 5356 Single unit: Semi-detached house
## 5357 Single unit: Semi-detached house
## 5358 Multi-unit house, flat
## 5359 Multi-unit: Sheltered/retirement housing
## 5360 Single unit: Detached house
## 5361 Multi-unit house, flat
## 5362 Single unit: Terraced house
## 5363 Single unit: Semi-detached house
## 5364 Single unit: Terraced house
## 5365 <NA>
## 5366 Single unit: Semi-detached house
## 5367 Single unit: Semi-detached house
## 5368 Single unit: Terraced house
## 5369 Multi-unit house, flat
## 5370 Single unit: Semi-detached house
## 5371 <NA>
## 5372 Single unit: Terraced house
## 5373 Single unit: Terraced house
## 5374 Single unit: Detached house
## 5375 Single unit: Terraced house
## 5376 Single unit: Semi-detached house
## 5377 Single unit: Terraced house
## 5378 Single unit: Semi-detached house
## 5379 Other
## 5380 Single unit: Semi-detached house
## 5381 Multi-unit house, flat
## 5382 Multi-unit: Student apartments, rooms
## 5383 Multi-unit house, flat
## 5384 <NA>
## 5385 Single unit: Terraced house
## 5386 Single unit: Semi-detached house
## 5387 Multi-unit house, flat
## 5388 Single unit: Detached house
## 5389 Single unit: Semi-detached house
## 5390 Single unit: Detached house
## 5391 Single unit: Semi-detached house
## 5392 Single unit: Terraced house
## 5393 Single unit: Detached house
## 5394 Single unit: Terraced house
## 5395 Multi-unit house, flat
## 5396 Single unit: Terraced house
## 5397 Single unit: Detached house
## 5398 Single unit: Terraced house
## 5399 Single unit: Terraced house
## 5400 Multi-unit: Sheltered/retirement housing
## 5401 Single unit: Detached house
## 5402 Single unit: Terraced house
## 5403 Single unit: Terraced house
## 5404 Single unit: Terraced house
## 5405 Single unit: Detached house
## 5406 Multi-unit house, flat
## 5407 <NA>
## 5408 <NA>
## 5409 Other
## 5410 <NA>
## 5411 <NA>
## 5412 Single unit: Semi-detached house
## 5413 Multi-unit house, flat
## 5414 Single unit: Terraced house
## 5415 Single unit: Semi-detached house
## 5416 Single unit: Detached house
## 5417 Single unit: Detached house
## 5418 <NA>
## 5419 Single unit: Detached house
## 5420 Multi-unit house, flat
## 5421 Single unit: Semi-detached house
## 5422 Single unit: Semi-detached house
## 5423 Single unit: Terraced house
## 5424 Single unit: Terraced house
## 5425 Single unit: Semi-detached house
## 5426 <NA>
## 5427 Single unit: Detached house
## 5428 Multi-unit house, flat
## 5429 Single unit: Terraced house
## 5430 Single unit: Detached house
## 5431 Multi-unit house, flat
## 5432 Single unit: Semi-detached house
## 5433 Single unit: Detached house
## 5434 Multi-unit house, flat
## 5435 Multi-unit house, flat
## 5436 Single unit: Terraced house
## 5437 Single unit: Terraced house
## 5438 Multi-unit house, flat
## 5439 Single unit: Semi-detached house
## 5440 Single unit: Terraced house
## 5441 Single unit: Terraced house
## 5442 Multi-unit house, flat
## 5443 Single unit: Terraced house
## 5444 <NA>
## 5445 Single unit: Semi-detached house
## 5446 Multi-unit house, flat
## 5447 <NA>
## 5448 Single unit: Semi-detached house
## 5449 Single unit: Semi-detached house
## 5450 Single unit: Terraced house
## 5451 Single unit: Terraced house
## 5452 Single unit: Terraced house
## 5453 Single unit: Detached house
## 5454 Single unit: Detached house
## 5455 <NA>
## 5456 Single unit: Semi-detached house
## 5457 Single unit: Semi-detached house
## 5458 Single unit: Semi-detached house
## 5459 Single unit: Terraced house
## 5460 Single unit: Terraced house
## 5461 Single unit: Semi-detached house
## 5462 Multi-unit house, flat
## 5463 Single unit: Detached house
## 5464 Single unit: Semi-detached house
## 5465 Single unit: Semi-detached house
## 5466 Single unit: Detached house
## 5467 Single unit: Terraced house
## 5468 <NA>
## 5469 Single unit: Semi-detached house
## 5470 Single unit: Semi-detached house
## 5471 Single unit: Semi-detached house
## 5472 Multi-unit house, flat
## 5473 Single unit: Terraced house
## 5474 Single unit: Terraced house
## 5475 Single unit: Semi-detached house
## 5476 Single unit: Semi-detached house
## 5477 Single unit: Terraced house
## 5478 Single unit: Terraced house
## 5479 Single unit: Detached house
## 5480 Single unit: Semi-detached house
## 5481 Multi-unit house, flat
## 5482 Single unit: Terraced house
## 5483 Single unit: Detached house
## 5484 Multi-unit house, flat
## 5485 Multi-unit house, flat
## 5486 Multi-unit house, flat
## 5487 Multi-unit house, flat
## 5488 Single unit: Terraced house
## 5489 Single unit: Semi-detached house
## 5490 <NA>
## 5491 <NA>
## 5492 Multi-unit house, flat
## 5493 Single unit: Terraced house
## 5494 Single unit: Semi-detached house
## 5495 <NA>
## 5496 Single unit: Terraced house
## 5497 Single unit: Terraced house
## 5498 Single unit: Terraced house
## 5499 Single unit: Semi-detached house
## 5500 Single unit: Terraced house
## 5501 Single unit: Detached house
## 5502 Single unit: Semi-detached house
## 5503 Single unit: Detached house
## 5504 Single unit: Terraced house
## 5505 Single unit: Semi-detached house
## 5506 Single unit: Semi-detached house
## 5507 Single unit: Semi-detached house
## 5508 Single unit: Detached house
## 5509 <NA>
## 5510 Multi-unit house, flat
## 5511 Single unit: Semi-detached house
## 5512 Single unit: Terraced house
## 5513 Single unit: Terraced house
## 5514 Multi-unit house, flat
## 5515 Single unit: Detached house
## 5516 Single unit: Detached house
## 5517 Single unit: Semi-detached house
## 5518 Single unit: Terraced house
## 5519 <NA>
## 5520 <NA>
## 5521 Single unit: Terraced house
## 5522 <NA>
## 5523 Multi-unit house, flat
## 5524 Single unit: Semi-detached house
## 5525 Single unit: Terraced house
## 5526 Single unit: Detached house
## 5527 <NA>
## 5528 <NA>
## 5529 Single unit: Semi-detached house
## 5530 <NA>
## 5531 Single unit: Semi-detached house
## 5532 Single unit: Semi-detached house
## 5533 Multi-unit house, flat
## 5534 Single unit: Semi-detached house
## 5535 Single unit: Semi-detached house
## 5536 Single unit: Terraced house
## 5537 Multi-unit house, flat
## 5538 <NA>
## 5539 Single unit: Detached house
## 5540 Single unit: Semi-detached house
## 5541 Single unit: Terraced house
## 5542 Single unit: Terraced house
## 5543 Single unit: Terraced house
## 5544 Single unit: Detached house
## 5545 Single unit: Detached house
## 5546 Single unit: Terraced house
## 5547 Single unit: Detached house
## 5548 Multi-unit house, flat
## 5549 Single unit: Detached house
## 5550 Single unit: Detached house
## 5551 Single unit: Semi-detached house
## 5552 Single unit: Semi-detached house
## 5553 <NA>
## 5554 Single unit: Terraced house
## 5555 Single unit: Terraced house
## 5556 Single unit: Terraced house
## 5557 Single unit: Detached house
## 5558 Single unit: Terraced house
## 5559 Single unit: Terraced house
## 5560 Multi-unit house, flat
## 5561 Single unit: Semi-detached house
## 5562 Single unit: Detached house
## 5563 <NA>
## 5564 Single unit: Detached house
## 5565 Single unit: Detached house
## 5566 Single unit: Terraced house
## 5567 Single unit: Detached house
## 5568 Single unit: Terraced house
## 5569 Single unit: Detached house
## 5570 Multi-unit house, flat
## 5571 Single unit: Semi-detached house
## 5572 Multi-unit house, flat
## 5573 Single unit: Semi-detached house
## 5574 Single unit: Semi-detached house
## 5575 Single unit: Terraced house
## 5576 Single unit: Detached house
## 5577 Single unit: Semi-detached house
## 5578 Single unit: Terraced house
## 5579 Single unit: Semi-detached house
## 5580 Single unit: Terraced house
## 5581 Single unit: Semi-detached house
## 5582 Single unit: Terraced house
## 5583 Single unit: Semi-detached house
## 5584 <NA>
## 5585 Other
## 5586 Multi-unit house, flat
## 5587 Single unit: Terraced house
## 5588 Single unit: Detached house
## 5589 <NA>
## 5590 Single unit: Semi-detached house
## 5591 Single unit: Terraced house
## 5592 <NA>
## 5593 Single unit: Terraced house
## 5594 <NA>
## 5595 Single unit: Terraced house
## 5596 Multi-unit house, flat
## 5597 Single unit: Semi-detached house
## 5598 Single unit: Semi-detached house
## 5599 Single unit: Semi-detached house
## 5600 Single unit: Semi-detached house
## access physa
## 1 No, neither of these Satisfactory
## 2 No, neither of these Good
## 3 Yes, locked gate/door Good
## 4 No, neither of these Satisfactory
## 5 No, neither of these Satisfactory
## 6 No, neither of these Very good
## 7 No, neither of these Satisfactory
## 8 No, neither of these Good
## 9 No, neither of these Bad
## 10 No, neither of these Satisfactory
## 11 No, neither of these Very good
## 12 No, neither of these Good
## 13 Yes, entry phone Satisfactory
## 14 No, neither of these Very good
## 15 No, neither of these Satisfactory
## 16 No, neither of these Good
## 17 No, neither of these Satisfactory
## 18 No, neither of these Bad
## 19 No, neither of these Very good
## 20 No, neither of these Satisfactory
## 21 No, neither of these Very good
## 22 Yes, entry phone and locked gate/door Good
## 23 No, neither of these Very good
## 24 Yes, entry phone Good
## 25 Yes, entry phone Good
## 26 No, neither of these Good
## 27 Yes, locked gate/door Bad
## 28 No, neither of these Good
## 29 No, neither of these Good
## 30 No, neither of these Good
## 31 No, neither of these Good
## 32 No, neither of these Good
## 33 No, neither of these Satisfactory
## 34 No, neither of these Good
## 35 No, neither of these Good
## 36 No, neither of these Bad
## 37 No, neither of these Good
## 38 Yes, entry phone Very good
## 39 No, neither of these Good
## 40 No, neither of these Good
## 41 No, neither of these Good
## 42 No, neither of these Good
## 43 Yes, entry phone and locked gate/door Very bad
## 44 No, neither of these Very good
## 45 Yes, entry phone and locked gate/door Good
## 46 No, neither of these Very good
## 47 No, neither of these Good
## 48 No, neither of these Very good
## 49 No, neither of these Satisfactory
## 50 No, neither of these Good
## 51 No, neither of these Satisfactory
## 52 Yes, entry phone Satisfactory
## 53 No, neither of these Good
## 54 No, neither of these Good
## 55 Yes, entry phone and locked gate/door Satisfactory
## 56 Yes, entry phone and locked gate/door Satisfactory
## 57 No, neither of these Good
## 58 No, neither of these Good
## 59 No, neither of these Very good
## 60 No, neither of these Good
## 61 No, neither of these Satisfactory
## 62 No, neither of these Good
## 63 No, neither of these Good
## 64 No, neither of these Very good
## 65 No, neither of these Satisfactory
## 66 No, neither of these Good
## 67 No, neither of these Good
## 68 No, neither of these Good
## 69 Yes, entry phone and locked gate/door Very good
## 70 No, neither of these Very good
## 71 Yes, entry phone and locked gate/door Good
## 72 No, neither of these Very good
## 73 No, neither of these Very good
## 74 No, neither of these Bad
## 75 No, neither of these Good
## 76 No, neither of these Good
## 77 Yes, entry phone and locked gate/door Satisfactory
## 78 No, neither of these Good
## 79 No, neither of these Good
## 80 No, neither of these Good
## 81 No, neither of these Good
## 82 No, neither of these Very good
## 83 No, neither of these Very good
## 84 No, neither of these Good
## 85 No, neither of these Good
## 86 No, neither of these Good
## 87 No, neither of these Good
## 88 No, neither of these Good
## 89 No, neither of these Satisfactory
## 90 No, neither of these Bad
## 91 No, neither of these Very good
## 92 No, neither of these Good
## 93 No, neither of these Satisfactory
## 94 Yes, entry phone and locked gate/door Good
## 95 No, neither of these Very good
## 96 Yes, entry phone Good
## 97 No, neither of these Very good
## 98 No, neither of these Satisfactory
## 99 No, neither of these Satisfactory
## 100 No, neither of these Satisfactory
## 101 No, neither of these Good
## 102 No, neither of these Good
## 103 No, neither of these Good
## 104 No, neither of these Good
## 105 No, neither of these Good
## 106 No, neither of these Good
## 107 No, neither of these Satisfactory
## 108 No, neither of these Good
## 109 No, neither of these Satisfactory
## 110 No, neither of these Very good
## 111 Yes, entry phone and locked gate/door Very good
## 112 No, neither of these Good
## 113 No, neither of these Good
## 114 No, neither of these Good
## 115 No, neither of these Satisfactory
## 116 No, neither of these Very good
## 117 No, neither of these Good
## 118 No, neither of these Very good
## 119 No, neither of these Very good
## 120 No, neither of these Satisfactory
## 121 Yes, entry phone and locked gate/door Very good
## 122 Yes, entry phone Very good
## 123 Yes, entry phone and locked gate/door Good
## 124 No, neither of these Satisfactory
## 125 No, neither of these Satisfactory
## 126 No, neither of these Good
## 127 No, neither of these Very good
## 128 No, neither of these Very good
## 129 No, neither of these Satisfactory
## 130 Yes, entry phone and locked gate/door Good
## 131 No, neither of these Satisfactory
## 132 No, neither of these Satisfactory
## 133 No, neither of these Good
## 134 No, neither of these Satisfactory
## 135 No, neither of these Good
## 136 No, neither of these Very good
## 137 Yes, locked gate/door Good
## 138 No, neither of these Good
## 139 No, neither of these Good
## 140 No, neither of these Very good
## 141 No, neither of these Good
## 142 No, neither of these Very good
## 143 Yes, entry phone and locked gate/door Bad
## 144 No, neither of these Good
## 145 No, neither of these Good
## 146 No, neither of these Satisfactory
## 147 No, neither of these Very good
## 148 Yes, entry phone Very good
## 149 No, neither of these Very good
## 150 No, neither of these Good
## 151 No, neither of these Good
## 152 No, neither of these Good
## 153 No, neither of these Satisfactory
## 154 Yes, entry phone and locked gate/door Satisfactory
## 155 No, neither of these Good
## 156 No, neither of these Very good
## 157 No, neither of these Very good
## 158 No, neither of these Satisfactory
## 159 No, neither of these Good
## 160 No, neither of these Good
## 161 No, neither of these Very good
## 162 No, neither of these Satisfactory
## 163 No, neither of these Good
## 164 Yes, entry phone Good
## 165 Yes, entry phone and locked gate/door Satisfactory
## 166 No, neither of these Satisfactory
## 167 No, neither of these Satisfactory
## 168 No, neither of these Very good
## 169 No, neither of these Very good
## 170 No, neither of these Good
## 171 No, neither of these Very good
## 172 No, neither of these Very good
## 173 Yes, entry phone Satisfactory
## 174 No, neither of these Very good
## 175 No, neither of these Good
## 176 No, neither of these Good
## 177 No, neither of these Satisfactory
## 178 No, neither of these Very good
## 179 No, neither of these Good
## 180 No, neither of these Good
## 181 No, neither of these Good
## 182 No, neither of these Good
## 183 No, neither of these Bad
## 184 No, neither of these Very good
## 185 No, neither of these Good
## 186 No, neither of these Good
## 187 No, neither of these Satisfactory
## 188 No, neither of these Very good
## 189 No, neither of these Good
## 190 Yes, entry phone and locked gate/door Good
## 191 No, neither of these Bad
## 192 No, neither of these Good
## 193 No, neither of these Satisfactory
## 194 No, neither of these Bad
## 195 No, neither of these Satisfactory
## 196 Yes, entry phone and locked gate/door Good
## 197 Yes, entry phone Very good
## 198 No, neither of these Very good
## 199 No, neither of these Very good
## 200 No, neither of these Very good
## 201 No, neither of these Good
## 202 No, neither of these Good
## 203 No, neither of these Good
## 204 No, neither of these Very good
## 205 No, neither of these Satisfactory
## 206 Yes, entry phone and locked gate/door Satisfactory
## 207 No, neither of these Bad
## 208 No, neither of these Satisfactory
## 209 No, neither of these Good
## 210 No, neither of these Very good
## 211 No, neither of these Satisfactory
## 212 No, neither of these Very good
## 213 No, neither of these Good
## 214 No, neither of these Very good
## 215 No, neither of these Good
## 216 No, neither of these Good
## 217 No, neither of these Good
## 218 No, neither of these Very good
## 219 Yes, entry phone and locked gate/door Good
## 220 No, neither of these Good
## 221 No, neither of these Good
## 222 No, neither of these Good
## 223 No, neither of these Very good
## 224 No, neither of these Satisfactory
## 225 No, neither of these Very good
## 226 Yes, entry phone and locked gate/door Very good
## 227 No, neither of these Very good
## 228 No, neither of these Good
## 229 No, neither of these Good
## 230 No, neither of these Satisfactory
## 231 No, neither of these Good
## 232 No, neither of these Good
## 233 No, neither of these Satisfactory
## 234 No, neither of these Good
## 235 No, neither of these Satisfactory
## 236 Yes, locked gate/door Very good
## 237 No, neither of these Very good
## 238 No, neither of these Good
## 239 No, neither of these Good
## 240 No, neither of these Very good
## 241 No, neither of these Satisfactory
## 242 No, neither of these Satisfactory
## 243 No, neither of these Very good
## 244 No, neither of these Satisfactory
## 245 No, neither of these Very good
## 246 No, neither of these Good
## 247 No, neither of these Very good
## 248 No, neither of these Satisfactory
## 249 Yes, entry phone and locked gate/door Good
## 250 No, neither of these Very good
## 251 No, neither of these Very good
## 252 No, neither of these Good
## 253 Yes, entry phone Good
## 254 No, neither of these Very good
## 255 No, neither of these Very good
## 256 No, neither of these Good
## 257 No, neither of these Satisfactory
## 258 No, neither of these Very good
## 259 Yes, entry phone Very good
## 260 No, neither of these Very good
## 261 Yes, entry phone Very good
## 262 No, neither of these Satisfactory
## 263 No, neither of these Good
## 264 Yes, entry phone and locked gate/door Satisfactory
## 265 No, neither of these Good
## 266 No, neither of these Bad
## 267 No, neither of these Good
## 268 No, neither of these Good
## 269 No, neither of these Good
## 270 Yes, locked gate/door Satisfactory
## 271 No, neither of these Good
## 272 No, neither of these Very good
## 273 No, neither of these Good
## 274 No, neither of these Good
## 275 No, neither of these Satisfactory
## 276 No, neither of these Bad
## 277 No, neither of these Satisfactory
## 278 No, neither of these Good
## 279 No, neither of these Very good
## 280 No, neither of these Very good
## 281 No, neither of these Very good
## 282 No, neither of these Good
## 283 No, neither of these Good
## 284 No, neither of these Satisfactory
## 285 No, neither of these Good
## 286 No, neither of these Satisfactory
## 287 No, neither of these Good
## 288 Yes, entry phone and locked gate/door Good
## 289 No, neither of these Satisfactory
## 290 No, neither of these Satisfactory
## 291 No, neither of these Good
## 292 No, neither of these Very good
## 293 No, neither of these Very good
## 294 No, neither of these Satisfactory
## 295 No, neither of these Good
## 296 No, neither of these Good
## 297 No, neither of these Good
## 298 Yes, entry phone Satisfactory
## 299 No, neither of these Good
## 300 No, neither of these Very good
## 301 No, neither of these Good
## 302 No, neither of these Good
## 303 No, neither of these Good
## 304 No, neither of these Good
## 305 No, neither of these Satisfactory
## 306 No, neither of these Good
## 307 Yes, locked gate/door Satisfactory
## 308 No, neither of these Good
## 309 Yes, entry phone and locked gate/door Good
## 310 No, neither of these Satisfactory
## 311 No, neither of these Good
## 312 No, neither of these Good
## 313 No, neither of these Good
## 314 No, neither of these Satisfactory
## 315 No, neither of these Good
## 316 No, neither of these Good
## 317 No, neither of these Very good
## 318 No, neither of these Good
## 319 No, neither of these Satisfactory
## 320 Yes, entry phone Good
## 321 No, neither of these Good
## 322 No, neither of these Good
## 323 No, neither of these Satisfactory
## 324 No, neither of these Satisfactory
## 325 No, neither of these Satisfactory
## 326 No, neither of these Satisfactory
## 327 No, neither of these Good
## 328 Yes, locked gate/door Satisfactory
## 329 Yes, entry phone and locked gate/door Good
## 330 No, neither of these Satisfactory
## 331 No, neither of these Satisfactory
## 332 No, neither of these Good
## 333 No, neither of these Good
## 334 No, neither of these Satisfactory
## 335 Yes, entry phone and locked gate/door Good
## 336 No, neither of these Good
## 337 No, neither of these Good
## 338 No, neither of these Good
## 339 Yes, entry phone and locked gate/door Satisfactory
## 340 No, neither of these Satisfactory
## 341 No, neither of these Good
## 342 No, neither of these Satisfactory
## 343 No, neither of these Good
## 344 No, neither of these Very good
## 345 No, neither of these Good
## 346 No, neither of these Bad
## 347 No, neither of these Satisfactory
## 348 No, neither of these Good
## 349 No, neither of these Good
## 350 No, neither of these Good
## 351 No, neither of these Good
## 352 No, neither of these Good
## 353 Yes, entry phone and locked gate/door Bad
## 354 No, neither of these Satisfactory
## 355 No, neither of these Good
## 356 No, neither of these Good
## 357 No, neither of these Good
## 358 Yes, entry phone and locked gate/door Satisfactory
## 359 No, neither of these Satisfactory
## 360 No, neither of these Satisfactory
## 361 No, neither of these Satisfactory
## 362 No, neither of these Good
## 363 Yes, entry phone and locked gate/door Good
## 364 No, neither of these Good
## 365 No, neither of these Good
## 366 No, neither of these Good
## 367 No, neither of these Good
## 368 No, neither of these Very good
## 369 Yes, entry phone and locked gate/door Very good
## 370 No, neither of these Good
## 371 No, neither of these Good
## 372 No, neither of these Good
## 373 No, neither of these Good
## 374 No, neither of these Very good
## 375 Yes, entry phone Satisfactory
## 376 No, neither of these Satisfactory
## 377 No, neither of these Good
## 378 No, neither of these Satisfactory
## 379 No, neither of these Good
## 380 Yes, entry phone Bad
## 381 No, neither of these Good
## 382 No, neither of these Very good
## 383 No, neither of these Very good
## 384 No, neither of these Good
## 385 No, neither of these Good
## 386 No, neither of these Good
## 387 No, neither of these Good
## 388 No, neither of these Good
## 389 No, neither of these Very good
## 390 Yes, entry phone and locked gate/door Good
## 391 No, neither of these Good
## 392 No, neither of these Good
## 393 No, neither of these Satisfactory
## 394 No, neither of these Good
## 395 No, neither of these Good
## 396 No, neither of these Good
## 397 No, neither of these Bad
## 398 No, neither of these Good
## 399 No, neither of these Good
## 400 No, neither of these Satisfactory
## 401 No, neither of these Good
## 402 No, neither of these Satisfactory
## 403 No, neither of these Very good
## 404 No, neither of these Good
## 405 No, neither of these Very good
## 406 No, neither of these Good
## 407 No, neither of these Very good
## 408 No, neither of these Good
## 409 No, neither of these Very good
## 410 No, neither of these Very good
## 411 No, neither of these Good
## 412 No, neither of these Good
## 413 No, neither of these Good
## 414 No, neither of these Very good
## 415 No, neither of these Satisfactory
## 416 No, neither of these Good
## 417 No, neither of these Very good
## 418 No, neither of these Good
## 419 No, neither of these Good
## 420 No, neither of these Good
## 421 No, neither of these Good
## 422 No, neither of these Very good
## 423 No, neither of these Good
## 424 No, neither of these Satisfactory
## 425 No, neither of these Good
## 426 No, neither of these Very good
## 427 No, neither of these Good
## 428 No, neither of these Satisfactory
## 429 No, neither of these Very good
## 430 No, neither of these Satisfactory
## 431 No, neither of these Good
## 432 No, neither of these Good
## 433 No, neither of these Good
## 434 No, neither of these Good
## 435 No, neither of these Very good
## 436 No, neither of these Very good
## 437 No, neither of these Very good
## 438 No, neither of these Very good
## 439 No, neither of these Good
## 440 No, neither of these Good
## 441 No, neither of these Good
## 442 No, neither of these Bad
## 443 No, neither of these Very good
## 444 No, neither of these Bad
## 445 No, neither of these Satisfactory
## 446 No, neither of these Good
## 447 No, neither of these Good
## 448 No, neither of these Good
## 449 No, neither of these Very good
## 450 Yes, entry phone Very good
## 451 No, neither of these Very good
## 452 No, neither of these Good
## 453 No, neither of these Good
## 454 No, neither of these Good
## 455 Yes, entry phone and locked gate/door Satisfactory
## 456 No, neither of these Satisfactory
## 457 No, neither of these Satisfactory
## 458 No, neither of these Very good
## 459 No, neither of these Very good
## 460 Yes, entry phone Satisfactory
## 461 No, neither of these Satisfactory
## 462 No, neither of these Satisfactory
## 463 Yes, entry phone Good
## 464 No, neither of these Very good
## 465 No, neither of these Bad
## 466 No, neither of these Satisfactory
## 467 No, neither of these Good
## 468 No, neither of these Very good
## 469 Yes, entry phone Satisfactory
## 470 No, neither of these Satisfactory
## 471 No, neither of these Very good
## 472 No, neither of these Very good
## 473 No, neither of these Very bad
## 474 Yes, entry phone and locked gate/door Satisfactory
## 475 No, neither of these Good
## 476 No, neither of these Very good
## 477 No, neither of these Satisfactory
## 478 Yes, locked gate/door Good
## 479 No, neither of these Good
## 480 Yes, entry phone and locked gate/door Good
## 481 No, neither of these Very good
## 482 No, neither of these Satisfactory
## 483 No, neither of these Good
## 484 No, neither of these Satisfactory
## 485 No, neither of these Good
## 486 No, neither of these Good
## 487 No, neither of these Good
## 488 No, neither of these Very good
## 489 No, neither of these Very good
## 490 Yes, entry phone Satisfactory
## 491 No, neither of these Bad
## 492 No, neither of these Good
## 493 No, neither of these Good
## 494 No, neither of these Very good
## 495 No, neither of these Good
## 496 Yes, entry phone and locked gate/door Satisfactory
## 497 No, neither of these Very bad
## 498 No, neither of these Good
## 499 No, neither of these Satisfactory
## 500 No, neither of these Satisfactory
## 501 No, neither of these Good
## 502 No, neither of these Very good
## 503 No, neither of these Satisfactory
## 504 Yes, locked gate/door Good
## 505 No, neither of these Satisfactory
## 506 No, neither of these Satisfactory
## 507 No, neither of these Very good
## 508 No, neither of these Good
## 509 No, neither of these Very good
## 510 Yes, entry phone Good
## 511 No, neither of these Good
## 512 No, neither of these Good
## 513 No, neither of these Good
## 514 Yes, entry phone and locked gate/door Satisfactory
## 515 No, neither of these Good
## 516 No, neither of these Good
## 517 No, neither of these Satisfactory
## 518 No, neither of these Very good
## 519 No, neither of these Bad
## 520 No, neither of these Good
## 521 No, neither of these Satisfactory
## 522 No, neither of these Satisfactory
## 523 No, neither of these Good
## 524 No, neither of these Good
## 525 No, neither of these Satisfactory
## 526 No, neither of these Good
## 527 No, neither of these Good
## 528 No, neither of these Satisfactory
## 529 No, neither of these Satisfactory
## 530 No, neither of these Very good
## 531 Yes, locked gate/door Satisfactory
## 532 Yes, entry phone and locked gate/door Very good
## 533 No, neither of these Good
## 534 No, neither of these Very bad
## 535 No, neither of these Satisfactory
## 536 No, neither of these Good
## 537 No, neither of these Very good
## 538 No, neither of these Satisfactory
## 539 No, neither of these Good
## 540 No, neither of these Bad
## 541 No, neither of these Very good
## 542 No, neither of these Very good
## 543 Yes, entry phone and locked gate/door Good
## 544 Yes, entry phone Satisfactory
## 545 No, neither of these Good
## 546 No, neither of these Very good
## 547 No, neither of these Satisfactory
## 548 Yes, entry phone Very good
## 549 No, neither of these Very good
## 550 No, neither of these Good
## 551 No, neither of these Good
## 552 No, neither of these Satisfactory
## 553 No, neither of these Very good
## 554 No, neither of these Satisfactory
## 555 No, neither of these Good
## 556 Yes, locked gate/door Satisfactory
## 557 No, neither of these Very good
## 558 No, neither of these Good
## 559 No, neither of these Satisfactory
## 560 No, neither of these Good
## 561 Yes, entry phone Good
## 562 No, neither of these Good
## 563 No, neither of these Very good
## 564 No, neither of these Good
## 565 No, neither of these Very good
## 566 No, neither of these Good
## 567 No, neither of these Good
## 568 Yes, entry phone Satisfactory
## 569 No, neither of these Bad
## 570 No, neither of these Satisfactory
## 571 No, neither of these Good
## 572 Yes, locked gate/door Satisfactory
## 573 No, neither of these Good
## 574 No, neither of these Very good
## 575 No, neither of these Good
## 576 No, neither of these Good
## 577 Yes, entry phone Good
## 578 No, neither of these Good
## 579 No, neither of these Good
## 580 Yes, entry phone and locked gate/door Satisfactory
## 581 No, neither of these Good
## 582 No, neither of these Satisfactory
## 583 No, neither of these Good
## 584 No, neither of these Satisfactory
## 585 Yes, entry phone and locked gate/door Good
## 586 Yes, entry phone and locked gate/door Very good
## 587 No, neither of these Good
## 588 No, neither of these Good
## 589 No, neither of these Good
## 590 No, neither of these Very good
## 591 No, neither of these Good
## 592 No, neither of these Good
## 593 No, neither of these Good
## 594 Yes, locked gate/door Very good
## 595 No, neither of these Very good
## 596 Yes, entry phone and locked gate/door Good
## 597 No, neither of these Good
## 598 No, neither of these Good
## 599 No, neither of these Good
## 600 No, neither of these Good
## 601 No, neither of these Satisfactory
## 602 No, neither of these Very bad
## 603 No, neither of these Good
## 604 No, neither of these Good
## 605 No, neither of these Satisfactory
## 606 Yes, entry phone and locked gate/door Satisfactory
## 607 No, neither of these Good
## 608 No, neither of these Satisfactory
## 609 No, neither of these Very good
## 610 No, neither of these Satisfactory
## 611 Yes, entry phone and locked gate/door Good
## 612 No, neither of these Satisfactory
## 613 Yes, entry phone and locked gate/door Good
## 614 No, neither of these Good
## 615 No, neither of these Good
## 616 No, neither of these Very good
## 617 No, neither of these Good
## 618 No, neither of these Good
## 619 No, neither of these Satisfactory
## 620 No, neither of these Good
## 621 No, neither of these Good
## 622 No, neither of these Very good
## 623 Yes, entry phone Good
## 624 No, neither of these Satisfactory
## 625 Yes, entry phone and locked gate/door Good
## 626 No, neither of these Good
## 627 No, neither of these Good
## 628 No, neither of these Very good
## 629 No, neither of these Good
## 630 No, neither of these Good
## 631 No, neither of these Satisfactory
## 632 No, neither of these Good
## 633 No, neither of these Good
## 634 Yes, entry phone Good
## 635 No, neither of these Satisfactory
## 636 Yes, entry phone Good
## 637 No, neither of these Good
## 638 No, neither of these Good
## 639 Yes, entry phone Satisfactory
## 640 No, neither of these Good
## 641 No, neither of these Good
## 642 No, neither of these Very good
## 643 No, neither of these Good
## 644 No, neither of these Very good
## 645 No, neither of these Very good
## 646 Yes, locked gate/door Very good
## 647 No, neither of these Very good
## 648 No, neither of these Good
## 649 No, neither of these Good
## 650 No, neither of these Good
## 651 No, neither of these Good
## 652 No, neither of these Good
## 653 No, neither of these Good
## 654 No, neither of these Very good
## 655 No, neither of these Good
## 656 No, neither of these Good
## 657 No, neither of these Good
## 658 No, neither of these Satisfactory
## 659 No, neither of these Very good
## 660 No, neither of these Satisfactory
## 661 No, neither of these Very good
## 662 No, neither of these Very good
## 663 No, neither of these Very good
## 664 No, neither of these Satisfactory
## 665 Yes, locked gate/door Very good
## 666 No, neither of these Good
## 667 No, neither of these Satisfactory
## 668 Yes, entry phone and locked gate/door Satisfactory
## 669 No, neither of these Good
## 670 No, neither of these Good
## 671 No, neither of these Very good
## 672 No, neither of these Satisfactory
## 673 No, neither of these Very good
## 674 No, neither of these Good
## 675 No, neither of these Good
## 676 No, neither of these Good
## 677 No, neither of these Good
## 678 Yes, entry phone Very good
## 679 No, neither of these Satisfactory
## 680 No, neither of these Very good
## 681 No, neither of these Very good
## 682 No, neither of these Good
## 683 No, neither of these Good
## 684 No, neither of these Very good
## 685 No, neither of these Very good
## 686 No, neither of these Bad
## 687 No, neither of these Bad
## 688 No, neither of these Satisfactory
## 689 No, neither of these Satisfactory
## 690 No, neither of these Satisfactory
## 691 Yes, entry phone and locked gate/door Good
## 692 No, neither of these Very good
## 693 No, neither of these Satisfactory
## 694 No, neither of these Good
## 695 Yes, entry phone and locked gate/door Satisfactory
## 696 No, neither of these Good
## 697 No, neither of these Satisfactory
## 698 No, neither of these Good
## 699 No, neither of these Good
## 700 No, neither of these Good
## 701 No, neither of these Very good
## 702 No, neither of these Very good
## 703 No, neither of these Good
## 704 No, neither of these Good
## 705 No, neither of these Satisfactory
## 706 No, neither of these Very good
## 707 No, neither of these Very good
## 708 No, neither of these Satisfactory
## 709 No, neither of these Satisfactory
## 710 No, neither of these Good
## 711 No, neither of these Satisfactory
## 712 No, neither of these Very good
## 713 No, neither of these Satisfactory
## 714 No, neither of these Good
## 715 No, neither of these Satisfactory
## 716 No, neither of these Satisfactory
## 717 Yes, entry phone Satisfactory
## 718 No, neither of these Good
## 719 No, neither of these Good
## 720 Yes, entry phone and locked gate/door Satisfactory
## 721 No, neither of these Good
## 722 No, neither of these Very good
## 723 No, neither of these Good
## 724 No, neither of these Good
## 725 No, neither of these Satisfactory
## 726 No, neither of these Very good
## 727 No, neither of these Good
## 728 No, neither of these Good
## 729 No, neither of these Good
## 730 No, neither of these Satisfactory
## 731 No, neither of these Good
## 732 No, neither of these Good
## 733 No, neither of these Satisfactory
## 734 No, neither of these Good
## 735 No, neither of these Good
## 736 No, neither of these Satisfactory
## 737 No, neither of these Very good
## 738 No, neither of these Good
## 739 Yes, entry phone and locked gate/door Very good
## 740 No, neither of these Satisfactory
## 741 No, neither of these Very good
## 742 No, neither of these Satisfactory
## 743 No, neither of these Good
## 744 No, neither of these Satisfactory
## 745 No, neither of these Very good
## 746 No, neither of these Very good
## 747 No, neither of these Very good
## 748 Yes, entry phone Satisfactory
## 749 No, neither of these Good
## 750 No, neither of these Very good
## 751 No, neither of these Satisfactory
## 752 Yes, entry phone and locked gate/door Good
## 753 No, neither of these Bad
## 754 Yes, entry phone and locked gate/door Very good
## 755 No, neither of these Good
## 756 No, neither of these Very good
## 757 No, neither of these Very good
## 758 No, neither of these Satisfactory
## 759 No, neither of these Good
## 760 No, neither of these Satisfactory
## 761 No, neither of these Good
## 762 No, neither of these Satisfactory
## 763 No, neither of these Very good
## 764 Yes, entry phone Very good
## 765 No, neither of these Good
## 766 No, neither of these Very good
## 767 No, neither of these Very good
## 768 No, neither of these Good
## 769 No, neither of these Good
## 770 No, neither of these Good
## 771 No, neither of these Good
## 772 Yes, entry phone and locked gate/door Very good
## 773 Yes, locked gate/door Good
## 774 No, neither of these Good
## 775 No, neither of these Good
## 776 No, neither of these Good
## 777 No, neither of these Good
## 778 No, neither of these Very good
## 779 No, neither of these Satisfactory
## 780 Yes, entry phone and locked gate/door Satisfactory
## 781 No, neither of these Very good
## 782 No, neither of these Good
## 783 No, neither of these Very good
## 784 Yes, entry phone and locked gate/door Good
## 785 No, neither of these Good
## 786 No, neither of these Good
## 787 No, neither of these Satisfactory
## 788 No, neither of these Good
## 789 No, neither of these Satisfactory
## 790 Yes, entry phone and locked gate/door Good
## 791 No, neither of these Very good
## 792 No, neither of these Good
## 793 No, neither of these Satisfactory
## 794 No, neither of these Good
## 795 Yes, entry phone Good
## 796 No, neither of these Good
## 797 No, neither of these Good
## 798 No, neither of these Good
## 799 No, neither of these Good
## 800 No, neither of these Very good
## 801 No, neither of these Good
## 802 Yes, entry phone Good
## 803 No, neither of these Good
## 804 No, neither of these Good
## 805 No, neither of these Satisfactory
## 806 No, neither of these Very good
## 807 No, neither of these Satisfactory
## 808 No, neither of these Good
## 809 No, neither of these Very good
## 810 No, neither of these Good
## 811 No, neither of these Good
## 812 No, neither of these Good
## 813 No, neither of these Satisfactory
## 814 No, neither of these Satisfactory
## 815 No, neither of these Good
## 816 No, neither of these Good
## 817 No, neither of these Very good
## 818 No, neither of these Good
## 819 No, neither of these Good
## 820 Yes, entry phone Very good
## 821 No, neither of these Very good
## 822 No, neither of these Satisfactory
## 823 No, neither of these Good
## 824 No, neither of these Good
## 825 No, neither of these Satisfactory
## 826 No, neither of these Good
## 827 No, neither of these Very good
## 828 No, neither of these Good
## 829 No, neither of these Good
## 830 No, neither of these Very good
## 831 No, neither of these Good
## 832 No, neither of these Satisfactory
## 833 No, neither of these Good
## 834 No, neither of these Good
## 835 No, neither of these Very good
## 836 No, neither of these Good
## 837 No, neither of these Good
## 838 No, neither of these Good
## 839 No, neither of these Good
## 840 No, neither of these Very good
## 841 No, neither of these Satisfactory
## 842 No, neither of these Good
## 843 No, neither of these Good
## 844 No, neither of these Satisfactory
## 845 No, neither of these Satisfactory
## 846 No, neither of these Very good
## 847 No, neither of these Very good
## 848 No, neither of these Satisfactory
## 849 No, neither of these Good
## 850 Yes, entry phone Very good
## 851 Yes, entry phone and locked gate/door Good
## 852 No, neither of these Satisfactory
## 853 No, neither of these Very good
## 854 No, neither of these Good
## 855 No, neither of these Good
## 856 No, neither of these Good
## 857 No, neither of these Satisfactory
## 858 No, neither of these Good
## 859 No, neither of these Good
## 860 No, neither of these Good
## 861 No, neither of these Good
## 862 No, neither of these Very good
## 863 No, neither of these Good
## 864 No, neither of these Satisfactory
## 865 Yes, locked gate/door Good
## 866 No, neither of these Good
## 867 No, neither of these Bad
## 868 No, neither of these Good
## 869 No, neither of these Good
## 870 No, neither of these Satisfactory
## 871 No, neither of these Very bad
## 872 No, neither of these Good
## 873 Yes, entry phone Very good
## 874 No, neither of these Good
## 875 No, neither of these Satisfactory
## 876 No, neither of these Satisfactory
## 877 No, neither of these Good
## 878 No, neither of these Good
## 879 No, neither of these Good
## 880 No, neither of these Satisfactory
## 881 No, neither of these Satisfactory
## 882 No, neither of these Good
## 883 Yes, entry phone Good
## 884 No, neither of these Satisfactory
## 885 No, neither of these Good
## 886 No, neither of these Satisfactory
## 887 Yes, entry phone Good
## 888 No, neither of these Very good
## 889 Yes, entry phone and locked gate/door Very good
## 890 No, neither of these Satisfactory
## 891 No, neither of these Good
## 892 No, neither of these Bad
## 893 Yes, entry phone Very good
## 894 No, neither of these Good
## 895 No, neither of these Good
## 896 Yes, entry phone and locked gate/door Satisfactory
## 897 No, neither of these Good
## 898 No, neither of these Very good
## 899 No, neither of these Very good
## 900 Yes, entry phone and locked gate/door Satisfactory
## 901 No, neither of these Good
## 902 No, neither of these Good
## 903 No, neither of these Good
## 904 No, neither of these Good
## 905 No, neither of these Satisfactory
## 906 No, neither of these Very good
## 907 No, neither of these Good
## 908 No, neither of these Good
## 909 No, neither of these Very good
## 910 No, neither of these Good
## 911 No, neither of these Satisfactory
## 912 No, neither of these Good
## 913 No, neither of these Good
## 914 No, neither of these Very good
## 915 No, neither of these Very good
## 916 No, neither of these Good
## 917 No, neither of these Good
## 918 No, neither of these Good
## 919 No, neither of these Good
## 920 No, neither of these Satisfactory
## 921 No, neither of these Satisfactory
## 922 No, neither of these Satisfactory
## 923 No, neither of these Very good
## 924 No, neither of these Very good
## 925 No, neither of these Good
## 926 Yes, entry phone Good
## 927 No, neither of these Very good
## 928 No, neither of these Very good
## 929 No, neither of these Good
## 930 No, neither of these Good
## 931 No, neither of these Good
## 932 No, neither of these Very good
## 933 No, neither of these Very good
## 934 No, neither of these Good
## 935 No, neither of these Good
## 936 No, neither of these Good
## 937 No, neither of these Bad
## 938 No, neither of these Good
## 939 No, neither of these Good
## 940 No, neither of these Good
## 941 No, neither of these Good
## 942 No, neither of these Good
## 943 Yes, entry phone Very good
## 944 No, neither of these Good
## 945 No, neither of these Good
## 946 No, neither of these Very good
## 947 No, neither of these Satisfactory
## 948 No, neither of these Good
## 949 No, neither of these Good
## 950 Yes, entry phone and locked gate/door Satisfactory
## 951 No, neither of these Very good
## 952 No, neither of these Satisfactory
## 953 No, neither of these Satisfactory
## 954 No, neither of these Good
## 955 No, neither of these Satisfactory
## 956 No, neither of these Very good
## 957 No, neither of these Good
## 958 No, neither of these Good
## 959 No, neither of these Very good
## 960 No, neither of these Very good
## 961 No, neither of these Satisfactory
## 962 No, neither of these Satisfactory
## 963 No, neither of these Good
## 964 No, neither of these Good
## 965 No, neither of these Good
## 966 No, neither of these Good
## 967 No, neither of these Satisfactory
## 968 No, neither of these Good
## 969 No, neither of these Bad
## 970 No, neither of these Good
## 971 No, neither of these Satisfactory
## 972 No, neither of these Satisfactory
## 973 No, neither of these Good
## 974 No, neither of these Satisfactory
## 975 Yes, entry phone Good
## 976 No, neither of these Good
## 977 No, neither of these Good
## 978 No, neither of these Bad
## 979 No, neither of these Very good
## 980 No, neither of these Good
## 981 Yes, entry phone and locked gate/door Good
## 982 No, neither of these Good
## 983 No, neither of these Very good
## 984 No, neither of these Good
## 985 No, neither of these Good
## 986 No, neither of these Satisfactory
## 987 No, neither of these Good
## 988 Yes, entry phone and locked gate/door Good
## 989 No, neither of these Satisfactory
## 990 No, neither of these Satisfactory
## 991 No, neither of these Very good
## 992 No, neither of these Very good
## 993 No, neither of these Good
## 994 No, neither of these Very good
## 995 No, neither of these Satisfactory
## 996 No, neither of these Good
## 997 No, neither of these Good
## 998 No, neither of these Good
## 999 Yes, entry phone and locked gate/door Satisfactory
## 1000 No, neither of these Good
## 1001 No, neither of these Good
## 1002 No, neither of these Very good
## 1003 No, neither of these Satisfactory
## 1004 No, neither of these Good
## 1005 Yes, locked gate/door Good
## 1006 No, neither of these Bad
## 1007 No, neither of these Satisfactory
## 1008 No, neither of these Good
## 1009 No, neither of these Good
## 1010 Yes, entry phone and locked gate/door Good
## 1011 No, neither of these Satisfactory
## 1012 No, neither of these Satisfactory
## 1013 No, neither of these Good
## 1014 No, neither of these Satisfactory
## 1015 No, neither of these Very good
## 1016 Yes, entry phone Satisfactory
## 1017 No, neither of these Very good
## 1018 No, neither of these Good
## 1019 No, neither of these Very good
## 1020 No, neither of these Very good
## 1021 No, neither of these Good
## 1022 No, neither of these Very good
## 1023 Yes, locked gate/door Good
## 1024 No, neither of these Very good
## 1025 No, neither of these Good
## 1026 No, neither of these Very good
## 1027 No, neither of these Good
## 1028 No, neither of these Good
## 1029 Yes, entry phone and locked gate/door Very good
## 1030 No, neither of these Good
## 1031 No, neither of these Good
## 1032 No, neither of these Good
## 1033 Yes, entry phone Good
## 1034 No, neither of these Very good
## 1035 No, neither of these Good
## 1036 No, neither of these Good
## 1037 No, neither of these Satisfactory
## 1038 No, neither of these Satisfactory
## 1039 No, neither of these Very good
## 1040 Yes, entry phone and locked gate/door Good
## 1041 Yes, entry phone Good
## 1042 No, neither of these Satisfactory
## 1043 No, neither of these Good
## 1044 No, neither of these Satisfactory
## 1045 Yes, entry phone and locked gate/door Very good
## 1046 No, neither of these Satisfactory
## 1047 No, neither of these Good
## 1048 No, neither of these Good
## 1049 No, neither of these Good
## 1050 No, neither of these Good
## 1051 No, neither of these Satisfactory
## 1052 No, neither of these Good
## 1053 No, neither of these Very good
## 1054 No, neither of these Very good
## 1055 No, neither of these Satisfactory
## 1056 Yes, entry phone Very good
## 1057 Yes, entry phone and locked gate/door Good
## 1058 No, neither of these Satisfactory
## 1059 No, neither of these Very good
## 1060 No, neither of these Good
## 1061 No, neither of these Satisfactory
## 1062 No, neither of these Very good
## 1063 No, neither of these Good
## 1064 No, neither of these Good
## 1065 No, neither of these Good
## 1066 No, neither of these Very good
## 1067 No, neither of these Very good
## 1068 No, neither of these Satisfactory
## 1069 No, neither of these Good
## 1070 No, neither of these Very good
## 1071 No, neither of these Satisfactory
## 1072 No, neither of these Satisfactory
## 1073 No, neither of these Satisfactory
## 1074 No, neither of these Very good
## 1075 No, neither of these Satisfactory
## 1076 No, neither of these Good
## 1077 No, neither of these Good
## 1078 No, neither of these Satisfactory
## 1079 No, neither of these Satisfactory
## 1080 No, neither of these Very good
## 1081 No, neither of these Good
## 1082 No, neither of these Very good
## 1083 No, neither of these Very good
## 1084 No, neither of these Good
## 1085 Yes, entry phone and locked gate/door Satisfactory
## 1086 No, neither of these Good
## 1087 Yes, entry phone Good
## 1088 No, neither of these Bad
## 1089 No, neither of these Good
## 1090 No, neither of these Good
## 1091 No, neither of these Good
## 1092 No, neither of these Good
## 1093 Yes, entry phone Good
## 1094 No, neither of these Good
## 1095 No, neither of these Very good
## 1096 No, neither of these Good
## 1097 No, neither of these Good
## 1098 No, neither of these Satisfactory
## 1099 No, neither of these Very good
## 1100 Yes, entry phone and locked gate/door Good
## 1101 No, neither of these Good
## 1102 No, neither of these Good
## 1103 No, neither of these Very good
## 1104 No, neither of these Very good
## 1105 No, neither of these Good
## 1106 No, neither of these Good
## 1107 No, neither of these Satisfactory
## 1108 No, neither of these Satisfactory
## 1109 Yes, entry phone Very good
## 1110 No, neither of these Satisfactory
## 1111 No, neither of these Bad
## 1112 Yes, locked gate/door Very good
## 1113 No, neither of these Good
## 1114 No, neither of these Good
## 1115 No, neither of these Good
## 1116 No, neither of these Satisfactory
## 1117 No, neither of these Very good
## 1118 No, neither of these Good
## 1119 Yes, entry phone Good
## 1120 No, neither of these Very good
## 1121 No, neither of these Good
## 1122 Yes, entry phone and locked gate/door Good
## 1123 No, neither of these Very good
## 1124 No, neither of these Satisfactory
## 1125 Yes, entry phone Very good
## 1126 No, neither of these Very good
## 1127 No, neither of these Good
## 1128 No, neither of these Good
## 1129 No, neither of these Very good
## 1130 No, neither of these Satisfactory
## 1131 No, neither of these Satisfactory
## 1132 No, neither of these Very good
## 1133 No, neither of these Satisfactory
## 1134 No, neither of these Satisfactory
## 1135 No, neither of these Satisfactory
## 1136 No, neither of these Very good
## 1137 No, neither of these Good
## 1138 No, neither of these Very good
## 1139 Yes, entry phone and locked gate/door Satisfactory
## 1140 No, neither of these Satisfactory
## 1141 No, neither of these Satisfactory
## 1142 Yes, locked gate/door Satisfactory
## 1143 No, neither of these Very good
## 1144 No, neither of these Good
## 1145 No, neither of these Good
## 1146 No, neither of these Good
## 1147 Yes, entry phone Satisfactory
## 1148 No, neither of these Satisfactory
## 1149 No, neither of these Good
## 1150 No, neither of these Bad
## 1151 No, neither of these Very good
## 1152 No, neither of these Satisfactory
## 1153 No, neither of these Good
## 1154 No, neither of these Satisfactory
## 1155 No, neither of these Very good
## 1156 No, neither of these Good
## 1157 No, neither of these Very good
## 1158 No, neither of these Satisfactory
## 1159 No, neither of these Satisfactory
## 1160 No, neither of these Good
## 1161 No, neither of these Very good
## 1162 No, neither of these Satisfactory
## 1163 No, neither of these Good
## 1164 No, neither of these Very good
## 1165 No, neither of these Very good
## 1166 No, neither of these Very good
## 1167 No, neither of these Very good
## 1168 No, neither of these Very good
## 1169 Yes, locked gate/door Satisfactory
## 1170 No, neither of these Good
## 1171 No, neither of these Satisfactory
## 1172 No, neither of these Good
## 1173 No, neither of these Satisfactory
## 1174 Yes, entry phone Good
## 1175 No, neither of these Satisfactory
## 1176 No, neither of these Very bad
## 1177 No, neither of these Good
## 1178 No, neither of these Satisfactory
## 1179 No, neither of these Very bad
## 1180 No, neither of these Good
## 1181 No, neither of these Satisfactory
## 1182 No, neither of these Good
## 1183 No, neither of these Satisfactory
## 1184 No, neither of these Very good
## 1185 No, neither of these Very good
## 1186 No, neither of these Good
## 1187 No, neither of these Good
## 1188 No, neither of these Good
## 1189 No, neither of these Satisfactory
## 1190 No, neither of these Good
## 1191 No, neither of these Good
## 1192 Yes, entry phone Good
## 1193 No, neither of these Good
## 1194 No, neither of these Good
## 1195 No, neither of these Satisfactory
## 1196 No, neither of these Very good
## 1197 No, neither of these Good
## 1198 No, neither of these Good
## 1199 No, neither of these Good
## 1200 No, neither of these Good
## 1201 No, neither of these Good
## 1202 No, neither of these Good
## 1203 Yes, locked gate/door Very good
## 1204 No, neither of these Very good
## 1205 No, neither of these Good
## 1206 No, neither of these Very good
## 1207 No, neither of these Satisfactory
## 1208 Yes, entry phone and locked gate/door Good
## 1209 No, neither of these Very good
## 1210 No, neither of these Good
## 1211 Yes, entry phone and locked gate/door Good
## 1212 No, neither of these Very good
## 1213 Yes, entry phone Very good
## 1214 No, neither of these Satisfactory
## 1215 No, neither of these Good
## 1216 No, neither of these Very good
## 1217 No, neither of these Good
## 1218 No, neither of these Satisfactory
## 1219 No, neither of these Good
## 1220 No, neither of these Satisfactory
## 1221 No, neither of these Good
## 1222 Yes, entry phone and locked gate/door Very good
## 1223 No, neither of these Very good
## 1224 No, neither of these Satisfactory
## 1225 No, neither of these Satisfactory
## 1226 No, neither of these Good
## 1227 No, neither of these Satisfactory
## 1228 No, neither of these Good
## 1229 No, neither of these Very good
## 1230 No, neither of these Good
## 1231 No, neither of these Good
## 1232 No, neither of these Satisfactory
## 1233 No, neither of these Good
## 1234 No, neither of these Satisfactory
## 1235 No, neither of these Good
## 1236 No, neither of these Good
## 1237 Yes, entry phone and locked gate/door Satisfactory
## 1238 No, neither of these Good
## 1239 No, neither of these Satisfactory
## 1240 No, neither of these Good
## 1241 No, neither of these Satisfactory
## 1242 Yes, locked gate/door Satisfactory
## 1243 No, neither of these Good
## 1244 No, neither of these Very good
## 1245 No, neither of these Very good
## 1246 No, neither of these Satisfactory
## 1247 No, neither of these Good
## 1248 No, neither of these Good
## 1249 No, neither of these Good
## 1250 No, neither of these Good
## 1251 No, neither of these Good
## 1252 Yes, locked gate/door Satisfactory
## 1253 No, neither of these Good
## 1254 No, neither of these Very good
## 1255 Yes, entry phone and locked gate/door Good
## 1256 No, neither of these Very good
## 1257 No, neither of these Satisfactory
## 1258 No, neither of these Very good
## 1259 No, neither of these Very good
## 1260 No, neither of these Satisfactory
## 1261 No, neither of these Very good
## 1262 No, neither of these Good
## 1263 No, neither of these Good
## 1264 No, neither of these Very good
## 1265 Yes, entry phone and locked gate/door Good
## 1266 No, neither of these Good
## 1267 No, neither of these Very good
## 1268 No, neither of these Very good
## 1269 No, neither of these Very good
## 1270 No, neither of these Satisfactory
## 1271 No, neither of these Satisfactory
## 1272 Yes, entry phone Good
## 1273 No, neither of these Bad
## 1274 No, neither of these Good
## 1275 No, neither of these Good
## 1276 No, neither of these Good
## 1277 No, neither of these Good
## 1278 Yes, entry phone Satisfactory
## 1279 No, neither of these Bad
## 1280 No, neither of these Very good
## 1281 No, neither of these Good
## 1282 No, neither of these Good
## 1283 No, neither of these Good
## 1284 No, neither of these Satisfactory
## 1285 No, neither of these Good
## 1286 Yes, entry phone and locked gate/door Satisfactory
## 1287 No, neither of these Good
## 1288 Yes, entry phone Good
## 1289 No, neither of these Good
## 1290 No, neither of these Good
## 1291 No, neither of these Satisfactory
## 1292 No, neither of these Very good
## 1293 Yes, entry phone and locked gate/door Very good
## 1294 No, neither of these Satisfactory
## 1295 No, neither of these Very good
## 1296 No, neither of these Good
## 1297 Yes, entry phone and locked gate/door Satisfactory
## 1298 No, neither of these Very good
## 1299 No, neither of these Very good
## 1300 No, neither of these Good
## 1301 No, neither of these Satisfactory
## 1302 No, neither of these Good
## 1303 No, neither of these Very good
## 1304 No, neither of these Good
## 1305 No, neither of these Good
## 1306 No, neither of these Satisfactory
## 1307 No, neither of these Very good
## 1308 No, neither of these Good
## 1309 No, neither of these Good
## 1310 No, neither of these Satisfactory
## 1311 No, neither of these Good
## 1312 No, neither of these Good
## 1313 No, neither of these Good
## 1314 No, neither of these Very good
## 1315 No, neither of these Good
## 1316 No, neither of these Good
## 1317 No, neither of these Good
## 1318 No, neither of these Satisfactory
## 1319 No, neither of these Good
## 1320 No, neither of these Good
## 1321 No, neither of these Very good
## 1322 No, neither of these Satisfactory
## 1323 Yes, entry phone and locked gate/door Good
## 1324 No, neither of these Very good
## 1325 No, neither of these Good
## 1326 No, neither of these Very good
## 1327 No, neither of these Good
## 1328 No, neither of these Good
## 1329 No, neither of these Very good
## 1330 No, neither of these Good
## 1331 No, neither of these Very good
## 1332 No, neither of these Very good
## 1333 No, neither of these Satisfactory
## 1334 Yes, entry phone Good
## 1335 No, neither of these Very good
## 1336 No, neither of these Satisfactory
## 1337 No, neither of these Good
## 1338 No, neither of these Good
## 1339 No, neither of these Satisfactory
## 1340 No, neither of these Good
## 1341 No, neither of these Good
## 1342 No, neither of these Very good
## 1343 No, neither of these Very good
## 1344 No, neither of these Very good
## 1345 No, neither of these Satisfactory
## 1346 No, neither of these Good
## 1347 No, neither of these Bad
## 1348 No, neither of these Good
## 1349 No, neither of these Bad
## 1350 No, neither of these Good
## 1351 No, neither of these Satisfactory
## 1352 No, neither of these Very good
## 1353 Yes, entry phone Good
## 1354 No, neither of these Good
## 1355 No, neither of these Satisfactory
## 1356 No, neither of these Very good
## 1357 No, neither of these Good
## 1358 No, neither of these Very good
## 1359 No, neither of these Satisfactory
## 1360 No, neither of these Good
## 1361 No, neither of these Good
## 1362 No, neither of these Satisfactory
## 1363 No, neither of these Very good
## 1364 No, neither of these Good
## 1365 No, neither of these Very good
## 1366 No, neither of these Very good
## 1367 No, neither of these Good
## 1368 No, neither of these Very good
## 1369 No, neither of these Very good
## 1370 No, neither of these Satisfactory
## 1371 No, neither of these Good
## 1372 No, neither of these Good
## 1373 No, neither of these Satisfactory
## 1374 No, neither of these Good
## 1375 No, neither of these Good
## 1376 No, neither of these Good
## 1377 Yes, entry phone and locked gate/door Very good
## 1378 No, neither of these Satisfactory
## 1379 No, neither of these Satisfactory
## 1380 Yes, entry phone and locked gate/door Bad
## 1381 No, neither of these Good
## 1382 No, neither of these Satisfactory
## 1383 No, neither of these Satisfactory
## 1384 No, neither of these Good
## 1385 No, neither of these Satisfactory
## 1386 Yes, entry phone and locked gate/door Very good
## 1387 No, neither of these Satisfactory
## 1388 No, neither of these Satisfactory
## 1389 No, neither of these Very good
## 1390 Yes, locked gate/door Very good
## 1391 No, neither of these Very good
## 1392 No, neither of these Very good
## 1393 No, neither of these Very good
## 1394 No, neither of these Good
## 1395 No, neither of these Good
## 1396 No, neither of these Good
## 1397 No, neither of these Good
## 1398 No, neither of these Satisfactory
## 1399 Yes, entry phone Satisfactory
## 1400 No, neither of these Good
## 1401 No, neither of these Good
## 1402 No, neither of these Very good
## 1403 No, neither of these Satisfactory
## 1404 Yes, entry phone Good
## 1405 No, neither of these Satisfactory
## 1406 No, neither of these Very good
## 1407 No, neither of these Satisfactory
## 1408 No, neither of these Very good
## 1409 Yes, entry phone and locked gate/door Good
## 1410 Yes, entry phone and locked gate/door Good
## 1411 No, neither of these Good
## 1412 No, neither of these Good
## 1413 No, neither of these Very good
## 1414 No, neither of these Good
## 1415 No, neither of these Good
## 1416 No, neither of these Very good
## 1417 No, neither of these Good
## 1418 No, neither of these Good
## 1419 No, neither of these Very good
## 1420 No, neither of these Good
## 1421 Yes, entry phone Satisfactory
## 1422 No, neither of these Satisfactory
## 1423 No, neither of these Good
## 1424 No, neither of these Satisfactory
## 1425 No, neither of these Good
## 1426 No, neither of these Good
## 1427 No, neither of these Good
## 1428 No, neither of these Good
## 1429 No, neither of these Good
## 1430 No, neither of these Good
## 1431 No, neither of these Good
## 1432 No, neither of these Very good
## 1433 No, neither of these Good
## 1434 No, neither of these Good
## 1435 No, neither of these Good
## 1436 No, neither of these Very good
## 1437 No, neither of these Good
## 1438 No, neither of these Good
## 1439 No, neither of these Satisfactory
## 1440 No, neither of these Satisfactory
## 1441 No, neither of these Very good
## 1442 No, neither of these Good
## 1443 No, neither of these Good
## 1444 No, neither of these Good
## 1445 No, neither of these Bad
## 1446 No, neither of these Good
## 1447 No, neither of these Good
## 1448 No, neither of these Good
## 1449 No, neither of these Good
## 1450 No, neither of these Satisfactory
## 1451 No, neither of these Satisfactory
## 1452 No, neither of these Satisfactory
## 1453 No, neither of these Good
## 1454 No, neither of these Very good
## 1455 Yes, entry phone and locked gate/door Good
## 1456 No, neither of these Very good
## 1457 No, neither of these Bad
## 1458 No, neither of these Good
## 1459 Yes, entry phone and locked gate/door Satisfactory
## 1460 No, neither of these Good
## 1461 No, neither of these Satisfactory
## 1462 No, neither of these Satisfactory
## 1463 No, neither of these Good
## 1464 No, neither of these Good
## 1465 No, neither of these Good
## 1466 Yes, entry phone and locked gate/door Very good
## 1467 No, neither of these Good
## 1468 No, neither of these Satisfactory
## 1469 No, neither of these Good
## 1470 No, neither of these Satisfactory
## 1471 No, neither of these Bad
## 1472 No, neither of these Very good
## 1473 No, neither of these Good
## 1474 No, neither of these Very good
## 1475 No, neither of these Good
## 1476 No, neither of these Bad
## 1477 No, neither of these Good
## 1478 No, neither of these Very good
## 1479 No, neither of these Good
## 1480 Yes, locked gate/door Satisfactory
## 1481 No, neither of these Bad
## 1482 No, neither of these Satisfactory
## 1483 No, neither of these Good
## 1484 No, neither of these Very good
## 1485 No, neither of these Good
## 1486 No, neither of these Satisfactory
## 1487 No, neither of these Satisfactory
## 1488 No, neither of these Good
## 1489 No, neither of these Satisfactory
## 1490 No, neither of these Good
## 1491 No, neither of these Good
## 1492 No, neither of these Good
## 1493 No, neither of these Very good
## 1494 No, neither of these Good
## 1495 No, neither of these Good
## 1496 No, neither of these Satisfactory
## 1497 No, neither of these Very good
## 1498 No, neither of these Satisfactory
## 1499 No, neither of these Very good
## 1500 No, neither of these Good
## 1501 No, neither of these Very good
## 1502 No, neither of these Very good
## 1503 No, neither of these Good
## 1504 No, neither of these Very good
## 1505 No, neither of these Good
## 1506 No, neither of these Satisfactory
## 1507 No, neither of these Satisfactory
## 1508 No, neither of these Good
## 1509 No, neither of these Satisfactory
## 1510 No, neither of these Satisfactory
## 1511 No, neither of these Bad
## 1512 No, neither of these Satisfactory
## 1513 Yes, entry phone Good
## 1514 No, neither of these Good
## 1515 No, neither of these Very good
## 1516 No, neither of these Good
## 1517 No, neither of these Good
## 1518 No, neither of these Good
## 1519 No, neither of these Good
## 1520 No, neither of these Good
## 1521 No, neither of these Good
## 1522 No, neither of these Very good
## 1523 No, neither of these Good
## 1524 No, neither of these Satisfactory
## 1525 No, neither of these Good
## 1526 No, neither of these Good
## 1527 No, neither of these Satisfactory
## 1528 No, neither of these Good
## 1529 No, neither of these Very good
## 1530 No, neither of these Very good
## 1531 No, neither of these Satisfactory
## 1532 No, neither of these Very good
## 1533 No, neither of these Satisfactory
## 1534 No, neither of these Satisfactory
## 1535 Yes, locked gate/door Satisfactory
## 1536 Yes, entry phone and locked gate/door Very good
## 1537 No, neither of these Very good
## 1538 No, neither of these Satisfactory
## 1539 No, neither of these Good
## 1540 No, neither of these Very good
## 1541 No, neither of these Satisfactory
## 1542 No, neither of these Very good
## 1543 No, neither of these Very good
## 1544 No, neither of these Very good
## 1545 No, neither of these Very good
## 1546 No, neither of these Satisfactory
## 1547 No, neither of these Satisfactory
## 1548 No, neither of these Good
## 1549 No, neither of these Good
## 1550 No, neither of these Good
## 1551 Yes, locked gate/door Bad
## 1552 Yes, entry phone and locked gate/door Very good
## 1553 No, neither of these Good
## 1554 No, neither of these Satisfactory
## 1555 No, neither of these Very good
## 1556 No, neither of these Good
## 1557 No, neither of these Good
## 1558 Yes, entry phone Good
## 1559 No, neither of these Good
## 1560 No, neither of these Satisfactory
## 1561 No, neither of these Very good
## 1562 No, neither of these Good
## 1563 No, neither of these Good
## 1564 Yes, locked gate/door Satisfactory
## 1565 No, neither of these Good
## 1566 No, neither of these Very good
## 1567 No, neither of these Good
## 1568 No, neither of these Very good
## 1569 Yes, entry phone Good
## 1570 No, neither of these Good
## 1571 No, neither of these Very good
## 1572 No, neither of these Satisfactory
## 1573 No, neither of these Good
## 1574 No, neither of these Satisfactory
## 1575 Yes, entry phone Very good
## 1576 No, neither of these Satisfactory
## 1577 No, neither of these Good
## 1578 No, neither of these Good
## 1579 No, neither of these Satisfactory
## 1580 No, neither of these Very good
## 1581 No, neither of these Satisfactory
## 1582 No, neither of these Good
## 1583 No, neither of these Good
## 1584 No, neither of these Very good
## 1585 No, neither of these Very good
## 1586 No, neither of these Satisfactory
## 1587 No, neither of these Good
## 1588 No, neither of these Good
## 1589 No, neither of these Satisfactory
## 1590 No, neither of these Very good
## 1591 No, neither of these Very good
## 1592 Yes, locked gate/door Good
## 1593 No, neither of these Good
## 1594 No, neither of these Good
## 1595 No, neither of these Good
## 1596 No, neither of these Satisfactory
## 1597 No, neither of these Good
## 1598 No, neither of these Good
## 1599 No, neither of these Good
## 1600 Yes, entry phone Satisfactory
## 1601 Yes, entry phone Good
## 1602 No, neither of these Very good
## 1603 No, neither of these Satisfactory
## 1604 No, neither of these Good
## 1605 No, neither of these Good
## 1606 No, neither of these Good
## 1607 No, neither of these Very good
## 1608 No, neither of these Good
## 1609 No, neither of these Good
## 1610 No, neither of these Very good
## 1611 No, neither of these Good
## 1612 No, neither of these Good
## 1613 Yes, entry phone and locked gate/door Good
## 1614 No, neither of these Good
## 1615 No, neither of these Very good
## 1616 No, neither of these Good
## 1617 No, neither of these Bad
## 1618 No, neither of these Satisfactory
## 1619 No, neither of these Good
## 1620 No, neither of these Good
## 1621 No, neither of these Good
## 1622 No, neither of these Satisfactory
## 1623 No, neither of these Satisfactory
## 1624 No, neither of these Good
## 1625 No, neither of these Satisfactory
## 1626 No, neither of these Good
## 1627 No, neither of these Good
## 1628 Yes, entry phone and locked gate/door Good
## 1629 No, neither of these Good
## 1630 No, neither of these Very bad
## 1631 No, neither of these Good
## 1632 No, neither of these Satisfactory
## 1633 No, neither of these Very good
## 1634 No, neither of these Satisfactory
## 1635 No, neither of these Very good
## 1636 Yes, entry phone and locked gate/door Very good
## 1637 No, neither of these Satisfactory
## 1638 No, neither of these Very good
## 1639 No, neither of these Very good
## 1640 No, neither of these Satisfactory
## 1641 Yes, entry phone Good
## 1642 No, neither of these Very good
## 1643 No, neither of these Very good
## 1644 No, neither of these Good
## 1645 No, neither of these Satisfactory
## 1646 No, neither of these Good
## 1647 No, neither of these Good
## 1648 No, neither of these Very good
## 1649 No, neither of these Good
## 1650 No, neither of these Good
## 1651 No, neither of these Very good
## 1652 No, neither of these Satisfactory
## 1653 No, neither of these Good
## 1654 No, neither of these Good
## 1655 No, neither of these Very good
## 1656 No, neither of these Satisfactory
## 1657 No, neither of these Satisfactory
## 1658 Yes, entry phone and locked gate/door Very good
## 1659 No, neither of these Very good
## 1660 No, neither of these Satisfactory
## 1661 No, neither of these Very good
## 1662 Yes, locked gate/door Good
## 1663 No, neither of these Good
## 1664 No, neither of these Very good
## 1665 No, neither of these Good
## 1666 No, neither of these Bad
## 1667 No, neither of these Good
## 1668 No, neither of these Satisfactory
## 1669 No, neither of these Satisfactory
## 1670 No, neither of these Good
## 1671 No, neither of these Good
## 1672 No, neither of these Good
## 1673 No, neither of these Very good
## 1674 No, neither of these Very good
## 1675 No, neither of these Very good
## 1676 No, neither of these Very good
## 1677 No, neither of these Satisfactory
## 1678 No, neither of these Good
## 1679 No, neither of these Very good
## 1680 No, neither of these Good
## 1681 No, neither of these Good
## 1682 Yes, locked gate/door Very good
## 1683 No, neither of these Good
## 1684 No, neither of these Good
## 1685 No, neither of these Very good
## 1686 No, neither of these Good
## 1687 No, neither of these Very good
## 1688 No, neither of these Bad
## 1689 Yes, entry phone Bad
## 1690 No, neither of these Good
## 1691 No, neither of these Satisfactory
## 1692 No, neither of these Good
## 1693 No, neither of these Very good
## 1694 No, neither of these Satisfactory
## 1695 No, neither of these Very good
## 1696 No, neither of these Good
## 1697 No, neither of these Satisfactory
## 1698 No, neither of these Good
## 1699 No, neither of these Very good
## 1700 No, neither of these Very good
## 1701 Yes, entry phone and locked gate/door Satisfactory
## 1702 No, neither of these Good
## 1703 No, neither of these Very good
## 1704 No, neither of these Good
## 1705 No, neither of these Very good
## 1706 Yes, locked gate/door Good
## 1707 No, neither of these Good
## 1708 No, neither of these Very good
## 1709 No, neither of these Good
## 1710 No, neither of these Good
## 1711 No, neither of these Good
## 1712 No, neither of these Good
## 1713 Yes, entry phone and locked gate/door Good
## 1714 No, neither of these Very good
## 1715 No, neither of these Good
## 1716 No, neither of these Good
## 1717 No, neither of these Very good
## 1718 No, neither of these Good
## 1719 No, neither of these Good
## 1720 No, neither of these Good
## 1721 No, neither of these Satisfactory
## 1722 No, neither of these Good
## 1723 No, neither of these Very good
## 1724 Yes, entry phone and locked gate/door Good
## 1725 No, neither of these Satisfactory
## 1726 Yes, entry phone and locked gate/door Satisfactory
## 1727 No, neither of these Good
## 1728 No, neither of these Good
## 1729 Yes, entry phone and locked gate/door Good
## 1730 No, neither of these Good
## 1731 No, neither of these Very good
## 1732 Yes, entry phone and locked gate/door Good
## 1733 No, neither of these Satisfactory
## 1734 No, neither of these Very good
## 1735 No, neither of these Good
## 1736 No, neither of these Good
## 1737 No, neither of these Good
## 1738 No, neither of these Good
## 1739 No, neither of these Good
## 1740 No, neither of these Satisfactory
## 1741 No, neither of these Satisfactory
## 1742 No, neither of these Good
## 1743 No, neither of these Very good
## 1744 No, neither of these Good
## 1745 No, neither of these Good
## 1746 No, neither of these Very good
## 1747 No, neither of these Satisfactory
## 1748 Yes, entry phone and locked gate/door Good
## 1749 No, neither of these Bad
## 1750 No, neither of these Satisfactory
## 1751 No, neither of these Good
## 1752 No, neither of these Satisfactory
## 1753 No, neither of these Satisfactory
## 1754 No, neither of these Good
## 1755 No, neither of these Very good
## 1756 No, neither of these Good
## 1757 No, neither of these Very good
## 1758 No, neither of these Good
## 1759 No, neither of these Good
## 1760 No, neither of these Satisfactory
## 1761 No, neither of these Good
## 1762 No, neither of these Good
## 1763 No, neither of these Good
## 1764 No, neither of these Satisfactory
## 1765 No, neither of these Very good
## 1766 No, neither of these Good
## 1767 No, neither of these Very good
## 1768 Yes, entry phone and locked gate/door Good
## 1769 No, neither of these Good
## 1770 No, neither of these Very good
## 1771 No, neither of these Good
## 1772 Yes, entry phone Very good
## 1773 No, neither of these Very good
## 1774 Yes, entry phone Satisfactory
## 1775 No, neither of these Very good
## 1776 No, neither of these Good
## 1777 Yes, entry phone Good
## 1778 No, neither of these Good
## 1779 No, neither of these Satisfactory
## 1780 No, neither of these Bad
## 1781 No, neither of these Satisfactory
## 1782 No, neither of these Very good
## 1783 No, neither of these Satisfactory
## 1784 No, neither of these Good
## 1785 No, neither of these Good
## 1786 No, neither of these Good
## 1787 No, neither of these Satisfactory
## 1788 No, neither of these Satisfactory
## 1789 No, neither of these Good
## 1790 No, neither of these Satisfactory
## 1791 No, neither of these Very good
## 1792 No, neither of these Good
## 1793 No, neither of these Satisfactory
## 1794 No, neither of these Very good
## 1795 No, neither of these Very good
## 1796 Yes, entry phone Good
## 1797 No, neither of these Very good
## 1798 No, neither of these Very good
## 1799 No, neither of these Good
## 1800 No, neither of these Good
## 1801 No, neither of these Very good
## 1802 No, neither of these Good
## 1803 No, neither of these Satisfactory
## 1804 No, neither of these Good
## 1805 No, neither of these Good
## 1806 No, neither of these Satisfactory
## 1807 Yes, entry phone and locked gate/door Very good
## 1808 Yes, entry phone and locked gate/door Satisfactory
## 1809 No, neither of these Good
## 1810 No, neither of these Satisfactory
## 1811 No, neither of these Good
## 1812 No, neither of these Good
## 1813 No, neither of these Very good
## 1814 No, neither of these Good
## 1815 No, neither of these Bad
## 1816 No, neither of these Satisfactory
## 1817 No, neither of these Satisfactory
## 1818 No, neither of these Satisfactory
## 1819 No, neither of these Good
## 1820 Yes, locked gate/door Good
## 1821 No, neither of these Good
## 1822 No, neither of these Very good
## 1823 Yes, entry phone Very good
## 1824 No, neither of these Satisfactory
## 1825 No, neither of these Good
## 1826 No, neither of these Good
## 1827 No, neither of these Good
## 1828 No, neither of these Good
## 1829 No, neither of these Good
## 1830 No, neither of these Good
## 1831 No, neither of these Good
## 1832 Yes, entry phone Good
## 1833 Yes, entry phone Good
## 1834 No, neither of these Good
## 1835 No, neither of these Good
## 1836 No, neither of these Good
## 1837 No, neither of these Very good
## 1838 No, neither of these Good
## 1839 No, neither of these Satisfactory
## 1840 Yes, entry phone Good
## 1841 Yes, entry phone and locked gate/door Good
## 1842 No, neither of these Very good
## 1843 No, neither of these Good
## 1844 No, neither of these Very good
## 1845 No, neither of these Good
## 1846 No, neither of these Good
## 1847 No, neither of these Very good
## 1848 No, neither of these Satisfactory
## 1849 No, neither of these Bad
## 1850 No, neither of these Satisfactory
## 1851 Yes, entry phone and locked gate/door Good
## 1852 Yes, entry phone and locked gate/door Good
## 1853 No, neither of these Bad
## 1854 No, neither of these Satisfactory
## 1855 No, neither of these Very good
## 1856 No, neither of these Good
## 1857 No, neither of these Very good
## 1858 Yes, entry phone and locked gate/door Satisfactory
## 1859 No, neither of these Good
## 1860 No, neither of these Very good
## 1861 No, neither of these Good
## 1862 No, neither of these Satisfactory
## 1863 No, neither of these Satisfactory
## 1864 No, neither of these Very good
## 1865 No, neither of these Satisfactory
## 1866 No, neither of these Very good
## 1867 No, neither of these Very good
## 1868 Yes, entry phone Very good
## 1869 No, neither of these Good
## 1870 No, neither of these Good
## 1871 No, neither of these Bad
## 1872 Yes, entry phone and locked gate/door Satisfactory
## 1873 No, neither of these Good
## 1874 No, neither of these Good
## 1875 Yes, entry phone and locked gate/door Good
## 1876 Yes, entry phone Satisfactory
## 1877 No, neither of these Very good
## 1878 No, neither of these Good
## 1879 No, neither of these Good
## 1880 No, neither of these Good
## 1881 No, neither of these Very good
## 1882 No, neither of these Satisfactory
## 1883 No, neither of these Satisfactory
## 1884 No, neither of these Good
## 1885 No, neither of these Good
## 1886 No, neither of these Satisfactory
## 1887 No, neither of these Very good
## 1888 No, neither of these Good
## 1889 No, neither of these Bad
## 1890 No, neither of these Satisfactory
## 1891 Yes, entry phone and locked gate/door Satisfactory
## 1892 No, neither of these Good
## 1893 No, neither of these Very good
## 1894 No, neither of these Satisfactory
## 1895 No, neither of these Good
## 1896 No, neither of these Good
## 1897 No, neither of these Very good
## 1898 Yes, entry phone and locked gate/door Satisfactory
## 1899 No, neither of these Satisfactory
## 1900 No, neither of these Good
## 1901 No, neither of these Good
## 1902 Yes, locked gate/door Very good
## 1903 No, neither of these Satisfactory
## 1904 No, neither of these Very good
## 1905 No, neither of these Good
## 1906 No, neither of these Satisfactory
## 1907 No, neither of these Satisfactory
## 1908 No, neither of these Very good
## 1909 No, neither of these Good
## 1910 No, neither of these Satisfactory
## 1911 No, neither of these Satisfactory
## 1912 No, neither of these Satisfactory
## 1913 No, neither of these Satisfactory
## 1914 No, neither of these Very good
## 1915 Yes, entry phone Good
## 1916 No, neither of these Satisfactory
## 1917 No, neither of these Good
## 1918 No, neither of these Good
## 1919 No, neither of these Good
## 1920 No, neither of these Very good
## 1921 No, neither of these Good
## 1922 No, neither of these Good
## 1923 No, neither of these Very good
## 1924 No, neither of these Very good
## 1925 No, neither of these Satisfactory
## 1926 Yes, entry phone and locked gate/door Satisfactory
## 1927 No, neither of these Good
## 1928 No, neither of these Good
## 1929 No, neither of these Very good
## 1930 Yes, entry phone and locked gate/door Good
## 1931 No, neither of these Good
## 1932 No, neither of these Very good
## 1933 No, neither of these Good
## 1934 No, neither of these Satisfactory
## 1935 No, neither of these Very good
## 1936 No, neither of these Good
## 1937 No, neither of these Very good
## 1938 Yes, entry phone Good
## 1939 No, neither of these Good
## 1940 Yes, entry phone and locked gate/door Satisfactory
## 1941 No, neither of these Satisfactory
## 1942 No, neither of these Good
## 1943 No, neither of these Good
## 1944 No, neither of these Very good
## 1945 No, neither of these Good
## 1946 No, neither of these Very good
## 1947 Yes, locked gate/door Good
## 1948 No, neither of these Satisfactory
## 1949 No, neither of these Good
## 1950 No, neither of these Very good
## 1951 No, neither of these Good
## 1952 Yes, entry phone Satisfactory
## 1953 No, neither of these Good
## 1954 No, neither of these Very good
## 1955 No, neither of these Good
## 1956 No, neither of these Very good
## 1957 No, neither of these Good
## 1958 Yes, entry phone and locked gate/door Very good
## 1959 No, neither of these Satisfactory
## 1960 No, neither of these Satisfactory
## 1961 No, neither of these Good
## 1962 No, neither of these Bad
## 1963 No, neither of these Good
## 1964 No, neither of these Good
## 1965 No, neither of these Satisfactory
## 1966 Yes, entry phone and locked gate/door Satisfactory
## 1967 No, neither of these Good
## 1968 Yes, entry phone and locked gate/door Satisfactory
## 1969 No, neither of these Very good
## 1970 No, neither of these Good
## 1971 No, neither of these Good
## 1972 Yes, entry phone and locked gate/door Good
## 1973 No, neither of these Good
## 1974 No, neither of these Good
## 1975 No, neither of these Very good
## 1976 No, neither of these Good
## 1977 Yes, entry phone Satisfactory
## 1978 Yes, entry phone and locked gate/door Good
## 1979 No, neither of these Good
## 1980 No, neither of these Good
## 1981 No, neither of these Very good
## 1982 No, neither of these Satisfactory
## 1983 No, neither of these Very good
## 1984 No, neither of these Good
## 1985 No, neither of these Good
## 1986 No, neither of these Good
## 1987 No, neither of these Very good
## 1988 No, neither of these Very good
## 1989 No, neither of these Good
## 1990 No, neither of these Very good
## 1991 No, neither of these Very good
## 1992 No, neither of these Good
## 1993 No, neither of these Satisfactory
## 1994 No, neither of these Satisfactory
## 1995 No, neither of these Very good
## 1996 No, neither of these Very good
## 1997 No, neither of these Good
## 1998 No, neither of these Good
## 1999 No, neither of these Bad
## 2000 No, neither of these Good
## 2001 No, neither of these Good
## 2002 No, neither of these Good
## 2003 No, neither of these Very good
## 2004 No, neither of these Good
## 2005 No, neither of these Very good
## 2006 No, neither of these Very good
## 2007 No, neither of these Bad
## 2008 No, neither of these Satisfactory
## 2009 No, neither of these Very good
## 2010 No, neither of these Good
## 2011 No, neither of these Satisfactory
## 2012 No, neither of these Good
## 2013 No, neither of these Satisfactory
## 2014 No, neither of these Good
## 2015 No, neither of these Good
## 2016 No, neither of these Very good
## 2017 No, neither of these Very good
## 2018 No, neither of these Satisfactory
## 2019 No, neither of these Very good
## 2020 No, neither of these Very good
## 2021 Yes, entry phone Satisfactory
## 2022 Yes, entry phone and locked gate/door Good
## 2023 No, neither of these Satisfactory
## 2024 No, neither of these Satisfactory
## 2025 No, neither of these Very good
## 2026 No, neither of these Very good
## 2027 No, neither of these Good
## 2028 No, neither of these Good
## 2029 No, neither of these Good
## 2030 No, neither of these Very good
## 2031 No, neither of these Satisfactory
## 2032 No, neither of these Satisfactory
## 2033 Yes, entry phone Very good
## 2034 No, neither of these Good
## 2035 No, neither of these Satisfactory
## 2036 No, neither of these Good
## 2037 No, neither of these Good
## 2038 No, neither of these Satisfactory
## 2039 No, neither of these Satisfactory
## 2040 No, neither of these Satisfactory
## 2041 No, neither of these Good
## 2042 No, neither of these Satisfactory
## 2043 No, neither of these Very good
## 2044 No, neither of these Satisfactory
## 2045 Yes, entry phone and locked gate/door Good
## 2046 No, neither of these Satisfactory
## 2047 No, neither of these Satisfactory
## 2048 No, neither of these Very good
## 2049 No, neither of these Bad
## 2050 No, neither of these Good
## 2051 No, neither of these Satisfactory
## 2052 No, neither of these Good
## 2053 No, neither of these Satisfactory
## 2054 Yes, locked gate/door Bad
## 2055 No, neither of these Good
## 2056 No, neither of these Very good
## 2057 Yes, entry phone Very good
## 2058 No, neither of these Good
## 2059 No, neither of these Good
## 2060 No, neither of these Good
## 2061 No, neither of these Good
## 2062 No, neither of these Very good
## 2063 No, neither of these Satisfactory
## 2064 No, neither of these Very good
## 2065 No, neither of these Very good
## 2066 No, neither of these Good
## 2067 No, neither of these Good
## 2068 No, neither of these Good
## 2069 Yes, entry phone and locked gate/door Good
## 2070 No, neither of these Satisfactory
## 2071 No, neither of these Good
## 2072 No, neither of these Very good
## 2073 No, neither of these Good
## 2074 No, neither of these Very good
## 2075 No, neither of these Very good
## 2076 Yes, entry phone and locked gate/door Good
## 2077 No, neither of these Satisfactory
## 2078 No, neither of these Satisfactory
## 2079 No, neither of these Good
## 2080 No, neither of these Good
## 2081 No, neither of these Good
## 2082 No, neither of these Good
## 2083 No, neither of these Good
## 2084 No, neither of these Good
## 2085 No, neither of these Very good
## 2086 No, neither of these Very good
## 2087 No, neither of these Satisfactory
## 2088 No, neither of these Good
## 2089 No, neither of these Good
## 2090 No, neither of these Good
## 2091 No, neither of these Satisfactory
## 2092 No, neither of these Good
## 2093 No, neither of these Good
## 2094 No, neither of these Very good
## 2095 No, neither of these Good
## 2096 No, neither of these Good
## 2097 No, neither of these Satisfactory
## 2098 No, neither of these Bad
## 2099 No, neither of these Good
## 2100 No, neither of these Good
## 2101 Yes, entry phone Satisfactory
## 2102 No, neither of these Good
## 2103 No, neither of these Good
## 2104 No, neither of these Satisfactory
## 2105 No, neither of these Very good
## 2106 No, neither of these Good
## 2107 No, neither of these Bad
## 2108 Yes, entry phone and locked gate/door Bad
## 2109 No, neither of these Good
## 2110 No, neither of these Good
## 2111 No, neither of these Very good
## 2112 No, neither of these Very good
## 2113 No, neither of these Very good
## 2114 No, neither of these Good
## 2115 No, neither of these Satisfactory
## 2116 No, neither of these Very good
## 2117 No, neither of these Good
## 2118 Yes, entry phone Satisfactory
## 2119 No, neither of these Good
## 2120 No, neither of these Very good
## 2121 No, neither of these Satisfactory
## 2122 Yes, entry phone and locked gate/door Very good
## 2123 No, neither of these Very good
## 2124 No, neither of these Good
## 2125 No, neither of these Satisfactory
## 2126 No, neither of these Satisfactory
## 2127 No, neither of these Good
## 2128 No, neither of these Good
## 2129 Yes, entry phone Satisfactory
## 2130 No, neither of these Good
## 2131 No, neither of these Good
## 2132 No, neither of these Good
## 2133 Yes, entry phone and locked gate/door Satisfactory
## 2134 No, neither of these Good
## 2135 No, neither of these Very good
## 2136 No, neither of these Good
## 2137 No, neither of these Satisfactory
## 2138 No, neither of these Good
## 2139 No, neither of these Satisfactory
## 2140 No, neither of these Satisfactory
## 2141 No, neither of these Good
## 2142 No, neither of these Good
## 2143 No, neither of these Good
## 2144 No, neither of these Good
## 2145 No, neither of these Very good
## 2146 No, neither of these Good
## 2147 No, neither of these Good
## 2148 No, neither of these Good
## 2149 No, neither of these Satisfactory
## 2150 No, neither of these Good
## 2151 No, neither of these Good
## 2152 No, neither of these Good
## 2153 Yes, entry phone Good
## 2154 No, neither of these Very good
## 2155 No, neither of these Satisfactory
## 2156 No, neither of these Satisfactory
## 2157 No, neither of these Satisfactory
## 2158 No, neither of these Good
## 2159 No, neither of these Very good
## 2160 No, neither of these Good
## 2161 No, neither of these Good
## 2162 No, neither of these Satisfactory
## 2163 No, neither of these Good
## 2164 No, neither of these Good
## 2165 No, neither of these Satisfactory
## 2166 No, neither of these Good
## 2167 No, neither of these Bad
## 2168 No, neither of these Very good
## 2169 No, neither of these Satisfactory
## 2170 No, neither of these Satisfactory
## 2171 Yes, entry phone and locked gate/door Very good
## 2172 No, neither of these Satisfactory
## 2173 No, neither of these Very good
## 2174 No, neither of these Good
## 2175 No, neither of these Very good
## 2176 <NA> Very good
## 2177 No, neither of these Good
## 2178 No, neither of these Very good
## 2179 No, neither of these Satisfactory
## 2180 No, neither of these Very good
## 2181 No, neither of these Good
## 2182 No, neither of these Good
## 2183 Yes, entry phone and locked gate/door Satisfactory
## 2184 No, neither of these Good
## 2185 No, neither of these Satisfactory
## 2186 No, neither of these Satisfactory
## 2187 No, neither of these Very good
## 2188 No, neither of these Satisfactory
## 2189 No, neither of these Very good
## 2190 No, neither of these Good
## 2191 No, neither of these Good
## 2192 No, neither of these Very good
## 2193 No, neither of these Good
## 2194 No, neither of these Satisfactory
## 2195 No, neither of these Good
## 2196 No, neither of these Satisfactory
## 2197 No, neither of these Very good
## 2198 No, neither of these Good
## 2199 No, neither of these Satisfactory
## 2200 Yes, entry phone and locked gate/door Satisfactory
## 2201 No, neither of these Satisfactory
## 2202 No, neither of these Good
## 2203 No, neither of these Good
## 2204 No, neither of these Satisfactory
## 2205 No, neither of these Very good
## 2206 No, neither of these Good
## 2207 No, neither of these Very good
## 2208 No, neither of these Satisfactory
## 2209 No, neither of these Very good
## 2210 No, neither of these Very good
## 2211 No, neither of these Satisfactory
## 2212 No, neither of these Satisfactory
## 2213 Yes, entry phone and locked gate/door Bad
## 2214 No, neither of these Good
## 2215 No, neither of these Satisfactory
## 2216 No, neither of these Satisfactory
## 2217 No, neither of these Good
## 2218 No, neither of these Satisfactory
## 2219 No, neither of these Satisfactory
## 2220 No, neither of these Good
## 2221 No, neither of these Satisfactory
## 2222 No, neither of these Good
## 2223 No, neither of these Satisfactory
## 2224 No, neither of these Good
## 2225 No, neither of these Good
## 2226 No, neither of these Good
## 2227 No, neither of these Very good
## 2228 No, neither of these Good
## 2229 No, neither of these Satisfactory
## 2230 No, neither of these Good
## 2231 No, neither of these Good
## 2232 Yes, entry phone Satisfactory
## 2233 No, neither of these Good
## 2234 No, neither of these Good
## 2235 No, neither of these Satisfactory
## 2236 No, neither of these Good
## 2237 No, neither of these Good
## 2238 No, neither of these Good
## 2239 No, neither of these Good
## 2240 No, neither of these Good
## 2241 No, neither of these Good
## 2242 Yes, entry phone and locked gate/door Good
## 2243 Yes, entry phone and locked gate/door Good
## 2244 No, neither of these Bad
## 2245 Yes, entry phone and locked gate/door Very good
## 2246 No, neither of these Satisfactory
## 2247 No, neither of these Satisfactory
## 2248 No, neither of these Satisfactory
## 2249 No, neither of these Good
## 2250 No, neither of these Very good
## 2251 No, neither of these Satisfactory
## 2252 No, neither of these Good
## 2253 No, neither of these Satisfactory
## 2254 No, neither of these Good
## 2255 No, neither of these Good
## 2256 No, neither of these Good
## 2257 No, neither of these Very good
## 2258 No, neither of these Very good
## 2259 No, neither of these Very good
## 2260 No, neither of these Satisfactory
## 2261 No, neither of these Satisfactory
## 2262 No, neither of these Very good
## 2263 No, neither of these Good
## 2264 No, neither of these Good
## 2265 Yes, entry phone and locked gate/door Satisfactory
## 2266 <NA> <NA>
## 2267 Yes, entry phone Satisfactory
## 2268 No, neither of these Good
## 2269 No, neither of these Good
## 2270 <NA> <NA>
## 2271 No, neither of these Bad
## 2272 No, neither of these Satisfactory
## 2273 No, neither of these Very good
## 2274 <NA> <NA>
## 2275 Yes, locked gate/door Bad
## 2276 No, neither of these Very good
## 2277 No, neither of these Satisfactory
## 2278 Yes, entry phone and locked gate/door Good
## 2279 Yes, entry phone Good
## 2280 No, neither of these Good
## 2281 No, neither of these Good
## 2282 No, neither of these Good
## 2283 <NA> <NA>
## 2284 No, neither of these Good
## 2285 No, neither of these Very good
## 2286 No, neither of these Very good
## 2287 <NA> <NA>
## 2288 <NA> <NA>
## 2289 No, neither of these Very good
## 2290 No, neither of these Good
## 2291 No, neither of these Satisfactory
## 2292 No, neither of these Very good
## 2293 No, neither of these Good
## 2294 Yes, entry phone and locked gate/door Good
## 2295 No, neither of these Very good
## 2296 No, neither of these Good
## 2297 No, neither of these Good
## 2298 No, neither of these Good
## 2299 No, neither of these Good
## 2300 No, neither of these Satisfactory
## 2301 <NA> <NA>
## 2302 <NA> <NA>
## 2303 <NA> <NA>
## 2304 <NA> <NA>
## 2305 No, neither of these Good
## 2306 <NA> <NA>
## 2307 <NA> <NA>
## 2308 No, neither of these Good
## 2309 No, neither of these Good
## 2310 No, neither of these Satisfactory
## 2311 <NA> <NA>
## 2312 No, neither of these Good
## 2313 <NA> <NA>
## 2314 Yes, entry phone Satisfactory
## 2315 No, neither of these Very good
## 2316 No, neither of these Good
## 2317 No, neither of these Good
## 2318 No, neither of these Good
## 2319 Yes, entry phone and locked gate/door Good
## 2320 Yes, entry phone and locked gate/door Satisfactory
## 2321 No, neither of these Good
## 2322 Yes, locked gate/door Satisfactory
## 2323 Yes, entry phone and locked gate/door Good
## 2324 <NA> <NA>
## 2325 No, neither of these Good
## 2326 No, neither of these Good
## 2327 No, neither of these Good
## 2328 <NA> <NA>
## 2329 No, neither of these Good
## 2330 No, neither of these Satisfactory
## 2331 No, neither of these Good
## 2332 <NA> <NA>
## 2333 No, neither of these Satisfactory
## 2334 No, neither of these Good
## 2335 No, neither of these Good
## 2336 No, neither of these Very good
## 2337 No, neither of these Good
## 2338 No, neither of these Satisfactory
## 2339 No, neither of these Good
## 2340 No, neither of these Satisfactory
## 2341 <NA> <NA>
## 2342 No, neither of these Very good
## 2343 No, neither of these Good
## 2344 No, neither of these Good
## 2345 No, neither of these Satisfactory
## 2346 Yes, locked gate/door Good
## 2347 No, neither of these Good
## 2348 No, neither of these Satisfactory
## 2349 <NA> <NA>
## 2350 No, neither of these Very good
## 2351 No, neither of these Satisfactory
## 2352 No, neither of these Satisfactory
## 2353 <NA> <NA>
## 2354 No, neither of these Very good
## 2355 Yes, entry phone Good
## 2356 No, neither of these Good
## 2357 No, neither of these Good
## 2358 No, neither of these Good
## 2359 <NA> <NA>
## 2360 No, neither of these Good
## 2361 No, neither of these Satisfactory
## 2362 No, neither of these Good
## 2363 No, neither of these Satisfactory
## 2364 No, neither of these Very good
## 2365 <NA> <NA>
## 2366 No, neither of these Very good
## 2367 Yes, entry phone Very good
## 2368 Yes, locked gate/door Very good
## 2369 No, neither of these Satisfactory
## 2370 No, neither of these Satisfactory
## 2371 No, neither of these Good
## 2372 No, neither of these Good
## 2373 No, neither of these Satisfactory
## 2374 No, neither of these Satisfactory
## 2375 <NA> <NA>
## 2376 No, neither of these Very good
## 2377 Yes, entry phone and locked gate/door Very good
## 2378 No, neither of these Good
## 2379 <NA> <NA>
## 2380 No, neither of these Good
## 2381 No, neither of these Good
## 2382 No, neither of these Bad
## 2383 No, neither of these Bad
## 2384 No, neither of these Good
## 2385 No, neither of these Good
## 2386 No, neither of these Bad
## 2387 No, neither of these Good
## 2388 No, neither of these Satisfactory
## 2389 <NA> <NA>
## 2390 Yes, entry phone and locked gate/door Good
## 2391 <NA> <NA>
## 2392 No, neither of these Satisfactory
## 2393 No, neither of these Very good
## 2394 No, neither of these Very good
## 2395 No, neither of these Very good
## 2396 No, neither of these Good
## 2397 No, neither of these Very good
## 2398 No, neither of these Good
## 2399 No, neither of these Very good
## 2400 Yes, entry phone and locked gate/door Good
## 2401 No, neither of these Good
## 2402 No, neither of these Satisfactory
## 2403 No, neither of these Good
## 2404 No, neither of these Good
## 2405 No, neither of these Very good
## 2406 Yes, entry phone Satisfactory
## 2407 No, neither of these Satisfactory
## 2408 <NA> <NA>
## 2409 No, neither of these Very good
## 2410 Yes, entry phone Satisfactory
## 2411 No, neither of these Good
## 2412 No, neither of these Good
## 2413 No, neither of these Satisfactory
## 2414 Yes, entry phone and locked gate/door Good
## 2415 No, neither of these Very good
## 2416 No, neither of these Good
## 2417 No, neither of these Satisfactory
## 2418 No, neither of these Very good
## 2419 No, neither of these Satisfactory
## 2420 No, neither of these Very good
## 2421 <NA> <NA>
## 2422 No, neither of these Good
## 2423 No, neither of these Good
## 2424 No, neither of these Good
## 2425 No, neither of these Good
## 2426 No, neither of these Very good
## 2427 No, neither of these Good
## 2428 No, neither of these Good
## 2429 No, neither of these Satisfactory
## 2430 No, neither of these Satisfactory
## 2431 No, neither of these Satisfactory
## 2432 No, neither of these Very good
## 2433 No, neither of these Satisfactory
## 2434 No, neither of these Very good
## 2435 <NA> <NA>
## 2436 <NA> <NA>
## 2437 <NA> <NA>
## 2438 No, neither of these Good
## 2439 No, neither of these Satisfactory
## 2440 No, neither of these Very good
## 2441 Yes, entry phone and locked gate/door Satisfactory
## 2442 No, neither of these Satisfactory
## 2443 No, neither of these Very good
## 2444 <NA> <NA>
## 2445 No, neither of these Satisfactory
## 2446 No, neither of these Good
## 2447 No, neither of these Good
## 2448 No, neither of these Good
## 2449 No, neither of these Satisfactory
## 2450 Yes, entry phone and locked gate/door Good
## 2451 Yes, entry phone Good
## 2452 <NA> <NA>
## 2453 No, neither of these Good
## 2454 <NA> <NA>
## 2455 Yes, entry phone and locked gate/door Good
## 2456 No, neither of these Satisfactory
## 2457 Yes, entry phone and locked gate/door Satisfactory
## 2458 Yes, entry phone and locked gate/door Very good
## 2459 <NA> <NA>
## 2460 No, neither of these Good
## 2461 Yes, entry phone and locked gate/door Very good
## 2462 No, neither of these Good
## 2463 No, neither of these Satisfactory
## 2464 No, neither of these Satisfactory
## 2465 <NA> <NA>
## 2466 No, neither of these Good
## 2467 No, neither of these Satisfactory
## 2468 No, neither of these Good
## 2469 No, neither of these Good
## 2470 <NA> <NA>
## 2471 No, neither of these Satisfactory
## 2472 Yes, entry phone Good
## 2473 No, neither of these Good
## 2474 No, neither of these Very good
## 2475 No, neither of these Good
## 2476 No, neither of these Good
## 2477 No, neither of these Good
## 2478 No, neither of these Good
## 2479 <NA> <NA>
## 2480 No, neither of these Good
## 2481 No, neither of these Good
## 2482 <NA> <NA>
## 2483 <NA> <NA>
## 2484 No, neither of these Very good
## 2485 No, neither of these Satisfactory
## 2486 Yes, entry phone Bad
## 2487 No, neither of these Very good
## 2488 No, neither of these Satisfactory
## 2489 No, neither of these Good
## 2490 No, neither of these Satisfactory
## 2491 Yes, entry phone and locked gate/door Bad
## 2492 <NA> <NA>
## 2493 No, neither of these Satisfactory
## 2494 No, neither of these Satisfactory
## 2495 No, neither of these Good
## 2496 <NA> <NA>
## 2497 No, neither of these Satisfactory
## 2498 No, neither of these Very good
## 2499 No, neither of these Bad
## 2500 No, neither of these Good
## 2501 No, neither of these Good
## 2502 No, neither of these Satisfactory
## 2503 No, neither of these Satisfactory
## 2504 <NA> <NA>
## 2505 No, neither of these Good
## 2506 No, neither of these Very good
## 2507 No, neither of these Satisfactory
## 2508 No, neither of these Good
## 2509 No, neither of these Very good
## 2510 No, neither of these Satisfactory
## 2511 No, neither of these Very good
## 2512 No, neither of these Good
## 2513 <NA> <NA>
## 2514 No, neither of these Good
## 2515 No, neither of these Satisfactory
## 2516 No, neither of these Satisfactory
## 2517 No, neither of these Good
## 2518 No, neither of these Good
## 2519 <NA> <NA>
## 2520 Yes, entry phone Very good
## 2521 <NA> <NA>
## 2522 No, neither of these Satisfactory
## 2523 No, neither of these Satisfactory
## 2524 No, neither of these Bad
## 2525 No, neither of these Good
## 2526 No, neither of these Good
## 2527 Yes, entry phone Good
## 2528 No, neither of these Satisfactory
## 2529 No, neither of these Bad
## 2530 No, neither of these Good
## 2531 No, neither of these Good
## 2532 No, neither of these Good
## 2533 No, neither of these Good
## 2534 <NA> <NA>
## 2535 Yes, entry phone and locked gate/door Good
## 2536 No, neither of these Good
## 2537 No, neither of these Very good
## 2538 <NA> <NA>
## 2539 No, neither of these Good
## 2540 <NA> <NA>
## 2541 No, neither of these Good
## 2542 <NA> Good
## 2543 No, neither of these Very good
## 2544 <NA> <NA>
## 2545 No, neither of these Very good
## 2546 <NA> <NA>
## 2547 Yes, entry phone and locked gate/door Good
## 2548 No, neither of these Good
## 2549 No, neither of these Good
## 2550 No, neither of these Good
## 2551 Yes, locked gate/door Good
## 2552 Yes, entry phone and locked gate/door Very good
## 2553 No, neither of these Very good
## 2554 No, neither of these Very good
## 2555 No, neither of these Good
## 2556 No, neither of these Very good
## 2557 No, neither of these Good
## 2558 No, neither of these Satisfactory
## 2559 No, neither of these Good
## 2560 No, neither of these Satisfactory
## 2561 No, neither of these Very good
## 2562 No, neither of these Very good
## 2563 No, neither of these Good
## 2564 No, neither of these Satisfactory
## 2565 No, neither of these Satisfactory
## 2566 No, neither of these Good
## 2567 No, neither of these Satisfactory
## 2568 No, neither of these Good
## 2569 Yes, entry phone and locked gate/door Satisfactory
## 2570 No, neither of these Satisfactory
## 2571 <NA> <NA>
## 2572 Yes, entry phone and locked gate/door Bad
## 2573 No, neither of these Very good
## 2574 No, neither of these Satisfactory
## 2575 No, neither of these Good
## 2576 <NA> <NA>
## 2577 Yes, entry phone and locked gate/door Satisfactory
## 2578 Yes, entry phone Good
## 2579 <NA> <NA>
## 2580 No, neither of these Good
## 2581 No, neither of these Good
## 2582 No, neither of these Good
## 2583 No, neither of these Good
## 2584 No, neither of these Good
## 2585 Yes, entry phone and locked gate/door Satisfactory
## 2586 No, neither of these Satisfactory
## 2587 No, neither of these Satisfactory
## 2588 No, neither of these Good
## 2589 No, neither of these Satisfactory
## 2590 Yes, entry phone Very good
## 2591 No, neither of these Satisfactory
## 2592 No, neither of these Very good
## 2593 No, neither of these Good
## 2594 Yes, entry phone Good
## 2595 No, neither of these Good
## 2596 No, neither of these Satisfactory
## 2597 No, neither of these Good
## 2598 <NA> <NA>
## 2599 No, neither of these Good
## 2600 Yes, entry phone Good
## 2601 <NA> <NA>
## 2602 No, neither of these Bad
## 2603 Yes, entry phone Very good
## 2604 No, neither of these Good
## 2605 Yes, entry phone Good
## 2606 No, neither of these Good
## 2607 No, neither of these Good
## 2608 No, neither of these Satisfactory
## 2609 <NA> <NA>
## 2610 No, neither of these Good
## 2611 No, neither of these Satisfactory
## 2612 <NA> <NA>
## 2613 No, neither of these Very good
## 2614 <NA> <NA>
## 2615 Yes, entry phone and locked gate/door Very good
## 2616 No, neither of these Satisfactory
## 2617 No, neither of these Very good
## 2618 No, neither of these Bad
## 2619 No, neither of these Good
## 2620 Yes, entry phone Very good
## 2621 Yes, entry phone and locked gate/door Satisfactory
## 2622 No, neither of these Good
## 2623 No, neither of these Satisfactory
## 2624 Yes, entry phone Very good
## 2625 No, neither of these Good
## 2626 No, neither of these Good
## 2627 No, neither of these Satisfactory
## 2628 No, neither of these Good
## 2629 No, neither of these Very good
## 2630 Yes, entry phone and locked gate/door Very good
## 2631 No, neither of these Satisfactory
## 2632 No, neither of these Satisfactory
## 2633 No, neither of these Good
## 2634 No, neither of these Satisfactory
## 2635 No, neither of these Satisfactory
## 2636 Yes, entry phone Very good
## 2637 No, neither of these Satisfactory
## 2638 No, neither of these Very good
## 2639 <NA> <NA>
## 2640 No, neither of these Good
## 2641 Yes, entry phone Satisfactory
## 2642 No, neither of these Satisfactory
## 2643 No, neither of these Good
## 2644 <NA> <NA>
## 2645 Yes, entry phone and locked gate/door Very good
## 2646 <NA> <NA>
## 2647 <NA> <NA>
## 2648 Yes, entry phone Good
## 2649 No, neither of these Satisfactory
## 2650 <NA> <NA>
## 2651 No, neither of these Good
## 2652 No, neither of these Good
## 2653 No, neither of these Good
## 2654 Yes, entry phone and locked gate/door Very good
## 2655 <NA> <NA>
## 2656 No, neither of these Good
## 2657 <NA> <NA>
## 2658 <NA> <NA>
## 2659 No, neither of these Satisfactory
## 2660 No, neither of these Satisfactory
## 2661 No, neither of these Satisfactory
## 2662 No, neither of these Good
## 2663 Yes, entry phone and locked gate/door Good
## 2664 No, neither of these Good
## 2665 No, neither of these Very good
## 2666 No, neither of these Satisfactory
## 2667 No, neither of these Very good
## 2668 <NA> <NA>
## 2669 <NA> <NA>
## 2670 Yes, entry phone Good
## 2671 No, neither of these Good
## 2672 No, neither of these Satisfactory
## 2673 No, neither of these Satisfactory
## 2674 No, neither of these Good
## 2675 Yes, entry phone Good
## 2676 Yes, entry phone and locked gate/door Satisfactory
## 2677 No, neither of these Bad
## 2678 No, neither of these Very good
## 2679 No, neither of these Very good
## 2680 No, neither of these Good
## 2681 No, neither of these Good
## 2682 No, neither of these Satisfactory
## 2683 No, neither of these Good
## 2684 No, neither of these Satisfactory
## 2685 No, neither of these Satisfactory
## 2686 Yes, entry phone and locked gate/door Satisfactory
## 2687 Yes, entry phone and locked gate/door Good
## 2688 Yes, entry phone Good
## 2689 No, neither of these Good
## 2690 No, neither of these Very good
## 2691 <NA> <NA>
## 2692 No, neither of these Very good
## 2693 No, neither of these Satisfactory
## 2694 No, neither of these Very good
## 2695 No, neither of these Satisfactory
## 2696 <NA> <NA>
## 2697 No, neither of these Very good
## 2698 No, neither of these Good
## 2699 No, neither of these Satisfactory
## 2700 No, neither of these Very good
## 2701 <NA> <NA>
## 2702 Yes, entry phone and locked gate/door Good
## 2703 No, neither of these Satisfactory
## 2704 No, neither of these Satisfactory
## 2705 No, neither of these Satisfactory
## 2706 Yes, entry phone and locked gate/door Satisfactory
## 2707 Yes, entry phone and locked gate/door Good
## 2708 No, neither of these Very good
## 2709 Yes, entry phone and locked gate/door Good
## 2710 Yes, entry phone and locked gate/door Good
## 2711 <NA> <NA>
## 2712 No, neither of these Good
## 2713 No, neither of these Good
## 2714 No, neither of these Satisfactory
## 2715 No, neither of these Satisfactory
## 2716 No, neither of these Good
## 2717 No, neither of these Good
## 2718 No, neither of these Good
## 2719 No, neither of these Very good
## 2720 No, neither of these Very good
## 2721 <NA> <NA>
## 2722 Yes, entry phone and locked gate/door Very good
## 2723 No, neither of these Very good
## 2724 No, neither of these Satisfactory
## 2725 No, neither of these Good
## 2726 No, neither of these Good
## 2727 Yes, entry phone and locked gate/door Good
## 2728 No, neither of these Satisfactory
## 2729 Yes, locked gate/door Good
## 2730 No, neither of these Good
## 2731 No, neither of these Satisfactory
## 2732 No, neither of these Very good
## 2733 No, neither of these Good
## 2734 Yes, entry phone and locked gate/door Satisfactory
## 2735 No, neither of these Good
## 2736 Yes, entry phone Satisfactory
## 2737 Yes, entry phone and locked gate/door Very good
## 2738 No, neither of these Good
## 2739 No, neither of these Good
## 2740 No, neither of these Good
## 2741 No, neither of these Satisfactory
## 2742 <NA> <NA>
## 2743 No, neither of these Satisfactory
## 2744 No, neither of these Good
## 2745 Yes, entry phone and locked gate/door Very good
## 2746 <NA> <NA>
## 2747 No, neither of these Satisfactory
## 2748 No, neither of these Satisfactory
## 2749 No, neither of these Very good
## 2750 No, neither of these Good
## 2751 No, neither of these Good
## 2752 No, neither of these Good
## 2753 Yes, entry phone and locked gate/door Good
## 2754 No, neither of these Good
## 2755 No, neither of these Good
## 2756 No, neither of these Satisfactory
## 2757 <NA> <NA>
## 2758 No, neither of these Good
## 2759 No, neither of these Good
## 2760 Yes, entry phone and locked gate/door Satisfactory
## 2761 No, neither of these Good
## 2762 No, neither of these Satisfactory
## 2763 Yes, entry phone Good
## 2764 <NA> <NA>
## 2765 No, neither of these Good
## 2766 No, neither of these Good
## 2767 No, neither of these Good
## 2768 Yes, entry phone and locked gate/door Satisfactory
## 2769 No, neither of these Good
## 2770 <NA> <NA>
## 2771 No, neither of these Good
## 2772 No, neither of these Satisfactory
## 2773 No, neither of these Very good
## 2774 No, neither of these Satisfactory
## 2775 Yes, entry phone and locked gate/door Satisfactory
## 2776 <NA> <NA>
## 2777 No, neither of these Very good
## 2778 No, neither of these Satisfactory
## 2779 <NA> <NA>
## 2780 No, neither of these Good
## 2781 No, neither of these Good
## 2782 No, neither of these Very good
## 2783 Yes, entry phone and locked gate/door Satisfactory
## 2784 Yes, entry phone Good
## 2785 No, neither of these Satisfactory
## 2786 No, neither of these Very good
## 2787 No, neither of these Good
## 2788 Yes, entry phone Very good
## 2789 <NA> <NA>
## 2790 Yes, entry phone and locked gate/door Good
## 2791 No, neither of these Good
## 2792 No, neither of these Good
## 2793 No, neither of these Good
## 2794 No, neither of these Good
## 2795 No, neither of these Good
## 2796 <NA> <NA>
## 2797 No, neither of these Satisfactory
## 2798 No, neither of these Good
## 2799 Yes, entry phone Satisfactory
## 2800 No, neither of these Satisfactory
## 2801 <NA> <NA>
## 2802 Yes, entry phone and locked gate/door Good
## 2803 No, neither of these Satisfactory
## 2804 No, neither of these Good
## 2805 No, neither of these Satisfactory
## 2806 No, neither of these Good
## 2807 <NA> <NA>
## 2808 No, neither of these Good
## 2809 No, neither of these Good
## 2810 Yes, entry phone Very good
## 2811 No, neither of these Very good
## 2812 No, neither of these Good
## 2813 <NA> <NA>
## 2814 No, neither of these Satisfactory
## 2815 No, neither of these Very good
## 2816 <NA> <NA>
## 2817 No, neither of these Very good
## 2818 Yes, entry phone and locked gate/door Good
## 2819 No, neither of these Good
## 2820 Yes, locked gate/door Bad
## 2821 <NA> <NA>
## 2822 No, neither of these Very good
## 2823 No, neither of these Satisfactory
## 2824 No, neither of these Good
## 2825 No, neither of these Good
## 2826 No, neither of these Good
## 2827 No, neither of these Very good
## 2828 No, neither of these Satisfactory
## 2829 No, neither of these Satisfactory
## 2830 No, neither of these Satisfactory
## 2831 <NA> <NA>
## 2832 No, neither of these Good
## 2833 Yes, entry phone Good
## 2834 No, neither of these Good
## 2835 No, neither of these Good
## 2836 <NA> Very good
## 2837 No, neither of these Satisfactory
## 2838 Yes, entry phone and locked gate/door Satisfactory
## 2839 No, neither of these Good
## 2840 <NA> Very good
## 2841 No, neither of these Good
## 2842 No, neither of these Very good
## 2843 <NA> <NA>
## 2844 No, neither of these Good
## 2845 Yes, entry phone Satisfactory
## 2846 No, neither of these Good
## 2847 No, neither of these Good
## 2848 <NA> <NA>
## 2849 No, neither of these Good
## 2850 No, neither of these Very good
## 2851 No, neither of these Bad
## 2852 Yes, entry phone and locked gate/door Very good
## 2853 No, neither of these Good
## 2854 <NA> <NA>
## 2855 <NA> <NA>
## 2856 No, neither of these Very good
## 2857 No, neither of these Satisfactory
## 2858 <NA> <NA>
## 2859 No, neither of these Very good
## 2860 No, neither of these Satisfactory
## 2861 No, neither of these Good
## 2862 No, neither of these Very good
## 2863 No, neither of these Satisfactory
## 2864 <NA> <NA>
## 2865 Yes, entry phone and locked gate/door Satisfactory
## 2866 No, neither of these Good
## 2867 No, neither of these Satisfactory
## 2868 No, neither of these Satisfactory
## 2869 No, neither of these Good
## 2870 <NA> <NA>
## 2871 <NA> <NA>
## 2872 No, neither of these Satisfactory
## 2873 No, neither of these Good
## 2874 No, neither of these Good
## 2875 No, neither of these Satisfactory
## 2876 No, neither of these Good
## 2877 Yes, entry phone and locked gate/door Very good
## 2878 <NA> <NA>
## 2879 No, neither of these Bad
## 2880 No, neither of these Good
## 2881 No, neither of these Very good
## 2882 No, neither of these Good
## 2883 No, neither of these Good
## 2884 No, neither of these Very good
## 2885 No, neither of these Good
## 2886 No, neither of these Good
## 2887 <NA> <NA>
## 2888 No, neither of these Good
## 2889 Yes, entry phone and locked gate/door Good
## 2890 Yes, entry phone and locked gate/door Satisfactory
## 2891 No, neither of these Very good
## 2892 Yes, locked gate/door Satisfactory
## 2893 No, neither of these Satisfactory
## 2894 Yes, entry phone and locked gate/door Good
## 2895 No, neither of these Good
## 2896 No, neither of these Good
## 2897 <NA> Satisfactory
## 2898 Yes, entry phone and locked gate/door Good
## 2899 <NA> <NA>
## 2900 Yes, entry phone Good
## 2901 <NA> <NA>
## 2902 Yes, entry phone and locked gate/door Good
## 2903 No, neither of these Good
## 2904 No, neither of these Satisfactory
## 2905 No, neither of these Good
## 2906 No, neither of these Good
## 2907 <NA> <NA>
## 2908 <NA> <NA>
## 2909 No, neither of these Good
## 2910 Yes, entry phone and locked gate/door Good
## 2911 <NA> <NA>
## 2912 No, neither of these Good
## 2913 Yes, entry phone and locked gate/door Good
## 2914 No, neither of these Good
## 2915 No, neither of these Good
## 2916 <NA> <NA>
## 2917 <NA> <NA>
## 2918 Yes, entry phone Good
## 2919 <NA> <NA>
## 2920 No, neither of these Satisfactory
## 2921 No, neither of these Good
## 2922 No, neither of these Very good
## 2923 Yes, entry phone and locked gate/door Good
## 2924 Yes, entry phone and locked gate/door Satisfactory
## 2925 <NA> <NA>
## 2926 No, neither of these Very good
## 2927 <NA> <NA>
## 2928 No, neither of these Satisfactory
## 2929 No, neither of these Very good
## 2930 No, neither of these Very good
## 2931 <NA> <NA>
## 2932 No, neither of these Good
## 2933 No, neither of these Bad
## 2934 No, neither of these Satisfactory
## 2935 No, neither of these Good
## 2936 <NA> <NA>
## 2937 No, neither of these Good
## 2938 No, neither of these Satisfactory
## 2939 No, neither of these Good
## 2940 <NA> <NA>
## 2941 No, neither of these Very good
## 2942 Yes, entry phone and locked gate/door Very good
## 2943 No, neither of these Satisfactory
## 2944 Yes, entry phone and locked gate/door Satisfactory
## 2945 Yes, entry phone and locked gate/door Good
## 2946 No, neither of these Good
## 2947 No, neither of these Satisfactory
## 2948 No, neither of these Very good
## 2949 Yes, entry phone Good
## 2950 Yes, entry phone and locked gate/door Good
## 2951 No, neither of these Very good
## 2952 No, neither of these Very good
## 2953 Yes, entry phone and locked gate/door Good
## 2954 No, neither of these Satisfactory
## 2955 No, neither of these Good
## 2956 <NA> <NA>
## 2957 No, neither of these Satisfactory
## 2958 No, neither of these Good
## 2959 <NA> <NA>
## 2960 No, neither of these Bad
## 2961 No, neither of these Good
## 2962 No, neither of these Good
## 2963 Yes, entry phone and locked gate/door Satisfactory
## 2964 No, neither of these Good
## 2965 No, neither of these Very good
## 2966 <NA> <NA>
## 2967 <NA> <NA>
## 2968 No, neither of these Very good
## 2969 No, neither of these Good
## 2970 Yes, entry phone and locked gate/door Satisfactory
## 2971 No, neither of these Very good
## 2972 <NA> <NA>
## 2973 No, neither of these Very good
## 2974 No, neither of these Good
## 2975 Yes, entry phone and locked gate/door Satisfactory
## 2976 No, neither of these Good
## 2977 No, neither of these Very bad
## 2978 <NA> <NA>
## 2979 <NA> <NA>
## 2980 <NA> <NA>
## 2981 No, neither of these Very good
## 2982 No, neither of these Good
## 2983 No, neither of these Good
## 2984 No, neither of these Satisfactory
## 2985 No, neither of these Satisfactory
## 2986 No, neither of these Satisfactory
## 2987 Yes, entry phone and locked gate/door Very bad
## 2988 <NA> <NA>
## 2989 No, neither of these Good
## 2990 No, neither of these Good
## 2991 No, neither of these Very good
## 2992 No, neither of these Good
## 2993 No, neither of these Good
## 2994 No, neither of these Good
## 2995 No, neither of these Good
## 2996 <NA> <NA>
## 2997 <NA> <NA>
## 2998 No, neither of these Good
## 2999 <NA> <NA>
## 3000 <NA> <NA>
## 3001 No, neither of these Good
## 3002 No, neither of these Good
## 3003 No, neither of these Good
## 3004 <NA> <NA>
## 3005 No, neither of these Satisfactory
## 3006 <NA> <NA>
## 3007 No, neither of these Satisfactory
## 3008 No, neither of these Good
## 3009 No, neither of these Good
## 3010 Yes, entry phone and locked gate/door Good
## 3011 No, neither of these Good
## 3012 No, neither of these Good
## 3013 No, neither of these Very good
## 3014 No, neither of these Good
## 3015 No, neither of these Good
## 3016 No, neither of these Very good
## 3017 No, neither of these Satisfactory
## 3018 No, neither of these Good
## 3019 <NA> <NA>
## 3020 <NA> <NA>
## 3021 Yes, entry phone and locked gate/door Good
## 3022 No, neither of these Satisfactory
## 3023 <NA> <NA>
## 3024 No, neither of these Very good
## 3025 Yes, entry phone Bad
## 3026 No, neither of these Very bad
## 3027 No, neither of these Good
## 3028 No, neither of these Satisfactory
## 3029 No, neither of these Bad
## 3030 No, neither of these Satisfactory
## 3031 No, neither of these Satisfactory
## 3032 No, neither of these Good
## 3033 No, neither of these Good
## 3034 No, neither of these Good
## 3035 No, neither of these Satisfactory
## 3036 No, neither of these Satisfactory
## 3037 No, neither of these Very good
## 3038 <NA> <NA>
## 3039 <NA> <NA>
## 3040 No, neither of these Good
## 3041 No, neither of these Good
## 3042 No, neither of these Good
## 3043 No, neither of these Very good
## 3044 Yes, entry phone and locked gate/door Very good
## 3045 No, neither of these Satisfactory
## 3046 No, neither of these Satisfactory
## 3047 <NA> <NA>
## 3048 No, neither of these Good
## 3049 No, neither of these Satisfactory
## 3050 No, neither of these Bad
## 3051 No, neither of these Good
## 3052 No, neither of these Satisfactory
## 3053 No, neither of these Bad
## 3054 No, neither of these Very good
## 3055 No, neither of these Satisfactory
## 3056 No, neither of these Very good
## 3057 No, neither of these Good
## 3058 No, neither of these Good
## 3059 No, neither of these Satisfactory
## 3060 No, neither of these Good
## 3061 Yes, entry phone Very good
## 3062 No, neither of these Good
## 3063 No, neither of these Satisfactory
## 3064 No, neither of these Very good
## 3065 Yes, entry phone Good
## 3066 No, neither of these Satisfactory
## 3067 No, neither of these Good
## 3068 Yes, entry phone Satisfactory
## 3069 No, neither of these Good
## 3070 No, neither of these Good
## 3071 No, neither of these Good
## 3072 No, neither of these Bad
## 3073 No, neither of these Satisfactory
## 3074 Yes, entry phone and locked gate/door Very good
## 3075 No, neither of these Satisfactory
## 3076 No, neither of these Satisfactory
## 3077 No, neither of these Good
## 3078 Yes, entry phone and locked gate/door Good
## 3079 <NA> <NA>
## 3080 No, neither of these Good
## 3081 No, neither of these Good
## 3082 No, neither of these Good
## 3083 No, neither of these Satisfactory
## 3084 <NA> <NA>
## 3085 <NA> <NA>
## 3086 No, neither of these Satisfactory
## 3087 <NA> <NA>
## 3088 No, neither of these Good
## 3089 No, neither of these Very good
## 3090 No, neither of these Satisfactory
## 3091 No, neither of these Satisfactory
## 3092 Yes, entry phone Very good
## 3093 No, neither of these Satisfactory
## 3094 No, neither of these Good
## 3095 <NA> <NA>
## 3096 No, neither of these Satisfactory
## 3097 Yes, entry phone and locked gate/door Very good
## 3098 <NA> <NA>
## 3099 No, neither of these Satisfactory
## 3100 No, neither of these Good
## 3101 Yes, entry phone and locked gate/door Very good
## 3102 No, neither of these Good
## 3103 No, neither of these Good
## 3104 Yes, locked gate/door Good
## 3105 No, neither of these Satisfactory
## 3106 No, neither of these Very good
## 3107 Yes, entry phone and locked gate/door Good
## 3108 No, neither of these Very good
## 3109 No, neither of these Good
## 3110 Yes, entry phone Satisfactory
## 3111 No, neither of these Satisfactory
## 3112 Yes, entry phone and locked gate/door Satisfactory
## 3113 No, neither of these Very good
## 3114 No, neither of these Satisfactory
## 3115 No, neither of these Good
## 3116 Yes, entry phone and locked gate/door Very good
## 3117 <NA> <NA>
## 3118 <NA> <NA>
## 3119 No, neither of these Good
## 3120 No, neither of these Very good
## 3121 No, neither of these Satisfactory
## 3122 Yes, entry phone Good
## 3123 No, neither of these Good
## 3124 <NA> <NA>
## 3125 No, neither of these Satisfactory
## 3126 No, neither of these Good
## 3127 No, neither of these Good
## 3128 <NA> <NA>
## 3129 No, neither of these Satisfactory
## 3130 No, neither of these Good
## 3131 No, neither of these Satisfactory
## 3132 <NA> <NA>
## 3133 Yes, entry phone Satisfactory
## 3134 No, neither of these Satisfactory
## 3135 No, neither of these Good
## 3136 No, neither of these Good
## 3137 <NA> <NA>
## 3138 <NA> <NA>
## 3139 No, neither of these Very good
## 3140 No, neither of these Satisfactory
## 3141 No, neither of these Satisfactory
## 3142 No, neither of these Very good
## 3143 No, neither of these Good
## 3144 Yes, locked gate/door Very good
## 3145 Yes, entry phone Satisfactory
## 3146 No, neither of these Good
## 3147 No, neither of these Good
## 3148 No, neither of these Good
## 3149 No, neither of these Very good
## 3150 No, neither of these Satisfactory
## 3151 No, neither of these Good
## 3152 <NA> <NA>
## 3153 No, neither of these Good
## 3154 No, neither of these Good
## 3155 No, neither of these Good
## 3156 No, neither of these Good
## 3157 <NA> <NA>
## 3158 No, neither of these Good
## 3159 No, neither of these Good
## 3160 No, neither of these Satisfactory
## 3161 No, neither of these Good
## 3162 Yes, entry phone Satisfactory
## 3163 No, neither of these Satisfactory
## 3164 No, neither of these Satisfactory
## 3165 <NA> <NA>
## 3166 No, neither of these Good
## 3167 No, neither of these Good
## 3168 No, neither of these Good
## 3169 No, neither of these Good
## 3170 No, neither of these Satisfactory
## 3171 No, neither of these Good
## 3172 No, neither of these Bad
## 3173 <NA> <NA>
## 3174 No, neither of these Very good
## 3175 <NA> <NA>
## 3176 No, neither of these Satisfactory
## 3177 No, neither of these Good
## 3178 No, neither of these Very good
## 3179 No, neither of these Satisfactory
## 3180 No, neither of these Good
## 3181 No, neither of these Good
## 3182 No, neither of these Very good
## 3183 No, neither of these Good
## 3184 Yes, entry phone and locked gate/door Very good
## 3185 No, neither of these Good
## 3186 No, neither of these Very good
## 3187 No, neither of these Satisfactory
## 3188 No, neither of these Good
## 3189 No, neither of these Good
## 3190 <NA> <NA>
## 3191 No, neither of these Good
## 3192 No, neither of these Good
## 3193 Yes, entry phone and locked gate/door Good
## 3194 No, neither of these Good
## 3195 <NA> <NA>
## 3196 <NA> <NA>
## 3197 Yes, entry phone Satisfactory
## 3198 <NA> <NA>
## 3199 No, neither of these Very good
## 3200 Yes, entry phone and locked gate/door Satisfactory
## 3201 Yes, locked gate/door Good
## 3202 No, neither of these Satisfactory
## 3203 No, neither of these Good
## 3204 No, neither of these Satisfactory
## 3205 No, neither of these Very good
## 3206 Yes, entry phone and locked gate/door Satisfactory
## 3207 No, neither of these Good
## 3208 No, neither of these Good
## 3209 <NA> <NA>
## 3210 No, neither of these Bad
## 3211 No, neither of these Satisfactory
## 3212 No, neither of these Very good
## 3213 Yes, entry phone and locked gate/door Satisfactory
## 3214 No, neither of these Very good
## 3215 No, neither of these Satisfactory
## 3216 No, neither of these Satisfactory
## 3217 Yes, entry phone Satisfactory
## 3218 Yes, entry phone and locked gate/door Good
## 3219 No, neither of these Very good
## 3220 <NA> <NA>
## 3221 No, neither of these Good
## 3222 Yes, entry phone and locked gate/door Very good
## 3223 No, neither of these Good
## 3224 <NA> <NA>
## 3225 No, neither of these Satisfactory
## 3226 No, neither of these Bad
## 3227 No, neither of these Very good
## 3228 Yes, locked gate/door Good
## 3229 No, neither of these Bad
## 3230 Yes, entry phone and locked gate/door Good
## 3231 No, neither of these Good
## 3232 No, neither of these Good
## 3233 No, neither of these Very good
## 3234 Yes, entry phone and locked gate/door Satisfactory
## 3235 No, neither of these Satisfactory
## 3236 No, neither of these Satisfactory
## 3237 No, neither of these Very good
## 3238 <NA> <NA>
## 3239 No, neither of these Very good
## 3240 No, neither of these Satisfactory
## 3241 No, neither of these Satisfactory
## 3242 <NA> <NA>
## 3243 No, neither of these Satisfactory
## 3244 <NA> <NA>
## 3245 No, neither of these Satisfactory
## 3246 <NA> <NA>
## 3247 No, neither of these Good
## 3248 <NA> <NA>
## 3249 No, neither of these Good
## 3250 <NA> <NA>
## 3251 Yes, entry phone and locked gate/door Satisfactory
## 3252 No, neither of these Very good
## 3253 No, neither of these Good
## 3254 No, neither of these Good
## 3255 Yes, entry phone and locked gate/door Satisfactory
## 3256 No, neither of these Satisfactory
## 3257 No, neither of these Good
## 3258 No, neither of these Satisfactory
## 3259 No, neither of these Good
## 3260 <NA> <NA>
## 3261 No, neither of these Very good
## 3262 No, neither of these Satisfactory
## 3263 No, neither of these Good
## 3264 No, neither of these Satisfactory
## 3265 No, neither of these Good
## 3266 No, neither of these Bad
## 3267 No, neither of these Satisfactory
## 3268 No, neither of these Good
## 3269 No, neither of these Satisfactory
## 3270 <NA> <NA>
## 3271 Yes, entry phone and locked gate/door Very bad
## 3272 No, neither of these Good
## 3273 No, neither of these Very good
## 3274 Yes, entry phone and locked gate/door Good
## 3275 Yes, entry phone and locked gate/door Good
## 3276 No, neither of these Satisfactory
## 3277 No, neither of these Satisfactory
## 3278 No, neither of these Good
## 3279 No, neither of these Good
## 3280 No, neither of these Satisfactory
## 3281 No, neither of these Good
## 3282 No, neither of these Good
## 3283 No, neither of these Good
## 3284 No, neither of these Good
## 3285 No, neither of these Satisfactory
## 3286 No, neither of these Good
## 3287 No, neither of these Satisfactory
## 3288 No, neither of these Good
## 3289 No, neither of these Good
## 3290 Yes, entry phone and locked gate/door Very good
## 3291 Yes, entry phone and locked gate/door Very good
## 3292 <NA> <NA>
## 3293 No, neither of these Good
## 3294 Yes, entry phone Satisfactory
## 3295 No, neither of these Satisfactory
## 3296 No, neither of these Very good
## 3297 No, neither of these Good
## 3298 No, neither of these Good
## 3299 Yes, entry phone and locked gate/door Good
## 3300 No, neither of these Good
## 3301 <NA> <NA>
## 3302 No, neither of these Satisfactory
## 3303 No, neither of these Good
## 3304 No, neither of these Good
## 3305 No, neither of these Good
## 3306 No, neither of these Very good
## 3307 No, neither of these Very bad
## 3308 <NA> <NA>
## 3309 No, neither of these Good
## 3310 No, neither of these Good
## 3311 <NA> <NA>
## 3312 Yes, entry phone and locked gate/door Good
## 3313 No, neither of these Very good
## 3314 No, neither of these Good
## 3315 No, neither of these Satisfactory
## 3316 <NA> <NA>
## 3317 No, neither of these Satisfactory
## 3318 Yes, entry phone Good
## 3319 No, neither of these Good
## 3320 No, neither of these Good
## 3321 No, neither of these Good
## 3322 Yes, entry phone Very good
## 3323 No, neither of these Satisfactory
## 3324 No, neither of these Good
## 3325 No, neither of these Very good
## 3326 No, neither of these Very good
## 3327 No, neither of these Very good
## 3328 Yes, entry phone and locked gate/door Satisfactory
## 3329 No, neither of these Very good
## 3330 No, neither of these Good
## 3331 Yes, entry phone Satisfactory
## 3332 Yes, entry phone and locked gate/door Good
## 3333 No, neither of these Good
## 3334 No, neither of these Good
## 3335 No, neither of these Good
## 3336 No, neither of these Good
## 3337 Yes, entry phone and locked gate/door Good
## 3338 <NA> <NA>
## 3339 <NA> <NA>
## 3340 <NA> <NA>
## 3341 No, neither of these Good
## 3342 Yes, entry phone and locked gate/door Good
## 3343 <NA> <NA>
## 3344 Yes, entry phone Good
## 3345 No, neither of these Good
## 3346 No, neither of these Good
## 3347 <NA> <NA>
## 3348 No, neither of these Satisfactory
## 3349 No, neither of these Good
## 3350 Yes, entry phone and locked gate/door Satisfactory
## 3351 No, neither of these Satisfactory
## 3352 No, neither of these Good
## 3353 No, neither of these Very good
## 3354 No, neither of these Very good
## 3355 No, neither of these Very good
## 3356 No, neither of these Good
## 3357 No, neither of these Good
## 3358 No, neither of these Very bad
## 3359 <NA> <NA>
## 3360 <NA> <NA>
## 3361 No, neither of these Good
## 3362 No, neither of these Satisfactory
## 3363 No, neither of these Bad
## 3364 No, neither of these Satisfactory
## 3365 No, neither of these Good
## 3366 <NA> <NA>
## 3367 <NA> <NA>
## 3368 No, neither of these Satisfactory
## 3369 No, neither of these Good
## 3370 Yes, entry phone and locked gate/door Satisfactory
## 3371 No, neither of these Very good
## 3372 <NA> <NA>
## 3373 No, neither of these Good
## 3374 <NA> <NA>
## 3375 No, neither of these Good
## 3376 No, neither of these Very good
## 3377 No, neither of these Good
## 3378 No, neither of these Good
## 3379 No, neither of these Satisfactory
## 3380 Yes, entry phone and locked gate/door Bad
## 3381 No, neither of these Good
## 3382 No, neither of these Good
## 3383 <NA> <NA>
## 3384 Yes, entry phone and locked gate/door Satisfactory
## 3385 No, neither of these Very good
## 3386 No, neither of these Good
## 3387 No, neither of these Good
## 3388 No, neither of these Good
## 3389 No, neither of these Good
## 3390 Yes, entry phone and locked gate/door Good
## 3391 No, neither of these Good
## 3392 No, neither of these Good
## 3393 Yes, entry phone and locked gate/door Bad
## 3394 No, neither of these Satisfactory
## 3395 No, neither of these Good
## 3396 <NA> <NA>
## 3397 No, neither of these Very good
## 3398 No, neither of these Very good
## 3399 No, neither of these Very good
## 3400 No, neither of these Good
## 3401 <NA> <NA>
## 3402 Yes, entry phone Good
## 3403 No, neither of these Good
## 3404 Yes, entry phone and locked gate/door Very good
## 3405 No, neither of these Good
## 3406 No, neither of these Good
## 3407 No, neither of these Good
## 3408 No, neither of these Very good
## 3409 No, neither of these Very good
## 3410 Yes, entry phone and locked gate/door Good
## 3411 <NA> <NA>
## 3412 No, neither of these Good
## 3413 No, neither of these Good
## 3414 No, neither of these Satisfactory
## 3415 No, neither of these Satisfactory
## 3416 <NA> <NA>
## 3417 No, neither of these Satisfactory
## 3418 <NA> <NA>
## 3419 <NA> <NA>
## 3420 No, neither of these Satisfactory
## 3421 Yes, entry phone Satisfactory
## 3422 No, neither of these Very good
## 3423 No, neither of these Good
## 3424 No, neither of these Satisfactory
## 3425 No, neither of these Good
## 3426 No, neither of these Very good
## 3427 No, neither of these Good
## 3428 Yes, entry phone Good
## 3429 No, neither of these Very good
## 3430 <NA> <NA>
## 3431 No, neither of these Good
## 3432 No, neither of these Satisfactory
## 3433 No, neither of these Good
## 3434 No, neither of these Satisfactory
## 3435 No, neither of these Good
## 3436 No, neither of these Bad
## 3437 No, neither of these Satisfactory
## 3438 No, neither of these Good
## 3439 No, neither of these Satisfactory
## 3440 <NA> <NA>
## 3441 Yes, entry phone and locked gate/door Satisfactory
## 3442 <NA> <NA>
## 3443 No, neither of these Good
## 3444 <NA> <NA>
## 3445 No, neither of these Very good
## 3446 No, neither of these Good
## 3447 Yes, entry phone and locked gate/door Satisfactory
## 3448 No, neither of these Good
## 3449 No, neither of these Satisfactory
## 3450 No, neither of these Satisfactory
## 3451 No, neither of these Very good
## 3452 No, neither of these Satisfactory
## 3453 <NA> <NA>
## 3454 No, neither of these Good
## 3455 No, neither of these Bad
## 3456 No, neither of these Satisfactory
## 3457 No, neither of these Satisfactory
## 3458 No, neither of these Satisfactory
## 3459 Yes, entry phone and locked gate/door Good
## 3460 No, neither of these Good
## 3461 No, neither of these Satisfactory
## 3462 No, neither of these Very good
## 3463 <NA> <NA>
## 3464 No, neither of these Good
## 3465 <NA> <NA>
## 3466 No, neither of these Good
## 3467 No, neither of these Good
## 3468 No, neither of these Good
## 3469 <NA> <NA>
## 3470 <NA> <NA>
## 3471 Yes, entry phone and locked gate/door Satisfactory
## 3472 <NA> <NA>
## 3473 No, neither of these Satisfactory
## 3474 No, neither of these Good
## 3475 No, neither of these Good
## 3476 Yes, locked gate/door Satisfactory
## 3477 <NA> <NA>
## 3478 No, neither of these Satisfactory
## 3479 Yes, locked gate/door Good
## 3480 No, neither of these Good
## 3481 No, neither of these Very bad
## 3482 No, neither of these Good
## 3483 Yes, entry phone and locked gate/door Satisfactory
## 3484 No, neither of these Bad
## 3485 No, neither of these Satisfactory
## 3486 No, neither of these Good
## 3487 No, neither of these Good
## 3488 No, neither of these Good
## 3489 <NA> <NA>
## 3490 Yes, entry phone and locked gate/door Very good
## 3491 Yes, entry phone and locked gate/door Good
## 3492 No, neither of these Bad
## 3493 No, neither of these Good
## 3494 No, neither of these Satisfactory
## 3495 No, neither of these Bad
## 3496 No, neither of these Satisfactory
## 3497 No, neither of these Very good
## 3498 No, neither of these Bad
## 3499 <NA> <NA>
## 3500 <NA> <NA>
## 3501 No, neither of these Good
## 3502 No, neither of these Good
## 3503 <NA> <NA>
## 3504 No, neither of these Good
## 3505 No, neither of these Satisfactory
## 3506 No, neither of these Good
## 3507 No, neither of these Satisfactory
## 3508 <NA> <NA>
## 3509 <NA> <NA>
## 3510 No, neither of these Good
## 3511 No, neither of these Satisfactory
## 3512 No, neither of these Bad
## 3513 Yes, entry phone and locked gate/door Satisfactory
## 3514 No, neither of these Very good
## 3515 No, neither of these Good
## 3516 No, neither of these Very good
## 3517 <NA> <NA>
## 3518 No, neither of these Good
## 3519 Yes, entry phone and locked gate/door Satisfactory
## 3520 Yes, entry phone Good
## 3521 No, neither of these Good
## 3522 No, neither of these Satisfactory
## 3523 No, neither of these Good
## 3524 No, neither of these Good
## 3525 No, neither of these Good
## 3526 No, neither of these Satisfactory
## 3527 <NA> <NA>
## 3528 No, neither of these Good
## 3529 No, neither of these Very good
## 3530 No, neither of these Satisfactory
## 3531 No, neither of these Very good
## 3532 No, neither of these Satisfactory
## 3533 No, neither of these Good
## 3534 No, neither of these Good
## 3535 Yes, entry phone and locked gate/door Very good
## 3536 No, neither of these Satisfactory
## 3537 <NA> <NA>
## 3538 <NA> <NA>
## 3539 No, neither of these Good
## 3540 No, neither of these Very good
## 3541 No, neither of these Good
## 3542 <NA> <NA>
## 3543 No, neither of these Good
## 3544 No, neither of these Good
## 3545 No, neither of these Satisfactory
## 3546 No, neither of these Good
## 3547 No, neither of these Satisfactory
## 3548 <NA> <NA>
## 3549 <NA> <NA>
## 3550 No, neither of these Good
## 3551 Yes, entry phone and locked gate/door Good
## 3552 No, neither of these Satisfactory
## 3553 <NA> <NA>
## 3554 No, neither of these Satisfactory
## 3555 Yes, entry phone Satisfactory
## 3556 Yes, entry phone and locked gate/door Satisfactory
## 3557 No, neither of these Good
## 3558 No, neither of these Good
## 3559 <NA> <NA>
## 3560 Yes, entry phone and locked gate/door Good
## 3561 <NA> <NA>
## 3562 No, neither of these Satisfactory
## 3563 No, neither of these Good
## 3564 <NA> <NA>
## 3565 Yes, entry phone and locked gate/door Satisfactory
## 3566 No, neither of these Good
## 3567 No, neither of these Satisfactory
## 3568 Yes, entry phone and locked gate/door Satisfactory
## 3569 Yes, entry phone Satisfactory
## 3570 No, neither of these Good
## 3571 No, neither of these Very good
## 3572 No, neither of these Bad
## 3573 No, neither of these Good
## 3574 Yes, entry phone and locked gate/door Good
## 3575 <NA> <NA>
## 3576 No, neither of these Very good
## 3577 No, neither of these Good
## 3578 No, neither of these Satisfactory
## 3579 Yes, entry phone and locked gate/door Good
## 3580 No, neither of these Good
## 3581 <NA> <NA>
## 3582 No, neither of these Good
## 3583 No, neither of these Very good
## 3584 No, neither of these Very good
## 3585 Yes, entry phone and locked gate/door Good
## 3586 Yes, entry phone and locked gate/door Good
## 3587 No, neither of these Satisfactory
## 3588 No, neither of these Good
## 3589 No, neither of these Good
## 3590 No, neither of these Good
## 3591 No, neither of these Good
## 3592 No, neither of these Satisfactory
## 3593 No, neither of these Good
## 3594 No, neither of these Good
## 3595 No, neither of these Good
## 3596 No, neither of these Good
## 3597 No, neither of these Good
## 3598 No, neither of these Satisfactory
## 3599 No, neither of these Good
## 3600 No, neither of these Good
## 3601 No, neither of these Good
## 3602 No, neither of these Good
## 3603 No, neither of these Good
## 3604 No, neither of these Good
## 3605 No, neither of these Satisfactory
## 3606 No, neither of these Good
## 3607 Yes, entry phone and locked gate/door Satisfactory
## 3608 No, neither of these Good
## 3609 No, neither of these Bad
## 3610 No, neither of these Satisfactory
## 3611 No, neither of these Good
## 3612 No, neither of these Very good
## 3613 Yes, entry phone and locked gate/door Good
## 3614 No, neither of these Satisfactory
## 3615 <NA> <NA>
## 3616 No, neither of these Good
## 3617 No, neither of these Very good
## 3618 No, neither of these Good
## 3619 No, neither of these Good
## 3620 No, neither of these Good
## 3621 No, neither of these Good
## 3622 No, neither of these Satisfactory
## 3623 No, neither of these Good
## 3624 No, neither of these Good
## 3625 Yes, entry phone and locked gate/door Very good
## 3626 <NA> <NA>
## 3627 No, neither of these Very good
## 3628 <NA> <NA>
## 3629 No, neither of these Good
## 3630 No, neither of these Satisfactory
## 3631 No, neither of these Good
## 3632 No, neither of these Good
## 3633 No, neither of these Very good
## 3634 No, neither of these Satisfactory
## 3635 Yes, entry phone and locked gate/door Very good
## 3636 Yes, entry phone Satisfactory
## 3637 <NA> <NA>
## 3638 <NA> <NA>
## 3639 No, neither of these Satisfactory
## 3640 No, neither of these Good
## 3641 <NA> <NA>
## 3642 <NA> <NA>
## 3643 No, neither of these Good
## 3644 No, neither of these Good
## 3645 No, neither of these Very good
## 3646 No, neither of these Good
## 3647 Yes, entry phone and locked gate/door Bad
## 3648 No, neither of these Very good
## 3649 <NA> <NA>
## 3650 No, neither of these Good
## 3651 Yes, entry phone and locked gate/door Good
## 3652 No, neither of these Good
## 3653 No, neither of these Very good
## 3654 Yes, entry phone and locked gate/door Good
## 3655 Yes, entry phone and locked gate/door Good
## 3656 No, neither of these Good
## 3657 <NA> <NA>
## 3658 No, neither of these Bad
## 3659 No, neither of these Satisfactory
## 3660 No, neither of these Satisfactory
## 3661 Yes, locked gate/door Satisfactory
## 3662 No, neither of these Very good
## 3663 No, neither of these Good
## 3664 No, neither of these Satisfactory
## 3665 <NA> <NA>
## 3666 No, neither of these Bad
## 3667 No, neither of these Satisfactory
## 3668 Yes, entry phone and locked gate/door Satisfactory
## 3669 No, neither of these Good
## 3670 Yes, entry phone Good
## 3671 No, neither of these Very good
## 3672 No, neither of these Good
## 3673 Yes, entry phone Very good
## 3674 <NA> <NA>
## 3675 No, neither of these Very good
## 3676 No, neither of these Good
## 3677 Yes, entry phone Very good
## 3678 No, neither of these Satisfactory
## 3679 No, neither of these Good
## 3680 Yes, entry phone and locked gate/door Satisfactory
## 3681 Yes, entry phone Good
## 3682 <NA> <NA>
## 3683 No, neither of these Satisfactory
## 3684 No, neither of these Good
## 3685 Yes, entry phone and locked gate/door Satisfactory
## 3686 No, neither of these Satisfactory
## 3687 No, neither of these Satisfactory
## 3688 No, neither of these Very bad
## 3689 <NA> <NA>
## 3690 No, neither of these Good
## 3691 Yes, locked gate/door Good
## 3692 No, neither of these Bad
## 3693 No, neither of these Satisfactory
## 3694 <NA> <NA>
## 3695 No, neither of these Bad
## 3696 No, neither of these Satisfactory
## 3697 No, neither of these Satisfactory
## 3698 No, neither of these Good
## 3699 <NA> <NA>
## 3700 No, neither of these Satisfactory
## 3701 No, neither of these Good
## 3702 No, neither of these Good
## 3703 No, neither of these Satisfactory
## 3704 No, neither of these Satisfactory
## 3705 Yes, entry phone and locked gate/door Satisfactory
## 3706 <NA> <NA>
## 3707 Yes, entry phone and locked gate/door Good
## 3708 No, neither of these Satisfactory
## 3709 No, neither of these Good
## 3710 No, neither of these Very good
## 3711 No, neither of these Good
## 3712 No, neither of these Very good
## 3713 Yes, entry phone Good
## 3714 Yes, entry phone and locked gate/door Good
## 3715 Yes, entry phone Good
## 3716 Yes, entry phone and locked gate/door Very good
## 3717 <NA> <NA>
## 3718 No, neither of these Good
## 3719 No, neither of these Satisfactory
## 3720 No, neither of these Satisfactory
## 3721 No, neither of these Good
## 3722 Yes, entry phone Good
## 3723 No, neither of these Satisfactory
## 3724 No, neither of these Bad
## 3725 No, neither of these Good
## 3726 No, neither of these Satisfactory
## 3727 <NA> <NA>
## 3728 No, neither of these Good
## 3729 <NA> <NA>
## 3730 Yes, entry phone and locked gate/door Satisfactory
## 3731 No, neither of these Satisfactory
## 3732 No, neither of these Satisfactory
## 3733 Yes, entry phone Very good
## 3734 No, neither of these Satisfactory
## 3735 No, neither of these Satisfactory
## 3736 No, neither of these Good
## 3737 No, neither of these Satisfactory
## 3738 Yes, entry phone Very good
## 3739 No, neither of these Good
## 3740 Yes, entry phone and locked gate/door Very good
## 3741 No, neither of these Good
## 3742 No, neither of these Good
## 3743 <NA> <NA>
## 3744 <NA> <NA>
## 3745 No, neither of these Bad
## 3746 Yes, entry phone Good
## 3747 Yes, entry phone and locked gate/door Very good
## 3748 No, neither of these Satisfactory
## 3749 Yes, entry phone and locked gate/door Good
## 3750 Yes, entry phone and locked gate/door Good
## 3751 No, neither of these Good
## 3752 No, neither of these Satisfactory
## 3753 No, neither of these Good
## 3754 No, neither of these Satisfactory
## 3755 Yes, entry phone and locked gate/door Satisfactory
## 3756 No, neither of these Very good
## 3757 No, neither of these Very good
## 3758 No, neither of these Good
## 3759 <NA> <NA>
## 3760 No, neither of these Good
## 3761 No, neither of these Good
## 3762 No, neither of these Satisfactory
## 3763 No, neither of these Satisfactory
## 3764 No, neither of these Satisfactory
## 3765 No, neither of these Bad
## 3766 No, neither of these Good
## 3767 No, neither of these Good
## 3768 No, neither of these Very good
## 3769 No, neither of these Satisfactory
## 3770 No, neither of these Very good
## 3771 No, neither of these Good
## 3772 No, neither of these Good
## 3773 No, neither of these Bad
## 3774 No, neither of these Good
## 3775 Yes, entry phone Good
## 3776 <NA> <NA>
## 3777 Yes, locked gate/door Satisfactory
## 3778 No, neither of these Satisfactory
## 3779 No, neither of these Satisfactory
## 3780 No, neither of these Satisfactory
## 3781 No, neither of these Good
## 3782 <NA> Good
## 3783 No, neither of these Satisfactory
## 3784 No, neither of these Satisfactory
## 3785 <NA> <NA>
## 3786 No, neither of these Good
## 3787 No, neither of these Bad
## 3788 No, neither of these Good
## 3789 Yes, entry phone and locked gate/door Satisfactory
## 3790 Yes, entry phone Satisfactory
## 3791 No, neither of these Good
## 3792 No, neither of these Very good
## 3793 No, neither of these Bad
## 3794 No, neither of these Satisfactory
## 3795 No, neither of these Very good
## 3796 No, neither of these Good
## 3797 No, neither of these Very good
## 3798 Yes, entry phone Very good
## 3799 Yes, entry phone and locked gate/door Good
## 3800 No, neither of these Satisfactory
## 3801 No, neither of these Satisfactory
## 3802 No, neither of these Satisfactory
## 3803 No, neither of these Satisfactory
## 3804 <NA> <NA>
## 3805 No, neither of these Bad
## 3806 Yes, entry phone and locked gate/door Satisfactory
## 3807 No, neither of these Satisfactory
## 3808 No, neither of these Very good
## 3809 No, neither of these Good
## 3810 <NA> <NA>
## 3811 <NA> <NA>
## 3812 No, neither of these Very good
## 3813 No, neither of these Good
## 3814 No, neither of these Good
## 3815 No, neither of these Satisfactory
## 3816 <NA> <NA>
## 3817 <NA> <NA>
## 3818 No, neither of these Bad
## 3819 No, neither of these Satisfactory
## 3820 No, neither of these Satisfactory
## 3821 <NA> <NA>
## 3822 No, neither of these Good
## 3823 No, neither of these Good
## 3824 No, neither of these Good
## 3825 Yes, entry phone Very good
## 3826 No, neither of these Very good
## 3827 No, neither of these Bad
## 3828 No, neither of these Good
## 3829 <NA> <NA>
## 3830 No, neither of these Satisfactory
## 3831 No, neither of these Very good
## 3832 No, neither of these Very good
## 3833 <NA> <NA>
## 3834 No, neither of these Good
## 3835 No, neither of these Good
## 3836 No, neither of these Satisfactory
## 3837 <NA> <NA>
## 3838 No, neither of these Good
## 3839 Yes, entry phone and locked gate/door Good
## 3840 Yes, entry phone and locked gate/door Good
## 3841 No, neither of these Good
## 3842 <NA> <NA>
## 3843 <NA> <NA>
## 3844 Yes, entry phone and locked gate/door Satisfactory
## 3845 No, neither of these Very good
## 3846 Yes, entry phone and locked gate/door Good
## 3847 No, neither of these Good
## 3848 No, neither of these Good
## 3849 No, neither of these Good
## 3850 <NA> <NA>
## 3851 No, neither of these Good
## 3852 No, neither of these Good
## 3853 Yes, entry phone Bad
## 3854 No, neither of these Good
## 3855 No, neither of these Good
## 3856 No, neither of these Good
## 3857 Yes, entry phone Good
## 3858 <NA> <NA>
## 3859 Yes, entry phone Satisfactory
## 3860 No, neither of these Good
## 3861 No, neither of these Satisfactory
## 3862 Yes, entry phone and locked gate/door Satisfactory
## 3863 No, neither of these Satisfactory
## 3864 No, neither of these Satisfactory
## 3865 No, neither of these Satisfactory
## 3866 Yes, entry phone and locked gate/door Good
## 3867 Yes, entry phone Good
## 3868 No, neither of these Good
## 3869 Yes, entry phone Satisfactory
## 3870 <NA> <NA>
## 3871 No, neither of these Good
## 3872 Yes, entry phone and locked gate/door Satisfactory
## 3873 No, neither of these Good
## 3874 <NA> <NA>
## 3875 No, neither of these Very good
## 3876 No, neither of these Satisfactory
## 3877 No, neither of these Good
## 3878 No, neither of these Good
## 3879 No, neither of these Very good
## 3880 No, neither of these Very good
## 3881 No, neither of these Satisfactory
## 3882 No, neither of these Satisfactory
## 3883 No, neither of these Satisfactory
## 3884 <NA> Bad
## 3885 No, neither of these Good
## 3886 No, neither of these Good
## 3887 Yes, entry phone and locked gate/door Very good
## 3888 No, neither of these Satisfactory
## 3889 No, neither of these Good
## 3890 <NA> <NA>
## 3891 No, neither of these Good
## 3892 Yes, locked gate/door Very good
## 3893 <NA> <NA>
## 3894 No, neither of these <NA>
## 3895 No, neither of these Good
## 3896 No, neither of these Satisfactory
## 3897 No, neither of these Satisfactory
## 3898 No, neither of these Very good
## 3899 No, neither of these Satisfactory
## 3900 No, neither of these Good
## 3901 No, neither of these Good
## 3902 No, neither of these Very good
## 3903 Yes, entry phone Satisfactory
## 3904 No, neither of these Satisfactory
## 3905 No, neither of these Good
## 3906 No, neither of these Good
## 3907 Yes, entry phone and locked gate/door Satisfactory
## 3908 No, neither of these Good
## 3909 Yes, entry phone and locked gate/door Good
## 3910 No, neither of these Good
## 3911 No, neither of these Bad
## 3912 No, neither of these Good
## 3913 No, neither of these Good
## 3914 No, neither of these Very good
## 3915 <NA> <NA>
## 3916 Yes, entry phone and locked gate/door Good
## 3917 Yes, entry phone and locked gate/door Good
## 3918 No, neither of these Satisfactory
## 3919 No, neither of these Bad
## 3920 No, neither of these Very good
## 3921 No, neither of these Satisfactory
## 3922 No, neither of these Satisfactory
## 3923 No, neither of these Good
## 3924 <NA> <NA>
## 3925 No, neither of these Satisfactory
## 3926 <NA> <NA>
## 3927 Yes, locked gate/door Good
## 3928 No, neither of these Satisfactory
## 3929 No, neither of these Good
## 3930 No, neither of these Good
## 3931 <NA> <NA>
## 3932 No, neither of these Satisfactory
## 3933 No, neither of these Satisfactory
## 3934 Yes, entry phone and locked gate/door Satisfactory
## 3935 No, neither of these Good
## 3936 <NA> <NA>
## 3937 No, neither of these Satisfactory
## 3938 No, neither of these Good
## 3939 <NA> <NA>
## 3940 Yes, entry phone Satisfactory
## 3941 Yes, entry phone and locked gate/door Good
## 3942 No, neither of these Good
## 3943 Yes, entry phone and locked gate/door Very good
## 3944 Yes, entry phone and locked gate/door Good
## 3945 Yes, entry phone and locked gate/door Good
## 3946 No, neither of these Good
## 3947 <NA> <NA>
## 3948 No, neither of these Good
## 3949 No, neither of these Very good
## 3950 No, neither of these Satisfactory
## 3951 No, neither of these Good
## 3952 No, neither of these Satisfactory
## 3953 Yes, entry phone and locked gate/door Satisfactory
## 3954 No, neither of these Very good
## 3955 <NA> <NA>
## 3956 No, neither of these Very good
## 3957 No, neither of these Very bad
## 3958 No, neither of these Satisfactory
## 3959 No, neither of these Good
## 3960 No, neither of these Satisfactory
## 3961 Yes, entry phone and locked gate/door Satisfactory
## 3962 No, neither of these Good
## 3963 No, neither of these Satisfactory
## 3964 No, neither of these Satisfactory
## 3965 No, neither of these Satisfactory
## 3966 <NA> <NA>
## 3967 No, neither of these Good
## 3968 No, neither of these Very good
## 3969 Yes, entry phone Satisfactory
## 3970 No, neither of these Satisfactory
## 3971 No, neither of these Good
## 3972 No, neither of these Very good
## 3973 Yes, entry phone and locked gate/door Bad
## 3974 Yes, entry phone and locked gate/door Very good
## 3975 No, neither of these Very good
## 3976 No, neither of these Good
## 3977 No, neither of these Good
## 3978 No, neither of these Good
## 3979 Yes, entry phone and locked gate/door Good
## 3980 No, neither of these Good
## 3981 No, neither of these Good
## 3982 No, neither of these Good
## 3983 No, neither of these Good
## 3984 No, neither of these Good
## 3985 Yes, entry phone Satisfactory
## 3986 No, neither of these Good
## 3987 No, neither of these Good
## 3988 <NA> <NA>
## 3989 No, neither of these Very good
## 3990 No, neither of these Good
## 3991 <NA> <NA>
## 3992 Yes, entry phone and locked gate/door Very good
## 3993 No, neither of these Satisfactory
## 3994 No, neither of these Satisfactory
## 3995 No, neither of these Bad
## 3996 No, neither of these Satisfactory
## 3997 No, neither of these Good
## 3998 Yes, entry phone and locked gate/door Good
## 3999 No, neither of these Very good
## 4000 No, neither of these Good
## 4001 No, neither of these Satisfactory
## 4002 No, neither of these Good
## 4003 No, neither of these Satisfactory
## 4004 Yes, entry phone and locked gate/door Very good
## 4005 No, neither of these Bad
## 4006 No, neither of these Satisfactory
## 4007 Yes, entry phone Satisfactory
## 4008 No, neither of these Satisfactory
## 4009 No, neither of these Good
## 4010 Yes, entry phone Good
## 4011 No, neither of these Very good
## 4012 No, neither of these Good
## 4013 No, neither of these Satisfactory
## 4014 No, neither of these Good
## 4015 No, neither of these Satisfactory
## 4016 Yes, entry phone and locked gate/door Satisfactory
## 4017 No, neither of these Satisfactory
## 4018 No, neither of these Satisfactory
## 4019 No, neither of these Good
## 4020 No, neither of these Satisfactory
## 4021 No, neither of these Very good
## 4022 No, neither of these Good
## 4023 <NA> <NA>
## 4024 No, neither of these Satisfactory
## 4025 No, neither of these Satisfactory
## 4026 No, neither of these Good
## 4027 No, neither of these Good
## 4028 <NA> <NA>
## 4029 <NA> <NA>
## 4030 No, neither of these Good
## 4031 No, neither of these Satisfactory
## 4032 No, neither of these Good
## 4033 No, neither of these Satisfactory
## 4034 No, neither of these Satisfactory
## 4035 No, neither of these Satisfactory
## 4036 No, neither of these Good
## 4037 No, neither of these Satisfactory
## 4038 No, neither of these Good
## 4039 No, neither of these Satisfactory
## 4040 No, neither of these Satisfactory
## 4041 No, neither of these Good
## 4042 No, neither of these Good
## 4043 No, neither of these Good
## 4044 No, neither of these Good
## 4045 No, neither of these Good
## 4046 No, neither of these Very good
## 4047 No, neither of these Good
## 4048 No, neither of these Good
## 4049 No, neither of these Good
## 4050 No, neither of these Satisfactory
## 4051 No, neither of these Satisfactory
## 4052 No, neither of these Very good
## 4053 Yes, entry phone Satisfactory
## 4054 No, neither of these Satisfactory
## 4055 No, neither of these Satisfactory
## 4056 <NA> <NA>
## 4057 <NA> <NA>
## 4058 No, neither of these Very good
## 4059 Yes, entry phone Good
## 4060 No, neither of these Good
## 4061 <NA> <NA>
## 4062 No, neither of these Satisfactory
## 4063 No, neither of these Good
## 4064 Yes, entry phone and locked gate/door Bad
## 4065 No, neither of these Good
## 4066 No, neither of these Good
## 4067 No, neither of these Satisfactory
## 4068 No, neither of these Satisfactory
## 4069 No, neither of these Good
## 4070 No, neither of these Very good
## 4071 Yes, entry phone Satisfactory
## 4072 No, neither of these Satisfactory
## 4073 Yes, entry phone and locked gate/door Very good
## 4074 No, neither of these Satisfactory
## 4075 No, neither of these Very good
## 4076 Yes, entry phone and locked gate/door Very good
## 4077 No, neither of these Satisfactory
## 4078 Yes, entry phone and locked gate/door Satisfactory
## 4079 <NA> <NA>
## 4080 No, neither of these Good
## 4081 Yes, entry phone and locked gate/door Good
## 4082 No, neither of these Satisfactory
## 4083 No, neither of these Good
## 4084 No, neither of these Good
## 4085 No, neither of these Very good
## 4086 <NA> <NA>
## 4087 No, neither of these Satisfactory
## 4088 No, neither of these Satisfactory
## 4089 No, neither of these Good
## 4090 No, neither of these Very good
## 4091 Yes, entry phone and locked gate/door Satisfactory
## 4092 No, neither of these Good
## 4093 No, neither of these Satisfactory
## 4094 No, neither of these Satisfactory
## 4095 <NA> <NA>
## 4096 Yes, entry phone and locked gate/door Very good
## 4097 No, neither of these Satisfactory
## 4098 No, neither of these Satisfactory
## 4099 No, neither of these Bad
## 4100 No, neither of these Very good
## 4101 No, neither of these Satisfactory
## 4102 <NA> <NA>
## 4103 <NA> <NA>
## 4104 No, neither of these Satisfactory
## 4105 No, neither of these Good
## 4106 No, neither of these Satisfactory
## 4107 No, neither of these Very good
## 4108 No, neither of these Satisfactory
## 4109 No, neither of these Satisfactory
## 4110 Yes, entry phone and locked gate/door Good
## 4111 No, neither of these Good
## 4112 No, neither of these Bad
## 4113 Yes, locked gate/door Satisfactory
## 4114 No, neither of these Good
## 4115 No, neither of these Bad
## 4116 Yes, entry phone and locked gate/door Very good
## 4117 No, neither of these Bad
## 4118 Yes, entry phone Good
## 4119 No, neither of these Satisfactory
## 4120 <NA> <NA>
## 4121 No, neither of these Good
## 4122 No, neither of these Good
## 4123 No, neither of these Good
## 4124 <NA> <NA>
## 4125 No, neither of these Good
## 4126 No, neither of these Good
## 4127 No, neither of these Satisfactory
## 4128 No, neither of these Satisfactory
## 4129 No, neither of these Satisfactory
## 4130 Yes, entry phone and locked gate/door Bad
## 4131 No, neither of these Good
## 4132 No, neither of these Good
## 4133 No, neither of these Satisfactory
## 4134 No, neither of these Satisfactory
## 4135 No, neither of these Good
## 4136 No, neither of these Satisfactory
## 4137 <NA> <NA>
## 4138 No, neither of these Good
## 4139 Yes, locked gate/door Very good
## 4140 <NA> <NA>
## 4141 Yes, entry phone and locked gate/door Satisfactory
## 4142 Yes, entry phone Satisfactory
## 4143 Yes, entry phone Satisfactory
## 4144 <NA> <NA>
## 4145 No, neither of these Very good
## 4146 No, neither of these Satisfactory
## 4147 No, neither of these Bad
## 4148 No, neither of these Good
## 4149 No, neither of these Satisfactory
## 4150 No, neither of these Good
## 4151 No, neither of these Very good
## 4152 No, neither of these Good
## 4153 No, neither of these Good
## 4154 No, neither of these Satisfactory
## 4155 No, neither of these Satisfactory
## 4156 Yes, entry phone and locked gate/door Bad
## 4157 No, neither of these Very good
## 4158 No, neither of these Good
## 4159 No, neither of these Good
## 4160 No, neither of these Good
## 4161 No, neither of these Very good
## 4162 Yes, entry phone Satisfactory
## 4163 No, neither of these Good
## 4164 Yes, entry phone Very good
## 4165 No, neither of these Good
## 4166 No, neither of these Good
## 4167 <NA> <NA>
## 4168 No, neither of these Good
## 4169 Yes, entry phone and locked gate/door Satisfactory
## 4170 No, neither of these Satisfactory
## 4171 No, neither of these Satisfactory
## 4172 No, neither of these Good
## 4173 No, neither of these Good
## 4174 No, neither of these Good
## 4175 No, neither of these Good
## 4176 Yes, entry phone Good
## 4177 No, neither of these Good
## 4178 <NA> <NA>
## 4179 No, neither of these Satisfactory
## 4180 No, neither of these Good
## 4181 <NA> <NA>
## 4182 No, neither of these Good
## 4183 No, neither of these Satisfactory
## 4184 No, neither of these Satisfactory
## 4185 No, neither of these Very good
## 4186 No, neither of these Satisfactory
## 4187 No, neither of these Very good
## 4188 No, neither of these Satisfactory
## 4189 No, neither of these Satisfactory
## 4190 No, neither of these Good
## 4191 No, neither of these Good
## 4192 No, neither of these Good
## 4193 No, neither of these Good
## 4194 <NA> <NA>
## 4195 No, neither of these Good
## 4196 No, neither of these Very good
## 4197 No, neither of these Very good
## 4198 Yes, locked gate/door Satisfactory
## 4199 No, neither of these Good
## 4200 No, neither of these Satisfactory
## 4201 No, neither of these Very good
## 4202 No, neither of these Satisfactory
## 4203 Yes, entry phone Good
## 4204 Yes, locked gate/door Good
## 4205 No, neither of these Bad
## 4206 No, neither of these Good
## 4207 No, neither of these Bad
## 4208 No, neither of these Good
## 4209 <NA> <NA>
## 4210 No, neither of these Very good
## 4211 No, neither of these Good
## 4212 <NA> <NA>
## 4213 Yes, entry phone and locked gate/door Satisfactory
## 4214 No, neither of these Satisfactory
## 4215 Yes, entry phone Very good
## 4216 No, neither of these Good
## 4217 No, neither of these Good
## 4218 No, neither of these Good
## 4219 No, neither of these Good
## 4220 <NA> <NA>
## 4221 Yes, entry phone Good
## 4222 Yes, entry phone Very good
## 4223 No, neither of these Good
## 4224 No, neither of these Satisfactory
## 4225 <NA> <NA>
## 4226 No, neither of these Satisfactory
## 4227 No, neither of these Good
## 4228 No, neither of these Good
## 4229 No, neither of these Good
## 4230 No, neither of these Good
## 4231 No, neither of these Good
## 4232 Yes, entry phone and locked gate/door Satisfactory
## 4233 No, neither of these Very good
## 4234 No, neither of these Good
## 4235 <NA> <NA>
## 4236 No, neither of these Satisfactory
## 4237 Yes, entry phone and locked gate/door Satisfactory
## 4238 No, neither of these Very good
## 4239 No, neither of these Good
## 4240 No, neither of these Good
## 4241 Yes, entry phone and locked gate/door Very good
## 4242 No, neither of these Very good
## 4243 Yes, locked gate/door Bad
## 4244 Yes, entry phone and locked gate/door Good
## 4245 Yes, entry phone and locked gate/door Good
## 4246 <NA> <NA>
## 4247 No, neither of these Very good
## 4248 No, neither of these Good
## 4249 No, neither of these Good
## 4250 Yes, entry phone and locked gate/door Good
## 4251 <NA> <NA>
## 4252 No, neither of these Good
## 4253 No, neither of these Good
## 4254 No, neither of these Satisfactory
## 4255 No, neither of these Good
## 4256 No, neither of these Good
## 4257 No, neither of these Satisfactory
## 4258 No, neither of these Good
## 4259 No, neither of these Satisfactory
## 4260 No, neither of these Satisfactory
## 4261 No, neither of these Satisfactory
## 4262 No, neither of these Very good
## 4263 No, neither of these Good
## 4264 No, neither of these Very good
## 4265 No, neither of these Good
## 4266 <NA> <NA>
## 4267 No, neither of these Good
## 4268 <NA> <NA>
## 4269 No, neither of these Very good
## 4270 No, neither of these Good
## 4271 <NA> <NA>
## 4272 No, neither of these Good
## 4273 No, neither of these Good
## 4274 Yes, entry phone and locked gate/door Satisfactory
## 4275 No, neither of these Satisfactory
## 4276 No, neither of these Good
## 4277 No, neither of these Satisfactory
## 4278 No, neither of these Good
## 4279 No, neither of these Good
## 4280 No, neither of these Satisfactory
## 4281 No, neither of these Good
## 4282 <NA> <NA>
## 4283 No, neither of these Bad
## 4284 Yes, entry phone and locked gate/door Good
## 4285 No, neither of these Satisfactory
## 4286 No, neither of these Good
## 4287 No, neither of these Very good
## 4288 No, neither of these Satisfactory
## 4289 No, neither of these Very good
## 4290 No, neither of these Satisfactory
## 4291 No, neither of these Very good
## 4292 No, neither of these Good
## 4293 <NA> <NA>
## 4294 No, neither of these Good
## 4295 No, neither of these Satisfactory
## 4296 No, neither of these Good
## 4297 <NA> <NA>
## 4298 No, neither of these Good
## 4299 No, neither of these Good
## 4300 No, neither of these Good
## 4301 No, neither of these Satisfactory
## 4302 No, neither of these Good
## 4303 No, neither of these Very good
## 4304 <NA> <NA>
## 4305 No, neither of these Good
## 4306 No, neither of these Very good
## 4307 No, neither of these Very good
## 4308 No, neither of these Good
## 4309 <NA> <NA>
## 4310 No, neither of these Good
## 4311 <NA> <NA>
## 4312 Yes, locked gate/door Good
## 4313 Yes, locked gate/door Satisfactory
## 4314 <NA> <NA>
## 4315 No, neither of these Good
## 4316 No, neither of these Good
## 4317 No, neither of these Good
## 4318 No, neither of these Very bad
## 4319 No, neither of these Very good
## 4320 No, neither of these Good
## 4321 <NA> <NA>
## 4322 No, neither of these Good
## 4323 <NA> <NA>
## 4324 No, neither of these Satisfactory
## 4325 No, neither of these Bad
## 4326 No, neither of these Good
## 4327 No, neither of these Satisfactory
## 4328 No, neither of these Good
## 4329 No, neither of these Satisfactory
## 4330 No, neither of these Good
## 4331 No, neither of these Very good
## 4332 No, neither of these Good
## 4333 Yes, entry phone and locked gate/door Satisfactory
## 4334 No, neither of these Good
## 4335 <NA> <NA>
## 4336 No, neither of these Satisfactory
## 4337 No, neither of these Good
## 4338 No, neither of these Good
## 4339 No, neither of these Good
## 4340 <NA> <NA>
## 4341 Yes, entry phone and locked gate/door Very good
## 4342 No, neither of these Good
## 4343 No, neither of these Good
## 4344 No, neither of these Good
## 4345 No, neither of these Good
## 4346 No, neither of these Good
## 4347 No, neither of these Satisfactory
## 4348 No, neither of these Satisfactory
## 4349 Yes, entry phone Satisfactory
## 4350 No, neither of these Satisfactory
## 4351 No, neither of these Good
## 4352 No, neither of these Good
## 4353 Yes, entry phone and locked gate/door Satisfactory
## 4354 No, neither of these Bad
## 4355 No, neither of these Very good
## 4356 No, neither of these Very good
## 4357 Yes, locked gate/door Satisfactory
## 4358 Yes, entry phone and locked gate/door Very good
## 4359 No, neither of these Good
## 4360 No, neither of these Good
## 4361 Yes, entry phone Satisfactory
## 4362 No, neither of these Good
## 4363 Yes, locked gate/door Satisfactory
## 4364 No, neither of these Good
## 4365 No, neither of these Very good
## 4366 <NA> <NA>
## 4367 No, neither of these Good
## 4368 <NA> <NA>
## 4369 No, neither of these Satisfactory
## 4370 No, neither of these Good
## 4371 No, neither of these Very good
## 4372 No, neither of these Good
## 4373 No, neither of these Good
## 4374 No, neither of these Good
## 4375 No, neither of these Satisfactory
## 4376 No, neither of these Bad
## 4377 No, neither of these Satisfactory
## 4378 No, neither of these Very good
## 4379 No, neither of these Satisfactory
## 4380 No, neither of these Very bad
## 4381 No, neither of these Very good
## 4382 No, neither of these Good
## 4383 Yes, entry phone Good
## 4384 No, neither of these Good
## 4385 <NA> Bad
## 4386 No, neither of these Satisfactory
## 4387 No, neither of these Good
## 4388 <NA> <NA>
## 4389 No, neither of these Good
## 4390 No, neither of these Satisfactory
## 4391 No, neither of these Good
## 4392 No, neither of these Good
## 4393 No, neither of these Satisfactory
## 4394 No, neither of these Good
## 4395 No, neither of these Good
## 4396 No, neither of these Good
## 4397 Yes, entry phone and locked gate/door Satisfactory
## 4398 <NA> <NA>
## 4399 <NA> <NA>
## 4400 No, neither of these Satisfactory
## 4401 No, neither of these Very good
## 4402 <NA> <NA>
## 4403 Yes, entry phone Satisfactory
## 4404 No, neither of these Satisfactory
## 4405 No, neither of these Bad
## 4406 No, neither of these Satisfactory
## 4407 Yes, entry phone and locked gate/door Satisfactory
## 4408 No, neither of these Good
## 4409 No, neither of these Satisfactory
## 4410 No, neither of these Satisfactory
## 4411 <NA> <NA>
## 4412 No, neither of these Good
## 4413 No, neither of these Bad
## 4414 No, neither of these Very good
## 4415 No, neither of these Very good
## 4416 No, neither of these Good
## 4417 <NA> <NA>
## 4418 No, neither of these Good
## 4419 No, neither of these Good
## 4420 No, neither of these Satisfactory
## 4421 No, neither of these Satisfactory
## 4422 No, neither of these Bad
## 4423 <NA> <NA>
## 4424 No, neither of these Satisfactory
## 4425 <NA> <NA>
## 4426 No, neither of these Good
## 4427 <NA> <NA>
## 4428 No, neither of these Very good
## 4429 <NA> <NA>
## 4430 No, neither of these Satisfactory
## 4431 No, neither of these Satisfactory
## 4432 No, neither of these Very good
## 4433 No, neither of these Satisfactory
## 4434 No, neither of these Very good
## 4435 No, neither of these Satisfactory
## 4436 Yes, entry phone Good
## 4437 No, neither of these Satisfactory
## 4438 Yes, entry phone Good
## 4439 <NA> <NA>
## 4440 No, neither of these Good
## 4441 <NA> <NA>
## 4442 <NA> <NA>
## 4443 No, neither of these Good
## 4444 No, neither of these Very good
## 4445 No, neither of these Very good
## 4446 No, neither of these Good
## 4447 No, neither of these Satisfactory
## 4448 No, neither of these Good
## 4449 No, neither of these Good
## 4450 No, neither of these Good
## 4451 No, neither of these Good
## 4452 No, neither of these Good
## 4453 No, neither of these Good
## 4454 No, neither of these Satisfactory
## 4455 Yes, locked gate/door Very good
## 4456 No, neither of these Good
## 4457 No, neither of these Good
## 4458 No, neither of these Very good
## 4459 Yes, entry phone and locked gate/door Satisfactory
## 4460 No, neither of these Good
## 4461 Yes, entry phone Satisfactory
## 4462 No, neither of these Very good
## 4463 No, neither of these Good
## 4464 No, neither of these Good
## 4465 No, neither of these Good
## 4466 No, neither of these Good
## 4467 No, neither of these Good
## 4468 No, neither of these Very good
## 4469 No, neither of these Very good
## 4470 <NA> <NA>
## 4471 <NA> <NA>
## 4472 No, neither of these Good
## 4473 <NA> <NA>
## 4474 No, neither of these Very good
## 4475 No, neither of these Satisfactory
## 4476 No, neither of these Very good
## 4477 No, neither of these Very good
## 4478 No, neither of these Very good
## 4479 <NA> <NA>
## 4480 No, neither of these Good
## 4481 No, neither of these Good
## 4482 No, neither of these Good
## 4483 <NA> <NA>
## 4484 No, neither of these Very good
## 4485 <NA> <NA>
## 4486 <NA> <NA>
## 4487 No, neither of these Good
## 4488 No, neither of these Satisfactory
## 4489 No, neither of these Good
## 4490 No, neither of these Good
## 4491 No, neither of these Good
## 4492 Yes, entry phone and locked gate/door Very good
## 4493 <NA> <NA>
## 4494 No, neither of these Satisfactory
## 4495 Yes, entry phone and locked gate/door Satisfactory
## 4496 Yes, entry phone Very bad
## 4497 No, neither of these Good
## 4498 Yes, entry phone and locked gate/door Very good
## 4499 No, neither of these Very good
## 4500 No, neither of these Satisfactory
## 4501 <NA> <NA>
## 4502 No, neither of these Satisfactory
## 4503 No, neither of these Good
## 4504 No, neither of these Satisfactory
## 4505 Yes, entry phone Good
## 4506 No, neither of these Very good
## 4507 <NA> <NA>
## 4508 No, neither of these Satisfactory
## 4509 No, neither of these Good
## 4510 No, neither of these Satisfactory
## 4511 No, neither of these Satisfactory
## 4512 No, neither of these Good
## 4513 No, neither of these Good
## 4514 No, neither of these Good
## 4515 No, neither of these Satisfactory
## 4516 No, neither of these Satisfactory
## 4517 No, neither of these Good
## 4518 <NA> <NA>
## 4519 Yes, entry phone and locked gate/door Good
## 4520 Yes, entry phone Satisfactory
## 4521 Yes, entry phone and locked gate/door Very good
## 4522 No, neither of these Satisfactory
## 4523 <NA> <NA>
## 4524 No, neither of these Satisfactory
## 4525 <NA> <NA>
## 4526 <NA> <NA>
## 4527 No, neither of these Good
## 4528 No, neither of these Good
## 4529 No, neither of these Very good
## 4530 No, neither of these Very good
## 4531 No, neither of these Good
## 4532 Yes, entry phone Satisfactory
## 4533 Yes, entry phone Good
## 4534 No, neither of these Very good
## 4535 Yes, entry phone and locked gate/door Satisfactory
## 4536 <NA> <NA>
## 4537 No, neither of these Good
## 4538 No, neither of these Very good
## 4539 No, neither of these Good
## 4540 No, neither of these Satisfactory
## 4541 No, neither of these Good
## 4542 <NA> <NA>
## 4543 No, neither of these Good
## 4544 No, neither of these Good
## 4545 Yes, entry phone and locked gate/door Satisfactory
## 4546 No, neither of these Very good
## 4547 No, neither of these Very good
## 4548 No, neither of these Very good
## 4549 Yes, entry phone and locked gate/door Bad
## 4550 No, neither of these Very good
## 4551 No, neither of these Good
## 4552 No, neither of these Good
## 4553 No, neither of these Satisfactory
## 4554 No, neither of these Good
## 4555 No, neither of these Very good
## 4556 No, neither of these Satisfactory
## 4557 No, neither of these Good
## 4558 No, neither of these Satisfactory
## 4559 No, neither of these Satisfactory
## 4560 No, neither of these Good
## 4561 No, neither of these Satisfactory
## 4562 No, neither of these Good
## 4563 <NA> <NA>
## 4564 <NA> <NA>
## 4565 No, neither of these Satisfactory
## 4566 No, neither of these Good
## 4567 Yes, entry phone and locked gate/door Good
## 4568 No, neither of these Satisfactory
## 4569 No, neither of these Satisfactory
## 4570 No, neither of these Satisfactory
## 4571 No, neither of these Good
## 4572 Yes, entry phone and locked gate/door Good
## 4573 No, neither of these Very good
## 4574 <NA> <NA>
## 4575 No, neither of these Satisfactory
## 4576 No, neither of these Satisfactory
## 4577 Yes, entry phone Satisfactory
## 4578 No, neither of these Good
## 4579 No, neither of these Good
## 4580 Yes, entry phone and locked gate/door Satisfactory
## 4581 No, neither of these Good
## 4582 No, neither of these Satisfactory
## 4583 No, neither of these Satisfactory
## 4584 No, neither of these Good
## 4585 No, neither of these Good
## 4586 No, neither of these Satisfactory
## 4587 No, neither of these Satisfactory
## 4588 No, neither of these Good
## 4589 <NA> <NA>
## 4590 Yes, locked gate/door Good
## 4591 No, neither of these Very good
## 4592 No, neither of these Good
## 4593 No, neither of these Good
## 4594 No, neither of these Good
## 4595 No, neither of these Very good
## 4596 No, neither of these Good
## 4597 <NA> <NA>
## 4598 No, neither of these Good
## 4599 No, neither of these Satisfactory
## 4600 Yes, entry phone and locked gate/door Satisfactory
## 4601 No, neither of these Very good
## 4602 <NA> <NA>
## 4603 No, neither of these Satisfactory
## 4604 No, neither of these Very good
## 4605 No, neither of these Good
## 4606 No, neither of these Good
## 4607 No, neither of these Very good
## 4608 No, neither of these Good
## 4609 No, neither of these Satisfactory
## 4610 No, neither of these Satisfactory
## 4611 No, neither of these Good
## 4612 No, neither of these Satisfactory
## 4613 No, neither of these Good
## 4614 No, neither of these Very good
## 4615 Yes, entry phone Good
## 4616 No, neither of these Satisfactory
## 4617 No, neither of these Very good
## 4618 No, neither of these Good
## 4619 No, neither of these Bad
## 4620 No, neither of these Good
## 4621 No, neither of these Satisfactory
## 4622 No, neither of these Good
## 4623 No, neither of these Very good
## 4624 Yes, entry phone Very good
## 4625 No, neither of these Very good
## 4626 Yes, entry phone and locked gate/door Good
## 4627 No, neither of these Satisfactory
## 4628 No, neither of these Satisfactory
## 4629 No, neither of these Satisfactory
## 4630 No, neither of these Good
## 4631 Yes, entry phone Very good
## 4632 <NA> <NA>
## 4633 No, neither of these Good
## 4634 <NA> <NA>
## 4635 No, neither of these Good
## 4636 No, neither of these Good
## 4637 Yes, locked gate/door Very good
## 4638 No, neither of these Good
## 4639 No, neither of these Satisfactory
## 4640 No, neither of these Good
## 4641 No, neither of these Good
## 4642 No, neither of these Good
## 4643 Yes, entry phone and locked gate/door Satisfactory
## 4644 No, neither of these Good
## 4645 No, neither of these Good
## 4646 No, neither of these Satisfactory
## 4647 No, neither of these Very good
## 4648 No, neither of these Satisfactory
## 4649 No, neither of these Satisfactory
## 4650 No, neither of these Good
## 4651 No, neither of these Good
## 4652 No, neither of these Good
## 4653 No, neither of these Good
## 4654 No, neither of these Satisfactory
## 4655 No, neither of these Satisfactory
## 4656 No, neither of these Good
## 4657 No, neither of these Satisfactory
## 4658 No, neither of these Very good
## 4659 No, neither of these Very good
## 4660 <NA> <NA>
## 4661 <NA> <NA>
## 4662 Yes, entry phone and locked gate/door Very good
## 4663 No, neither of these Satisfactory
## 4664 No, neither of these Good
## 4665 No, neither of these Good
## 4666 Yes, entry phone and locked gate/door Good
## 4667 <NA> <NA>
## 4668 Yes, entry phone and locked gate/door Bad
## 4669 No, neither of these Good
## 4670 No, neither of these Satisfactory
## 4671 Yes, entry phone and locked gate/door Very good
## 4672 No, neither of these Very good
## 4673 No, neither of these Good
## 4674 Yes, entry phone and locked gate/door Very good
## 4675 No, neither of these Satisfactory
## 4676 No, neither of these Good
## 4677 No, neither of these Good
## 4678 Yes, entry phone Satisfactory
## 4679 No, neither of these Good
## 4680 No, neither of these Bad
## 4681 <NA> <NA>
## 4682 No, neither of these Good
## 4683 No, neither of these Satisfactory
## 4684 No, neither of these Good
## 4685 Yes, entry phone and locked gate/door Satisfactory
## 4686 No, neither of these Very good
## 4687 <NA> <NA>
## 4688 No, neither of these Good
## 4689 No, neither of these Very good
## 4690 No, neither of these Very good
## 4691 No, neither of these Good
## 4692 <NA> <NA>
## 4693 No, neither of these Very good
## 4694 No, neither of these Very good
## 4695 No, neither of these Good
## 4696 No, neither of these Good
## 4697 No, neither of these Good
## 4698 <NA> <NA>
## 4699 No, neither of these Good
## 4700 No, neither of these Good
## 4701 No, neither of these Satisfactory
## 4702 No, neither of these Good
## 4703 Yes, entry phone Satisfactory
## 4704 No, neither of these Good
## 4705 No, neither of these Good
## 4706 <NA> <NA>
## 4707 <NA> <NA>
## 4708 No, neither of these Very good
## 4709 Yes, entry phone and locked gate/door Very good
## 4710 <NA> <NA>
## 4711 No, neither of these Satisfactory
## 4712 No, neither of these Good
## 4713 No, neither of these Good
## 4714 <NA> <NA>
## 4715 Yes, entry phone and locked gate/door Good
## 4716 <NA> <NA>
## 4717 No, neither of these Good
## 4718 No, neither of these Very good
## 4719 No, neither of these Good
## 4720 Yes, entry phone Good
## 4721 <NA> <NA>
## 4722 Yes, entry phone Good
## 4723 No, neither of these Very good
## 4724 <NA> <NA>
## 4725 Yes, entry phone Very good
## 4726 No, neither of these Good
## 4727 No, neither of these Good
## 4728 No, neither of these Satisfactory
## 4729 No, neither of these Very good
## 4730 No, neither of these Satisfactory
## 4731 No, neither of these Good
## 4732 No, neither of these Good
## 4733 No, neither of these Very good
## 4734 No, neither of these Satisfactory
## 4735 No, neither of these Satisfactory
## 4736 No, neither of these Good
## 4737 Yes, entry phone and locked gate/door Very good
## 4738 No, neither of these Good
## 4739 <NA> <NA>
## 4740 No, neither of these Good
## 4741 No, neither of these Good
## 4742 Yes, entry phone and locked gate/door Satisfactory
## 4743 <NA> <NA>
## 4744 No, neither of these Good
## 4745 No, neither of these Good
## 4746 No, neither of these Good
## 4747 No, neither of these Good
## 4748 No, neither of these Good
## 4749 <NA> <NA>
## 4750 No, neither of these Good
## 4751 Yes, entry phone and locked gate/door Very good
## 4752 No, neither of these Satisfactory
## 4753 No, neither of these Good
## 4754 Yes, entry phone Good
## 4755 No, neither of these Very good
## 4756 No, neither of these Very good
## 4757 Yes, entry phone and locked gate/door Very good
## 4758 No, neither of these Good
## 4759 Yes, entry phone and locked gate/door Good
## 4760 No, neither of these Good
## 4761 No, neither of these Good
## 4762 No, neither of these Satisfactory
## 4763 No, neither of these Very good
## 4764 No, neither of these Very good
## 4765 No, neither of these Good
## 4766 No, neither of these Very good
## 4767 Yes, entry phone Good
## 4768 No, neither of these Very good
## 4769 No, neither of these Very good
## 4770 No, neither of these Very good
## 4771 No, neither of these Very good
## 4772 <NA> <NA>
## 4773 No, neither of these Satisfactory
## 4774 Yes, entry phone and locked gate/door Satisfactory
## 4775 No, neither of these Very good
## 4776 Yes, entry phone and locked gate/door Very good
## 4777 No, neither of these Satisfactory
## 4778 No, neither of these Good
## 4779 No, neither of these Good
## 4780 No, neither of these Satisfactory
## 4781 No, neither of these Very good
## 4782 No, neither of these Very good
## 4783 No, neither of these Good
## 4784 No, neither of these Satisfactory
## 4785 No, neither of these Very good
## 4786 No, neither of these Satisfactory
## 4787 No, neither of these Good
## 4788 <NA> <NA>
## 4789 No, neither of these Satisfactory
## 4790 <NA> <NA>
## 4791 <NA> <NA>
## 4792 No, neither of these Satisfactory
## 4793 Yes, entry phone and locked gate/door Satisfactory
## 4794 No, neither of these Satisfactory
## 4795 No, neither of these Satisfactory
## 4796 <NA> <NA>
## 4797 No, neither of these Satisfactory
## 4798 No, neither of these Very good
## 4799 No, neither of these Very good
## 4800 No, neither of these Satisfactory
## 4801 No, neither of these Satisfactory
## 4802 Yes, locked gate/door Good
## 4803 <NA> <NA>
## 4804 No, neither of these Satisfactory
## 4805 No, neither of these Good
## 4806 No, neither of these Satisfactory
## 4807 Yes, entry phone and locked gate/door <NA>
## 4808 No, neither of these Good
## 4809 Yes, entry phone and locked gate/door Very good
## 4810 <NA> <NA>
## 4811 No, neither of these Very good
## 4812 No, neither of these Satisfactory
## 4813 No, neither of these Satisfactory
## 4814 <NA> <NA>
## 4815 No, neither of these Good
## 4816 Yes, locked gate/door Satisfactory
## 4817 No, neither of these Good
## 4818 No, neither of these Bad
## 4819 <NA> <NA>
## 4820 Yes, entry phone and locked gate/door Good
## 4821 No, neither of these Very good
## 4822 No, neither of these Bad
## 4823 No, neither of these Satisfactory
## 4824 <NA> <NA>
## 4825 <NA> <NA>
## 4826 No, neither of these Good
## 4827 Yes, entry phone and locked gate/door Very good
## 4828 No, neither of these Good
## 4829 No, neither of these Good
## 4830 No, neither of these Good
## 4831 No, neither of these Satisfactory
## 4832 No, neither of these Good
## 4833 <NA> <NA>
## 4834 No, neither of these Good
## 4835 Yes, entry phone and locked gate/door Satisfactory
## 4836 No, neither of these Good
## 4837 No, neither of these Satisfactory
## 4838 No, neither of these Satisfactory
## 4839 Yes, entry phone and locked gate/door Very good
## 4840 No, neither of these Good
## 4841 No, neither of these Very good
## 4842 No, neither of these Good
## 4843 No, neither of these Good
## 4844 No, neither of these Very good
## 4845 No, neither of these Good
## 4846 No, neither of these Good
## 4847 <NA> <NA>
## 4848 No, neither of these Good
## 4849 Yes, entry phone and locked gate/door Satisfactory
## 4850 No, neither of these Good
## 4851 Yes, entry phone and locked gate/door Satisfactory
## 4852 <NA> <NA>
## 4853 Yes, entry phone and locked gate/door Satisfactory
## 4854 Yes, entry phone Satisfactory
## 4855 <NA> <NA>
## 4856 No, neither of these Good
## 4857 No, neither of these Good
## 4858 No, neither of these Satisfactory
## 4859 Yes, entry phone Satisfactory
## 4860 No, neither of these Very good
## 4861 No, neither of these Good
## 4862 No, neither of these Good
## 4863 No, neither of these Good
## 4864 No, neither of these Good
## 4865 <NA> <NA>
## 4866 Yes, entry phone and locked gate/door Bad
## 4867 Yes, entry phone and locked gate/door Satisfactory
## 4868 No, neither of these Satisfactory
## 4869 <NA> <NA>
## 4870 No, neither of these Satisfactory
## 4871 No, neither of these Good
## 4872 No, neither of these Very good
## 4873 No, neither of these Very good
## 4874 No, neither of these Bad
## 4875 No, neither of these Good
## 4876 No, neither of these Good
## 4877 No, neither of these Good
## 4878 No, neither of these Good
## 4879 <NA> <NA>
## 4880 No, neither of these Very good
## 4881 No, neither of these Good
## 4882 No, neither of these Very good
## 4883 No, neither of these Very good
## 4884 Yes, entry phone and locked gate/door Very good
## 4885 No, neither of these Good
## 4886 No, neither of these Good
## 4887 <NA> <NA>
## 4888 No, neither of these Satisfactory
## 4889 No, neither of these Good
## 4890 No, neither of these Satisfactory
## 4891 No, neither of these Satisfactory
## 4892 No, neither of these Good
## 4893 No, neither of these Good
## 4894 No, neither of these Good
## 4895 <NA> <NA>
## 4896 <NA> <NA>
## 4897 No, neither of these Very good
## 4898 No, neither of these Satisfactory
## 4899 No, neither of these Good
## 4900 No, neither of these Good
## 4901 No, neither of these Good
## 4902 No, neither of these Good
## 4903 No, neither of these Good
## 4904 <NA> <NA>
## 4905 No, neither of these Satisfactory
## 4906 <NA> <NA>
## 4907 <NA> <NA>
## 4908 No, neither of these Satisfactory
## 4909 <NA> <NA>
## 4910 No, neither of these Very good
## 4911 No, neither of these Satisfactory
## 4912 No, neither of these Very good
## 4913 Yes, entry phone Satisfactory
## 4914 No, neither of these Very bad
## 4915 No, neither of these Satisfactory
## 4916 No, neither of these Satisfactory
## 4917 No, neither of these Very good
## 4918 No, neither of these Satisfactory
## 4919 Yes, entry phone Satisfactory
## 4920 Yes, entry phone and locked gate/door Satisfactory
## 4921 No, neither of these Good
## 4922 No, neither of these Good
## 4923 <NA> <NA>
## 4924 No, neither of these Bad
## 4925 Yes, entry phone and locked gate/door Bad
## 4926 No, neither of these Very good
## 4927 No, neither of these Satisfactory
## 4928 <NA> <NA>
## 4929 <NA> <NA>
## 4930 No, neither of these Satisfactory
## 4931 No, neither of these Very good
## 4932 No, neither of these Good
## 4933 No, neither of these Good
## 4934 Yes, entry phone and locked gate/door Satisfactory
## 4935 No, neither of these Bad
## 4936 No, neither of these Very good
## 4937 No, neither of these Good
## 4938 No, neither of these Good
## 4939 No, neither of these Satisfactory
## 4940 Yes, entry phone and locked gate/door Very good
## 4941 No, neither of these Satisfactory
## 4942 No, neither of these Good
## 4943 No, neither of these Very good
## 4944 No, neither of these Satisfactory
## 4945 No, neither of these Good
## 4946 No, neither of these Satisfactory
## 4947 No, neither of these Bad
## 4948 No, neither of these Very good
## 4949 No, neither of these Good
## 4950 No, neither of these Satisfactory
## 4951 No, neither of these Bad
## 4952 Yes, entry phone and locked gate/door Good
## 4953 No, neither of these Good
## 4954 No, neither of these Satisfactory
## 4955 No, neither of these Good
## 4956 No, neither of these Good
## 4957 <NA> <NA>
## 4958 No, neither of these Good
## 4959 No, neither of these Satisfactory
## 4960 No, neither of these Satisfactory
## 4961 No, neither of these Good
## 4962 No, neither of these Good
## 4963 No, neither of these Good
## 4964 <NA> <NA>
## 4965 No, neither of these Good
## 4966 No, neither of these Satisfactory
## 4967 No, neither of these Good
## 4968 Yes, locked gate/door Good
## 4969 No, neither of these Good
## 4970 No, neither of these Very good
## 4971 No, neither of these Good
## 4972 No, neither of these Good
## 4973 Yes, entry phone Good
## 4974 No, neither of these Good
## 4975 Yes, entry phone and locked gate/door Good
## 4976 No, neither of these Good
## 4977 <NA> <NA>
## 4978 No, neither of these Good
## 4979 No, neither of these Good
## 4980 No, neither of these Very good
## 4981 <NA> <NA>
## 4982 Yes, entry phone and locked gate/door Bad
## 4983 Yes, entry phone Good
## 4984 No, neither of these Very good
## 4985 No, neither of these Good
## 4986 No, neither of these Good
## 4987 No, neither of these Good
## 4988 No, neither of these Satisfactory
## 4989 No, neither of these Satisfactory
## 4990 No, neither of these Satisfactory
## 4991 No, neither of these Satisfactory
## 4992 Yes, entry phone and locked gate/door Bad
## 4993 <NA> <NA>
## 4994 No, neither of these Satisfactory
## 4995 No, neither of these Good
## 4996 No, neither of these Satisfactory
## 4997 No, neither of these Good
## 4998 No, neither of these Good
## 4999 <NA> <NA>
## 5000 No, neither of these Bad
## 5001 No, neither of these Good
## 5002 No, neither of these Good
## 5003 Yes, entry phone Good
## 5004 No, neither of these Satisfactory
## 5005 Yes, entry phone and locked gate/door Bad
## 5006 No, neither of these Satisfactory
## 5007 No, neither of these Good
## 5008 No, neither of these Satisfactory
## 5009 No, neither of these Satisfactory
## 5010 No, neither of these Good
## 5011 No, neither of these Good
## 5012 <NA> <NA>
## 5013 Yes, entry phone Good
## 5014 Yes, entry phone and locked gate/door Very good
## 5015 Yes, entry phone Satisfactory
## 5016 <NA> <NA>
## 5017 No, neither of these Very good
## 5018 <NA> <NA>
## 5019 No, neither of these Good
## 5020 No, neither of these Good
## 5021 No, neither of these Good
## 5022 No, neither of these Very good
## 5023 No, neither of these Satisfactory
## 5024 No, neither of these Very good
## 5025 No, neither of these Good
## 5026 No, neither of these Good
## 5027 No, neither of these Very good
## 5028 No, neither of these Good
## 5029 No, neither of these Good
## 5030 <NA> <NA>
## 5031 No, neither of these Good
## 5032 Yes, entry phone and locked gate/door Good
## 5033 No, neither of these Good
## 5034 No, neither of these Good
## 5035 No, neither of these Bad
## 5036 No, neither of these Good
## 5037 No, neither of these Good
## 5038 <NA> <NA>
## 5039 Yes, entry phone Good
## 5040 No, neither of these Satisfactory
## 5041 No, neither of these Very good
## 5042 <NA> <NA>
## 5043 No, neither of these Good
## 5044 No, neither of these Satisfactory
## 5045 No, neither of these Satisfactory
## 5046 No, neither of these Satisfactory
## 5047 <NA> <NA>
## 5048 No, neither of these Good
## 5049 No, neither of these Very good
## 5050 <NA> <NA>
## 5051 <NA> <NA>
## 5052 No, neither of these Very good
## 5053 <NA> <NA>
## 5054 No, neither of these Very good
## 5055 No, neither of these Good
## 5056 No, neither of these Good
## 5057 <NA> <NA>
## 5058 <NA> <NA>
## 5059 No, neither of these Good
## 5060 No, neither of these Good
## 5061 No, neither of these Very good
## 5062 No, neither of these Satisfactory
## 5063 No, neither of these Satisfactory
## 5064 No, neither of these Very bad
## 5065 <NA> <NA>
## 5066 <NA> Satisfactory
## 5067 No, neither of these Very good
## 5068 Yes, locked gate/door Very bad
## 5069 No, neither of these Good
## 5070 <NA> <NA>
## 5071 No, neither of these Very good
## 5072 No, neither of these Good
## 5073 No, neither of these Good
## 5074 No, neither of these Very good
## 5075 No, neither of these Good
## 5076 No, neither of these Good
## 5077 No, neither of these Good
## 5078 Yes, entry phone and locked gate/door Satisfactory
## 5079 No, neither of these Good
## 5080 No, neither of these Satisfactory
## 5081 <NA> <NA>
## 5082 No, neither of these Good
## 5083 No, neither of these Good
## 5084 No, neither of these Satisfactory
## 5085 Yes, entry phone and locked gate/door Very good
## 5086 No, neither of these Very good
## 5087 No, neither of these Good
## 5088 Yes, entry phone and locked gate/door Very good
## 5089 No, neither of these Good
## 5090 No, neither of these Good
## 5091 Yes, entry phone and locked gate/door Satisfactory
## 5092 No, neither of these Satisfactory
## 5093 No, neither of these Bad
## 5094 Yes, entry phone and locked gate/door Good
## 5095 No, neither of these Good
## 5096 No, neither of these Good
## 5097 No, neither of these Satisfactory
## 5098 No, neither of these Good
## 5099 Yes, entry phone and locked gate/door Good
## 5100 No, neither of these Good
## 5101 No, neither of these Good
## 5102 No, neither of these Good
## 5103 No, neither of these Good
## 5104 No, neither of these Satisfactory
## 5105 No, neither of these Satisfactory
## 5106 No, neither of these Good
## 5107 <NA> <NA>
## 5108 No, neither of these Very good
## 5109 No, neither of these Good
## 5110 No, neither of these Good
## 5111 No, neither of these Good
## 5112 No, neither of these Satisfactory
## 5113 No, neither of these Satisfactory
## 5114 No, neither of these Good
## 5115 No, neither of these Satisfactory
## 5116 No, neither of these Good
## 5117 No, neither of these Good
## 5118 No, neither of these Satisfactory
## 5119 No, neither of these Very good
## 5120 No, neither of these Very good
## 5121 No, neither of these Very good
## 5122 No, neither of these Good
## 5123 No, neither of these Good
## 5124 <NA> Good
## 5125 <NA> <NA>
## 5126 Yes, entry phone and locked gate/door Good
## 5127 No, neither of these Very good
## 5128 No, neither of these Good
## 5129 No, neither of these Good
## 5130 No, neither of these Satisfactory
## 5131 No, neither of these Good
## 5132 No, neither of these Good
## 5133 No, neither of these Good
## 5134 No, neither of these Satisfactory
## 5135 No, neither of these Very good
## 5136 Yes, entry phone and locked gate/door Good
## 5137 No, neither of these Good
## 5138 Yes, locked gate/door Satisfactory
## 5139 <NA> <NA>
## 5140 No, neither of these Satisfactory
## 5141 Yes, entry phone and locked gate/door Good
## 5142 Yes, entry phone and locked gate/door Good
## 5143 No, neither of these Good
## 5144 No, neither of these Very good
## 5145 <NA> <NA>
## 5146 No, neither of these Very good
## 5147 No, neither of these Good
## 5148 No, neither of these Satisfactory
## 5149 No, neither of these Satisfactory
## 5150 Yes, entry phone and locked gate/door Very good
## 5151 No, neither of these Good
## 5152 No, neither of these Good
## 5153 No, neither of these Good
## 5154 No, neither of these Satisfactory
## 5155 No, neither of these Good
## 5156 <NA> <NA>
## 5157 No, neither of these Good
## 5158 No, neither of these Satisfactory
## 5159 Yes, entry phone and locked gate/door Good
## 5160 No, neither of these Very good
## 5161 No, neither of these Good
## 5162 Yes, entry phone Good
## 5163 No, neither of these Good
## 5164 No, neither of these Good
## 5165 Yes, entry phone and locked gate/door Satisfactory
## 5166 No, neither of these Good
## 5167 No, neither of these Very good
## 5168 <NA> <NA>
## 5169 No, neither of these Good
## 5170 <NA> <NA>
## 5171 No, neither of these Good
## 5172 No, neither of these Good
## 5173 No, neither of these Good
## 5174 No, neither of these Very good
## 5175 No, neither of these Very good
## 5176 No, neither of these Very good
## 5177 No, neither of these Satisfactory
## 5178 <NA> <NA>
## 5179 No, neither of these Good
## 5180 No, neither of these Good
## 5181 Yes, entry phone Very good
## 5182 No, neither of these Very good
## 5183 No, neither of these Very good
## 5184 No, neither of these Good
## 5185 No, neither of these Very good
## 5186 No, neither of these Satisfactory
## 5187 <NA> <NA>
## 5188 No, neither of these Good
## 5189 No, neither of these Good
## 5190 Yes, entry phone Good
## 5191 No, neither of these Good
## 5192 No, neither of these Good
## 5193 Yes, entry phone Very good
## 5194 No, neither of these Good
## 5195 No, neither of these Satisfactory
## 5196 No, neither of these Good
## 5197 No, neither of these Satisfactory
## 5198 No, neither of these Good
## 5199 No, neither of these Very good
## 5200 No, neither of these Very good
## 5201 No, neither of these Good
## 5202 No, neither of these Bad
## 5203 No, neither of these Good
## 5204 No, neither of these Very good
## 5205 <NA> <NA>
## 5206 <NA> <NA>
## 5207 No, neither of these Satisfactory
## 5208 Yes, entry phone and locked gate/door Good
## 5209 <NA> <NA>
## 5210 No, neither of these Satisfactory
## 5211 <NA> <NA>
## 5212 No, neither of these Satisfactory
## 5213 <NA> Satisfactory
## 5214 No, neither of these Satisfactory
## 5215 No, neither of these Very good
## 5216 No, neither of these Good
## 5217 No, neither of these Very good
## 5218 No, neither of these Satisfactory
## 5219 Yes, entry phone and locked gate/door Satisfactory
## 5220 Yes, locked gate/door Good
## 5221 No, neither of these Good
## 5222 No, neither of these Very good
## 5223 No, neither of these Very bad
## 5224 No, neither of these Good
## 5225 No, neither of these Good
## 5226 No, neither of these Good
## 5227 Yes, entry phone and locked gate/door Very good
## 5228 No, neither of these Good
## 5229 No, neither of these Good
## 5230 No, neither of these Good
## 5231 No, neither of these Satisfactory
## 5232 Yes, entry phone and locked gate/door Very good
## 5233 No, neither of these Satisfactory
## 5234 No, neither of these Good
## 5235 <NA> <NA>
## 5236 No, neither of these Satisfactory
## 5237 No, neither of these Good
## 5238 <NA> <NA>
## 5239 Yes, entry phone Good
## 5240 <NA> <NA>
## 5241 No, neither of these Good
## 5242 No, neither of these Satisfactory
## 5243 No, neither of these Good
## 5244 Yes, entry phone Satisfactory
## 5245 No, neither of these Good
## 5246 <NA> <NA>
## 5247 No, neither of these Good
## 5248 No, neither of these Good
## 5249 No, neither of these Good
## 5250 No, neither of these Good
## 5251 No, neither of these Very good
## 5252 Yes, entry phone and locked gate/door Good
## 5253 No, neither of these Good
## 5254 <NA> <NA>
## 5255 No, neither of these Good
## 5256 No, neither of these Good
## 5257 <NA> <NA>
## 5258 No, neither of these Very good
## 5259 No, neither of these Very good
## 5260 No, neither of these Good
## 5261 No, neither of these Very good
## 5262 Yes, entry phone Satisfactory
## 5263 No, neither of these Satisfactory
## 5264 Yes, entry phone and locked gate/door Good
## 5265 No, neither of these Bad
## 5266 No, neither of these Bad
## 5267 Yes, entry phone Satisfactory
## 5268 No, neither of these Good
## 5269 No, neither of these Satisfactory
## 5270 No, neither of these Good
## 5271 <NA> <NA>
## 5272 No, neither of these Very good
## 5273 <NA> <NA>
## 5274 Yes, entry phone Satisfactory
## 5275 Yes, entry phone and locked gate/door Satisfactory
## 5276 Yes, entry phone and locked gate/door Good
## 5277 Yes, entry phone Good
## 5278 No, neither of these Good
## 5279 No, neither of these Very good
## 5280 No, neither of these Good
## 5281 Yes, locked gate/door Good
## 5282 No, neither of these Very bad
## 5283 No, neither of these Good
## 5284 No, neither of these Satisfactory
## 5285 Yes, entry phone and locked gate/door Good
## 5286 No, neither of these Very good
## 5287 Yes, entry phone and locked gate/door Good
## 5288 No, neither of these Good
## 5289 No, neither of these Good
## 5290 No, neither of these Good
## 5291 No, neither of these Good
## 5292 Yes, entry phone and locked gate/door Very good
## 5293 No, neither of these Good
## 5294 No, neither of these Very good
## 5295 Yes, entry phone Satisfactory
## 5296 Yes, locked gate/door Satisfactory
## 5297 No, neither of these Good
## 5298 Yes, entry phone and locked gate/door Very good
## 5299 No, neither of these Good
## 5300 <NA> <NA>
## 5301 Yes, entry phone Good
## 5302 No, neither of these Very good
## 5303 No, neither of these Very good
## 5304 <NA> <NA>
## 5305 Yes, entry phone Satisfactory
## 5306 No, neither of these Satisfactory
## 5307 No, neither of these Good
## 5308 No, neither of these Good
## 5309 No, neither of these Good
## 5310 <NA> <NA>
## 5311 No, neither of these Satisfactory
## 5312 Yes, entry phone and locked gate/door Satisfactory
## 5313 No, neither of these Satisfactory
## 5314 No, neither of these Satisfactory
## 5315 Yes, entry phone and locked gate/door Satisfactory
## 5316 No, neither of these Very good
## 5317 No, neither of these Good
## 5318 No, neither of these Satisfactory
## 5319 Yes, entry phone and locked gate/door Satisfactory
## 5320 No, neither of these Good
## 5321 No, neither of these Satisfactory
## 5322 No, neither of these Satisfactory
## 5323 No, neither of these Very good
## 5324 No, neither of these Good
## 5325 No, neither of these Good
## 5326 No, neither of these Very good
## 5327 Yes, entry phone and locked gate/door Good
## 5328 No, neither of these Good
## 5329 No, neither of these Good
## 5330 No, neither of these Good
## 5331 No, neither of these Satisfactory
## 5332 No, neither of these Good
## 5333 No, neither of these Satisfactory
## 5334 No, neither of these Good
## 5335 No, neither of these Good
## 5336 No, neither of these Satisfactory
## 5337 Yes, entry phone and locked gate/door Bad
## 5338 <NA> <NA>
## 5339 No, neither of these Satisfactory
## 5340 No, neither of these Good
## 5341 No, neither of these Good
## 5342 No, neither of these Good
## 5343 No, neither of these Good
## 5344 No, neither of these Good
## 5345 No, neither of these Very good
## 5346 No, neither of these Bad
## 5347 No, neither of these Good
## 5348 No, neither of these Good
## 5349 No, neither of these Good
## 5350 No, neither of these Good
## 5351 Yes, entry phone and locked gate/door Good
## 5352 No, neither of these Good
## 5353 No, neither of these Good
## 5354 Yes, entry phone and locked gate/door Good
## 5355 No, neither of these Very good
## 5356 No, neither of these Satisfactory
## 5357 No, neither of these Satisfactory
## 5358 Yes, entry phone Good
## 5359 Yes, entry phone Very good
## 5360 No, neither of these Good
## 5361 Yes, locked gate/door Good
## 5362 No, neither of these Satisfactory
## 5363 No, neither of these Good
## 5364 No, neither of these Satisfactory
## 5365 <NA> <NA>
## 5366 No, neither of these Good
## 5367 No, neither of these Good
## 5368 No, neither of these Good
## 5369 No, neither of these Good
## 5370 No, neither of these Satisfactory
## 5371 <NA> <NA>
## 5372 No, neither of these Satisfactory
## 5373 No, neither of these Satisfactory
## 5374 No, neither of these Good
## 5375 No, neither of these Satisfactory
## 5376 No, neither of these Good
## 5377 No, neither of these Satisfactory
## 5378 No, neither of these Satisfactory
## 5379 No, neither of these <NA>
## 5380 No, neither of these Good
## 5381 Yes, entry phone Good
## 5382 Yes, entry phone and locked gate/door Very good
## 5383 No, neither of these Bad
## 5384 <NA> <NA>
## 5385 No, neither of these Good
## 5386 No, neither of these Good
## 5387 Yes, entry phone and locked gate/door Very good
## 5388 No, neither of these Satisfactory
## 5389 No, neither of these Good
## 5390 No, neither of these Very good
## 5391 No, neither of these Good
## 5392 No, neither of these Satisfactory
## 5393 No, neither of these Good
## 5394 No, neither of these Good
## 5395 No, neither of these Satisfactory
## 5396 No, neither of these Satisfactory
## 5397 No, neither of these Good
## 5398 No, neither of these Good
## 5399 No, neither of these Satisfactory
## 5400 Yes, entry phone Good
## 5401 No, neither of these Very good
## 5402 No, neither of these Satisfactory
## 5403 No, neither of these Good
## 5404 No, neither of these Good
## 5405 No, neither of these Very good
## 5406 No, neither of these Satisfactory
## 5407 <NA> <NA>
## 5408 <NA> <NA>
## 5409 No, neither of these Satisfactory
## 5410 <NA> <NA>
## 5411 <NA> <NA>
## 5412 No, neither of these Good
## 5413 <NA> Satisfactory
## 5414 No, neither of these Good
## 5415 No, neither of these Good
## 5416 No, neither of these Good
## 5417 No, neither of these Good
## 5418 <NA> <NA>
## 5419 No, neither of these Satisfactory
## 5420 No, neither of these Satisfactory
## 5421 No, neither of these Satisfactory
## 5422 No, neither of these Good
## 5423 No, neither of these Very good
## 5424 No, neither of these Good
## 5425 No, neither of these Good
## 5426 <NA> <NA>
## 5427 No, neither of these Very good
## 5428 No, neither of these Good
## 5429 No, neither of these Satisfactory
## 5430 No, neither of these Very good
## 5431 Yes, entry phone Very good
## 5432 No, neither of these Good
## 5433 No, neither of these Good
## 5434 No, neither of these Good
## 5435 No, neither of these Good
## 5436 No, neither of these Satisfactory
## 5437 No, neither of these Satisfactory
## 5438 Yes, entry phone and locked gate/door Good
## 5439 No, neither of these Good
## 5440 No, neither of these Satisfactory
## 5441 No, neither of these Very good
## 5442 Yes, locked gate/door Good
## 5443 No, neither of these Satisfactory
## 5444 <NA> <NA>
## 5445 No, neither of these Satisfactory
## 5446 Yes, locked gate/door Good
## 5447 <NA> <NA>
## 5448 No, neither of these Bad
## 5449 No, neither of these Bad
## 5450 No, neither of these Good
## 5451 No, neither of these Good
## 5452 No, neither of these Satisfactory
## 5453 No, neither of these Satisfactory
## 5454 No, neither of these Good
## 5455 <NA> <NA>
## 5456 No, neither of these Good
## 5457 No, neither of these Good
## 5458 No, neither of these Good
## 5459 No, neither of these Satisfactory
## 5460 No, neither of these Bad
## 5461 No, neither of these Good
## 5462 Yes, entry phone and locked gate/door Very good
## 5463 No, neither of these Very good
## 5464 No, neither of these Good
## 5465 No, neither of these Good
## 5466 No, neither of these Good
## 5467 No, neither of these Bad
## 5468 <NA> <NA>
## 5469 No, neither of these Good
## 5470 No, neither of these Good
## 5471 No, neither of these Very good
## 5472 Yes, entry phone Satisfactory
## 5473 No, neither of these Very good
## 5474 No, neither of these Good
## 5475 No, neither of these Good
## 5476 No, neither of these Good
## 5477 No, neither of these Good
## 5478 No, neither of these Good
## 5479 No, neither of these Good
## 5480 No, neither of these Good
## 5481 Yes, entry phone and locked gate/door Bad
## 5482 No, neither of these Bad
## 5483 No, neither of these Good
## 5484 Yes, entry phone and locked gate/door Good
## 5485 Yes, entry phone and locked gate/door Very good
## 5486 Yes, entry phone Good
## 5487 Yes, entry phone Satisfactory
## 5488 No, neither of these Satisfactory
## 5489 No, neither of these Good
## 5490 <NA> <NA>
## 5491 <NA> <NA>
## 5492 Yes, entry phone Good
## 5493 No, neither of these Satisfactory
## 5494 No, neither of these Good
## 5495 <NA> <NA>
## 5496 No, neither of these Good
## 5497 No, neither of these Good
## 5498 No, neither of these Satisfactory
## 5499 No, neither of these Very good
## 5500 No, neither of these Satisfactory
## 5501 No, neither of these Very good
## 5502 No, neither of these Satisfactory
## 5503 No, neither of these Good
## 5504 No, neither of these Good
## 5505 No, neither of these Good
## 5506 No, neither of these Very good
## 5507 No, neither of these Satisfactory
## 5508 No, neither of these Good
## 5509 <NA> <NA>
## 5510 No, neither of these Good
## 5511 No, neither of these Very good
## 5512 No, neither of these Satisfactory
## 5513 No, neither of these Good
## 5514 Yes, entry phone and locked gate/door Very good
## 5515 No, neither of these Very good
## 5516 No, neither of these Good
## 5517 No, neither of these Satisfactory
## 5518 No, neither of these Good
## 5519 <NA> <NA>
## 5520 <NA> <NA>
## 5521 No, neither of these Satisfactory
## 5522 <NA> <NA>
## 5523 Yes, entry phone and locked gate/door Good
## 5524 No, neither of these Good
## 5525 No, neither of these Good
## 5526 No, neither of these Very good
## 5527 <NA> <NA>
## 5528 <NA> <NA>
## 5529 No, neither of these Satisfactory
## 5530 <NA> <NA>
## 5531 No, neither of these Satisfactory
## 5532 No, neither of these Good
## 5533 Yes, locked gate/door Good
## 5534 No, neither of these Very good
## 5535 No, neither of these Satisfactory
## 5536 No, neither of these Satisfactory
## 5537 Yes, entry phone and locked gate/door Satisfactory
## 5538 <NA> <NA>
## 5539 No, neither of these Very good
## 5540 No, neither of these Good
## 5541 No, neither of these Good
## 5542 No, neither of these Satisfactory
## 5543 No, neither of these Good
## 5544 No, neither of these Very good
## 5545 No, neither of these Good
## 5546 No, neither of these Satisfactory
## 5547 No, neither of these Good
## 5548 Yes, entry phone and locked gate/door Very good
## 5549 No, neither of these Good
## 5550 No, neither of these Good
## 5551 No, neither of these Very good
## 5552 No, neither of these Very good
## 5553 <NA> <NA>
## 5554 No, neither of these Satisfactory
## 5555 Yes, entry phone and locked gate/door Good
## 5556 No, neither of these Good
## 5557 No, neither of these Very good
## 5558 No, neither of these Good
## 5559 No, neither of these Satisfactory
## 5560 Yes, entry phone and locked gate/door Very good
## 5561 No, neither of these Good
## 5562 No, neither of these Good
## 5563 <NA> <NA>
## 5564 No, neither of these Good
## 5565 No, neither of these Very good
## 5566 No, neither of these Satisfactory
## 5567 No, neither of these Good
## 5568 No, neither of these Good
## 5569 No, neither of these Very good
## 5570 Yes, entry phone and locked gate/door Satisfactory
## 5571 No, neither of these Good
## 5572 Yes, entry phone and locked gate/door Satisfactory
## 5573 No, neither of these Good
## 5574 No, neither of these Good
## 5575 No, neither of these Satisfactory
## 5576 No, neither of these Good
## 5577 No, neither of these Satisfactory
## 5578 No, neither of these Very good
## 5579 No, neither of these Satisfactory
## 5580 No, neither of these Good
## 5581 No, neither of these Good
## 5582 No, neither of these Satisfactory
## 5583 No, neither of these Good
## 5584 <NA> <NA>
## 5585 No, neither of these Good
## 5586 Yes, entry phone and locked gate/door Satisfactory
## 5587 No, neither of these Satisfactory
## 5588 No, neither of these Good
## 5589 <NA> <NA>
## 5590 No, neither of these Good
## 5591 No, neither of these Good
## 5592 <NA> <NA>
## 5593 No, neither of these Bad
## 5594 <NA> <NA>
## 5595 No, neither of these Very good
## 5596 Yes, entry phone Satisfactory
## 5597 No, neither of these Good
## 5598 No, neither of these Good
## 5599 No, neither of these Good
## 5600 No, neither of these Good
## littera vandaa
## 1 Small amount None or almost none
## 2 None or almost none None or almost none
## 3 None or almost none None or almost none
## 4 Large amount None or almost none
## 5 None or almost none None or almost none
## 6 None or almost none None or almost none
## 7 None or almost none None or almost none
## 8 None or almost none None or almost none
## 9 None or almost none None or almost none
## 10 None or almost none None or almost none
## 11 None or almost none None or almost none
## 12 None or almost none None or almost none
## 13 Small amount None or almost none
## 14 None or almost none None or almost none
## 15 Small amount Small amount
## 16 None or almost none None or almost none
## 17 None or almost none None or almost none
## 18 Large amount None or almost none
## 19 None or almost none None or almost none
## 20 None or almost none None or almost none
## 21 None or almost none None or almost none
## 22 Small amount None or almost none
## 23 None or almost none None or almost none
## 24 Large amount None or almost none
## 25 Small amount None or almost none
## 26 None or almost none None or almost none
## 27 Large amount Small amount
## 28 None or almost none None or almost none
## 29 None or almost none None or almost none
## 30 None or almost none None or almost none
## 31 None or almost none None or almost none
## 32 None or almost none None or almost none
## 33 Small amount Small amount
## 34 None or almost none None or almost none
## 35 None or almost none None or almost none
## 36 Small amount None or almost none
## 37 None or almost none None or almost none
## 38 None or almost none None or almost none
## 39 Small amount None or almost none
## 40 Small amount Small amount
## 41 None or almost none None or almost none
## 42 Small amount None or almost none
## 43 Small amount Small amount
## 44 None or almost none None or almost none
## 45 None or almost none None or almost none
## 46 None or almost none None or almost none
## 47 None or almost none None or almost none
## 48 None or almost none None or almost none
## 49 None or almost none None or almost none
## 50 None or almost none None or almost none
## 51 Small amount None or almost none
## 52 None or almost none None or almost none
## 53 None or almost none None or almost none
## 54 None or almost none None or almost none
## 55 Small amount None or almost none
## 56 None or almost none None or almost none
## 57 None or almost none None or almost none
## 58 Small amount None or almost none
## 59 None or almost none None or almost none
## 60 Small amount None or almost none
## 61 None or almost none None or almost none
## 62 None or almost none None or almost none
## 63 None or almost none None or almost none
## 64 None or almost none None or almost none
## 65 None or almost none None or almost none
## 66 None or almost none None or almost none
## 67 None or almost none None or almost none
## 68 None or almost none None or almost none
## 69 None or almost none None or almost none
## 70 None or almost none None or almost none
## 71 Small amount None or almost none
## 72 None or almost none None or almost none
## 73 None or almost none None or almost none
## 74 None or almost none None or almost none
## 75 None or almost none None or almost none
## 76 Small amount None or almost none
## 77 Small amount Small amount
## 78 None or almost none None or almost none
## 79 None or almost none None or almost none
## 80 None or almost none None or almost none
## 81 None or almost none None or almost none
## 82 None or almost none None or almost none
## 83 None or almost none None or almost none
## 84 None or almost none None or almost none
## 85 None or almost none None or almost none
## 86 None or almost none None or almost none
## 87 None or almost none None or almost none
## 88 None or almost none None or almost none
## 89 None or almost none None or almost none
## 90 Small amount None or almost none
## 91 None or almost none None or almost none
## 92 None or almost none None or almost none
## 93 Small amount None or almost none
## 94 Small amount None or almost none
## 95 None or almost none None or almost none
## 96 None or almost none None or almost none
## 97 None or almost none None or almost none
## 98 Small amount None or almost none
## 99 Small amount None or almost none
## 100 None or almost none None or almost none
## 101 None or almost none None or almost none
## 102 None or almost none None or almost none
## 103 None or almost none None or almost none
## 104 None or almost none None or almost none
## 105 None or almost none None or almost none
## 106 None or almost none None or almost none
## 107 Small amount None or almost none
## 108 None or almost none None or almost none
## 109 None or almost none None or almost none
## 110 None or almost none None or almost none
## 111 None or almost none None or almost none
## 112 Small amount None or almost none
## 113 None or almost none None or almost none
## 114 None or almost none None or almost none
## 115 Small amount None or almost none
## 116 None or almost none None or almost none
## 117 None or almost none None or almost none
## 118 None or almost none None or almost none
## 119 None or almost none None or almost none
## 120 None or almost none None or almost none
## 121 None or almost none None or almost none
## 122 None or almost none None or almost none
## 123 None or almost none None or almost none
## 124 Small amount None or almost none
## 125 None or almost none None or almost none
## 126 None or almost none None or almost none
## 127 None or almost none None or almost none
## 128 None or almost none None or almost none
## 129 Small amount None or almost none
## 130 Small amount Small amount
## 131 None or almost none None or almost none
## 132 None or almost none Small amount
## 133 None or almost none None or almost none
## 134 None or almost none None or almost none
## 135 None or almost none None or almost none
## 136 None or almost none None or almost none
## 137 None or almost none None or almost none
## 138 None or almost none None or almost none
## 139 None or almost none None or almost none
## 140 Small amount None or almost none
## 141 None or almost none None or almost none
## 142 None or almost none None or almost none
## 143 Large amount None or almost none
## 144 None or almost none None or almost none
## 145 None or almost none None or almost none
## 146 Small amount None or almost none
## 147 None or almost none None or almost none
## 148 None or almost none None or almost none
## 149 None or almost none None or almost none
## 150 None or almost none None or almost none
## 151 None or almost none None or almost none
## 152 Small amount Small amount
## 153 Small amount None or almost none
## 154 None or almost none None or almost none
## 155 None or almost none None or almost none
## 156 None or almost none None or almost none
## 157 None or almost none None or almost none
## 158 Small amount Small amount
## 159 None or almost none None or almost none
## 160 None or almost none None or almost none
## 161 None or almost none None or almost none
## 162 Large amount None or almost none
## 163 None or almost none None or almost none
## 164 None or almost none None or almost none
## 165 None or almost none None or almost none
## 166 Small amount None or almost none
## 167 Small amount Small amount
## 168 None or almost none None or almost none
## 169 None or almost none None or almost none
## 170 Small amount None or almost none
## 171 None or almost none None or almost none
## 172 None or almost none None or almost none
## 173 None or almost none Small amount
## 174 None or almost none None or almost none
## 175 None or almost none None or almost none
## 176 None or almost none None or almost none
## 177 Small amount Small amount
## 178 None or almost none None or almost none
## 179 None or almost none None or almost none
## 180 None or almost none None or almost none
## 181 None or almost none None or almost none
## 182 None or almost none None or almost none
## 183 Very large amount Small amount
## 184 None or almost none None or almost none
## 185 None or almost none None or almost none
## 186 None or almost none None or almost none
## 187 Small amount None or almost none
## 188 Small amount Small amount
## 189 None or almost none None or almost none
## 190 None or almost none None or almost none
## 191 Large amount None or almost none
## 192 Small amount None or almost none
## 193 Small amount Small amount
## 194 Small amount None or almost none
## 195 Small amount None or almost none
## 196 Small amount None or almost none
## 197 None or almost none None or almost none
## 198 None or almost none None or almost none
## 199 None or almost none None or almost none
## 200 None or almost none None or almost none
## 201 None or almost none None or almost none
## 202 None or almost none None or almost none
## 203 None or almost none None or almost none
## 204 None or almost none None or almost none
## 205 None or almost none None or almost none
## 206 None or almost none None or almost none
## 207 Small amount None or almost none
## 208 None or almost none None or almost none
## 209 None or almost none None or almost none
## 210 None or almost none None or almost none
## 211 Small amount None or almost none
## 212 None or almost none None or almost none
## 213 None or almost none None or almost none
## 214 None or almost none None or almost none
## 215 None or almost none None or almost none
## 216 None or almost none None or almost none
## 217 None or almost none None or almost none
## 218 None or almost none None or almost none
## 219 Small amount None or almost none
## 220 None or almost none None or almost none
## 221 None or almost none None or almost none
## 222 None or almost none None or almost none
## 223 None or almost none None or almost none
## 224 None or almost none None or almost none
## 225 None or almost none None or almost none
## 226 None or almost none None or almost none
## 227 None or almost none None or almost none
## 228 None or almost none None or almost none
## 229 None or almost none None or almost none
## 230 Small amount Small amount
## 231 None or almost none None or almost none
## 232 None or almost none None or almost none
## 233 None or almost none None or almost none
## 234 None or almost none None or almost none
## 235 Small amount None or almost none
## 236 None or almost none None or almost none
## 237 None or almost none None or almost none
## 238 None or almost none None or almost none
## 239 None or almost none None or almost none
## 240 None or almost none None or almost none
## 241 None or almost none None or almost none
## 242 Small amount None or almost none
## 243 None or almost none None or almost none
## 244 Small amount None or almost none
## 245 None or almost none None or almost none
## 246 None or almost none None or almost none
## 247 None or almost none None or almost none
## 248 None or almost none None or almost none
## 249 None or almost none None or almost none
## 250 None or almost none None or almost none
## 251 None or almost none None or almost none
## 252 None or almost none None or almost none
## 253 None or almost none None or almost none
## 254 None or almost none None or almost none
## 255 None or almost none None or almost none
## 256 Small amount Small amount
## 257 None or almost none None or almost none
## 258 None or almost none None or almost none
## 259 None or almost none None or almost none
## 260 None or almost none None or almost none
## 261 Small amount Small amount
## 262 None or almost none None or almost none
## 263 None or almost none None or almost none
## 264 Large amount Small amount
## 265 None or almost none None or almost none
## 266 Large amount None or almost none
## 267 None or almost none None or almost none
## 268 Small amount Small amount
## 269 None or almost none None or almost none
## 270 Small amount None or almost none
## 271 None or almost none None or almost none
## 272 None or almost none None or almost none
## 273 None or almost none None or almost none
## 274 None or almost none None or almost none
## 275 None or almost none None or almost none
## 276 Large amount Large amount
## 277 None or almost none None or almost none
## 278 None or almost none None or almost none
## 279 None or almost none None or almost none
## 280 None or almost none None or almost none
## 281 None or almost none None or almost none
## 282 None or almost none None or almost none
## 283 Small amount None or almost none
## 284 Small amount None or almost none
## 285 None or almost none None or almost none
## 286 None or almost none None or almost none
## 287 None or almost none None or almost none
## 288 None or almost none None or almost none
## 289 None or almost none None or almost none
## 290 None or almost none None or almost none
## 291 None or almost none None or almost none
## 292 None or almost none None or almost none
## 293 None or almost none None or almost none
## 294 Small amount Small amount
## 295 None or almost none None or almost none
## 296 None or almost none None or almost none
## 297 None or almost none None or almost none
## 298 None or almost none None or almost none
## 299 None or almost none None or almost none
## 300 None or almost none None or almost none
## 301 None or almost none None or almost none
## 302 None or almost none None or almost none
## 303 None or almost none None or almost none
## 304 None or almost none None or almost none
## 305 Small amount None or almost none
## 306 None or almost none None or almost none
## 307 Small amount None or almost none
## 308 None or almost none Small amount
## 309 None or almost none None or almost none
## 310 Small amount None or almost none
## 311 None or almost none None or almost none
## 312 None or almost none None or almost none
## 313 None or almost none None or almost none
## 314 Small amount Small amount
## 315 None or almost none None or almost none
## 316 None or almost none None or almost none
## 317 None or almost none None or almost none
## 318 None or almost none None or almost none
## 319 Small amount None or almost none
## 320 None or almost none None or almost none
## 321 Small amount None or almost none
## 322 None or almost none None or almost none
## 323 None or almost none None or almost none
## 324 Small amount None or almost none
## 325 None or almost none None or almost none
## 326 None or almost none None or almost none
## 327 None or almost none None or almost none
## 328 Small amount Small amount
## 329 None or almost none None or almost none
## 330 None or almost none None or almost none
## 331 None or almost none None or almost none
## 332 None or almost none None or almost none
## 333 None or almost none None or almost none
## 334 None or almost none None or almost none
## 335 None or almost none None or almost none
## 336 None or almost none None or almost none
## 337 None or almost none None or almost none
## 338 None or almost none None or almost none
## 339 Small amount Small amount
## 340 None or almost none None or almost none
## 341 None or almost none None or almost none
## 342 None or almost none None or almost none
## 343 None or almost none None or almost none
## 344 None or almost none None or almost none
## 345 None or almost none None or almost none
## 346 Small amount None or almost none
## 347 None or almost none None or almost none
## 348 None or almost none None or almost none
## 349 None or almost none None or almost none
## 350 Small amount Small amount
## 351 None or almost none None or almost none
## 352 Small amount Small amount
## 353 Small amount Small amount
## 354 None or almost none None or almost none
## 355 None or almost none None or almost none
## 356 None or almost none None or almost none
## 357 None or almost none None or almost none
## 358 None or almost none None or almost none
## 359 None or almost none None or almost none
## 360 Small amount Small amount
## 361 None or almost none None or almost none
## 362 None or almost none None or almost none
## 363 Small amount None or almost none
## 364 None or almost none None or almost none
## 365 Large amount None or almost none
## 366 None or almost none None or almost none
## 367 None or almost none None or almost none
## 368 None or almost none None or almost none
## 369 Small amount Small amount
## 370 None or almost none None or almost none
## 371 None or almost none None or almost none
## 372 None or almost none None or almost none
## 373 None or almost none None or almost none
## 374 None or almost none None or almost none
## 375 Small amount None or almost none
## 376 Small amount None or almost none
## 377 None or almost none None or almost none
## 378 Small amount None or almost none
## 379 None or almost none None or almost none
## 380 Large amount Small amount
## 381 Small amount None or almost none
## 382 None or almost none None or almost none
## 383 None or almost none None or almost none
## 384 None or almost none None or almost none
## 385 None or almost none None or almost none
## 386 None or almost none None or almost none
## 387 None or almost none None or almost none
## 388 Small amount None or almost none
## 389 None or almost none None or almost none
## 390 None or almost none None or almost none
## 391 None or almost none None or almost none
## 392 None or almost none None or almost none
## 393 None or almost none None or almost none
## 394 Small amount None or almost none
## 395 None or almost none None or almost none
## 396 None or almost none None or almost none
## 397 None or almost none None or almost none
## 398 None or almost none None or almost none
## 399 None or almost none None or almost none
## 400 None or almost none None or almost none
## 401 None or almost none None or almost none
## 402 None or almost none None or almost none
## 403 None or almost none None or almost none
## 404 None or almost none None or almost none
## 405 Small amount None or almost none
## 406 None or almost none None or almost none
## 407 None or almost none None or almost none
## 408 None or almost none None or almost none
## 409 None or almost none None or almost none
## 410 None or almost none None or almost none
## 411 Small amount Small amount
## 412 None or almost none None or almost none
## 413 None or almost none None or almost none
## 414 None or almost none None or almost none
## 415 None or almost none None or almost none
## 416 Small amount None or almost none
## 417 None or almost none None or almost none
## 418 None or almost none None or almost none
## 419 Small amount None or almost none
## 420 None or almost none None or almost none
## 421 None or almost none None or almost none
## 422 None or almost none None or almost none
## 423 None or almost none None or almost none
## 424 None or almost none None or almost none
## 425 None or almost none None or almost none
## 426 None or almost none None or almost none
## 427 Small amount None or almost none
## 428 None or almost none None or almost none
## 429 None or almost none None or almost none
## 430 None or almost none None or almost none
## 431 None or almost none None or almost none
## 432 None or almost none None or almost none
## 433 None or almost none None or almost none
## 434 Small amount None or almost none
## 435 None or almost none None or almost none
## 436 None or almost none None or almost none
## 437 None or almost none None or almost none
## 438 None or almost none None or almost none
## 439 None or almost none None or almost none
## 440 None or almost none None or almost none
## 441 None or almost none None or almost none
## 442 None or almost none None or almost none
## 443 None or almost none None or almost none
## 444 Small amount None or almost none
## 445 None or almost none None or almost none
## 446 Small amount None or almost none
## 447 None or almost none None or almost none
## 448 None or almost none None or almost none
## 449 None or almost none None or almost none
## 450 None or almost none None or almost none
## 451 None or almost none None or almost none
## 452 None or almost none None or almost none
## 453 None or almost none None or almost none
## 454 None or almost none None or almost none
## 455 Small amount Small amount
## 456 None or almost none None or almost none
## 457 Small amount Small amount
## 458 None or almost none None or almost none
## 459 None or almost none None or almost none
## 460 None or almost none None or almost none
## 461 None or almost none None or almost none
## 462 None or almost none None or almost none
## 463 Small amount None or almost none
## 464 None or almost none None or almost none
## 465 Small amount Small amount
## 466 None or almost none None or almost none
## 467 None or almost none None or almost none
## 468 None or almost none None or almost none
## 469 None or almost none None or almost none
## 470 Small amount None or almost none
## 471 None or almost none None or almost none
## 472 None or almost none None or almost none
## 473 None or almost none None or almost none
## 474 Small amount None or almost none
## 475 None or almost none None or almost none
## 476 None or almost none None or almost none
## 477 Small amount None or almost none
## 478 Small amount None or almost none
## 479 None or almost none None or almost none
## 480 Small amount None or almost none
## 481 None or almost none None or almost none
## 482 Small amount None or almost none
## 483 Small amount None or almost none
## 484 Small amount None or almost none
## 485 None or almost none None or almost none
## 486 None or almost none None or almost none
## 487 None or almost none None or almost none
## 488 None or almost none None or almost none
## 489 None or almost none None or almost none
## 490 Small amount Small amount
## 491 None or almost none None or almost none
## 492 None or almost none None or almost none
## 493 None or almost none None or almost none
## 494 None or almost none None or almost none
## 495 Small amount None or almost none
## 496 Large amount None or almost none
## 497 Large amount None or almost none
## 498 None or almost none None or almost none
## 499 Small amount None or almost none
## 500 None or almost none None or almost none
## 501 None or almost none None or almost none
## 502 None or almost none None or almost none
## 503 None or almost none None or almost none
## 504 Small amount None or almost none
## 505 Large amount None or almost none
## 506 None or almost none None or almost none
## 507 None or almost none None or almost none
## 508 None or almost none None or almost none
## 509 None or almost none None or almost none
## 510 Small amount Small amount
## 511 None or almost none None or almost none
## 512 None or almost none None or almost none
## 513 None or almost none None or almost none
## 514 None or almost none None or almost none
## 515 None or almost none None or almost none
## 516 None or almost none None or almost none
## 517 None or almost none None or almost none
## 518 None or almost none None or almost none
## 519 None or almost none None or almost none
## 520 None or almost none None or almost none
## 521 Small amount Small amount
## 522 None or almost none None or almost none
## 523 None or almost none None or almost none
## 524 None or almost none None or almost none
## 525 None or almost none None or almost none
## 526 None or almost none None or almost none
## 527 None or almost none None or almost none
## 528 None or almost none None or almost none
## 529 Small amount None or almost none
## 530 None or almost none None or almost none
## 531 None or almost none None or almost none
## 532 None or almost none None or almost none
## 533 None or almost none None or almost none
## 534 None or almost none None or almost none
## 535 Small amount Small amount
## 536 Small amount None or almost none
## 537 None or almost none None or almost none
## 538 None or almost none None or almost none
## 539 None or almost none None or almost none
## 540 Large amount Small amount
## 541 None or almost none None or almost none
## 542 None or almost none None or almost none
## 543 None or almost none None or almost none
## 544 Small amount None or almost none
## 545 None or almost none None or almost none
## 546 None or almost none None or almost none
## 547 None or almost none None or almost none
## 548 None or almost none None or almost none
## 549 None or almost none None or almost none
## 550 Small amount None or almost none
## 551 None or almost none None or almost none
## 552 Small amount None or almost none
## 553 None or almost none None or almost none
## 554 None or almost none None or almost none
## 555 Small amount None or almost none
## 556 None or almost none None or almost none
## 557 None or almost none None or almost none
## 558 Small amount None or almost none
## 559 Small amount Small amount
## 560 None or almost none None or almost none
## 561 None or almost none None or almost none
## 562 None or almost none None or almost none
## 563 None or almost none None or almost none
## 564 None or almost none None or almost none
## 565 None or almost none None or almost none
## 566 None or almost none None or almost none
## 567 None or almost none None or almost none
## 568 Very large amount Small amount
## 569 None or almost none None or almost none
## 570 None or almost none None or almost none
## 571 None or almost none None or almost none
## 572 None or almost none None or almost none
## 573 None or almost none None or almost none
## 574 None or almost none None or almost none
## 575 None or almost none None or almost none
## 576 None or almost none None or almost none
## 577 None or almost none None or almost none
## 578 None or almost none None or almost none
## 579 None or almost none None or almost none
## 580 Small amount Small amount
## 581 None or almost none None or almost none
## 582 None or almost none None or almost none
## 583 None or almost none None or almost none
## 584 Small amount None or almost none
## 585 None or almost none None or almost none
## 586 None or almost none None or almost none
## 587 None or almost none None or almost none
## 588 Small amount Small amount
## 589 None or almost none None or almost none
## 590 None or almost none None or almost none
## 591 None or almost none None or almost none
## 592 None or almost none None or almost none
## 593 None or almost none None or almost none
## 594 None or almost none None or almost none
## 595 None or almost none None or almost none
## 596 None or almost none None or almost none
## 597 None or almost none None or almost none
## 598 None or almost none None or almost none
## 599 None or almost none None or almost none
## 600 None or almost none None or almost none
## 601 Small amount None or almost none
## 602 None or almost none None or almost none
## 603 None or almost none None or almost none
## 604 None or almost none None or almost none
## 605 Small amount None or almost none
## 606 None or almost none None or almost none
## 607 None or almost none None or almost none
## 608 Small amount Small amount
## 609 None or almost none None or almost none
## 610 Large amount Small amount
## 611 None or almost none None or almost none
## 612 Small amount Small amount
## 613 None or almost none None or almost none
## 614 None or almost none None or almost none
## 615 None or almost none None or almost none
## 616 None or almost none None or almost none
## 617 None or almost none None or almost none
## 618 None or almost none None or almost none
## 619 Small amount None or almost none
## 620 Small amount None or almost none
## 621 Small amount None or almost none
## 622 None or almost none None or almost none
## 623 None or almost none None or almost none
## 624 None or almost none None or almost none
## 625 None or almost none None or almost none
## 626 None or almost none None or almost none
## 627 Small amount Small amount
## 628 None or almost none None or almost none
## 629 None or almost none None or almost none
## 630 Small amount None or almost none
## 631 Small amount None or almost none
## 632 None or almost none None or almost none
## 633 None or almost none None or almost none
## 634 None or almost none None or almost none
## 635 None or almost none None or almost none
## 636 None or almost none None or almost none
## 637 None or almost none None or almost none
## 638 Small amount None or almost none
## 639 Small amount Small amount
## 640 None or almost none None or almost none
## 641 None or almost none None or almost none
## 642 None or almost none None or almost none
## 643 None or almost none None or almost none
## 644 None or almost none None or almost none
## 645 Small amount None or almost none
## 646 None or almost none None or almost none
## 647 None or almost none None or almost none
## 648 None or almost none None or almost none
## 649 None or almost none None or almost none
## 650 None or almost none None or almost none
## 651 None or almost none None or almost none
## 652 None or almost none None or almost none
## 653 None or almost none None or almost none
## 654 None or almost none None or almost none
## 655 None or almost none None or almost none
## 656 None or almost none None or almost none
## 657 Small amount None or almost none
## 658 None or almost none None or almost none
## 659 None or almost none None or almost none
## 660 None or almost none None or almost none
## 661 None or almost none None or almost none
## 662 None or almost none None or almost none
## 663 None or almost none None or almost none
## 664 Small amount None or almost none
## 665 None or almost none None or almost none
## 666 Large amount None or almost none
## 667 Small amount None or almost none
## 668 Large amount Small amount
## 669 None or almost none None or almost none
## 670 None or almost none None or almost none
## 671 None or almost none None or almost none
## 672 None or almost none None or almost none
## 673 None or almost none None or almost none
## 674 Small amount Small amount
## 675 None or almost none None or almost none
## 676 None or almost none None or almost none
## 677 None or almost none None or almost none
## 678 None or almost none None or almost none
## 679 None or almost none None or almost none
## 680 None or almost none None or almost none
## 681 Small amount None or almost none
## 682 None or almost none None or almost none
## 683 None or almost none None or almost none
## 684 None or almost none None or almost none
## 685 None or almost none None or almost none
## 686 None or almost none None or almost none
## 687 Small amount None or almost none
## 688 None or almost none None or almost none
## 689 None or almost none None or almost none
## 690 None or almost none None or almost none
## 691 Small amount None or almost none
## 692 None or almost none None or almost none
## 693 Small amount None or almost none
## 694 None or almost none None or almost none
## 695 Small amount Small amount
## 696 Small amount None or almost none
## 697 None or almost none None or almost none
## 698 None or almost none None or almost none
## 699 None or almost none None or almost none
## 700 None or almost none None or almost none
## 701 None or almost none None or almost none
## 702 None or almost none None or almost none
## 703 None or almost none None or almost none
## 704 None or almost none None or almost none
## 705 None or almost none None or almost none
## 706 None or almost none None or almost none
## 707 None or almost none None or almost none
## 708 None or almost none None or almost none
## 709 Large amount Small amount
## 710 None or almost none None or almost none
## 711 None or almost none None or almost none
## 712 None or almost none None or almost none
## 713 None or almost none None or almost none
## 714 None or almost none None or almost none
## 715 Small amount None or almost none
## 716 None or almost none None or almost none
## 717 Small amount None or almost none
## 718 None or almost none None or almost none
## 719 None or almost none None or almost none
## 720 Small amount Small amount
## 721 None or almost none None or almost none
## 722 None or almost none None or almost none
## 723 None or almost none None or almost none
## 724 None or almost none None or almost none
## 725 Small amount Small amount
## 726 None or almost none None or almost none
## 727 None or almost none None or almost none
## 728 None or almost none None or almost none
## 729 None or almost none None or almost none
## 730 None or almost none None or almost none
## 731 None or almost none None or almost none
## 732 None or almost none None or almost none
## 733 Small amount Small amount
## 734 None or almost none None or almost none
## 735 None or almost none None or almost none
## 736 Small amount None or almost none
## 737 Small amount None or almost none
## 738 None or almost none None or almost none
## 739 None or almost none None or almost none
## 740 None or almost none None or almost none
## 741 None or almost none None or almost none
## 742 None or almost none None or almost none
## 743 None or almost none None or almost none
## 744 Large amount Small amount
## 745 None or almost none None or almost none
## 746 None or almost none None or almost none
## 747 None or almost none None or almost none
## 748 Small amount Small amount
## 749 None or almost none None or almost none
## 750 None or almost none None or almost none
## 751 Small amount None or almost none
## 752 None or almost none None or almost none
## 753 Small amount Small amount
## 754 None or almost none None or almost none
## 755 None or almost none None or almost none
## 756 None or almost none None or almost none
## 757 None or almost none None or almost none
## 758 Small amount Small amount
## 759 None or almost none None or almost none
## 760 Small amount None or almost none
## 761 Small amount None or almost none
## 762 Small amount None or almost none
## 763 None or almost none None or almost none
## 764 None or almost none None or almost none
## 765 Small amount Small amount
## 766 None or almost none None or almost none
## 767 None or almost none None or almost none
## 768 None or almost none None or almost none
## 769 None or almost none None or almost none
## 770 None or almost none None or almost none
## 771 None or almost none None or almost none
## 772 None or almost none None or almost none
## 773 None or almost none None or almost none
## 774 None or almost none None or almost none
## 775 None or almost none None or almost none
## 776 None or almost none None or almost none
## 777 None or almost none None or almost none
## 778 None or almost none None or almost none
## 779 None or almost none None or almost none
## 780 Small amount None or almost none
## 781 None or almost none None or almost none
## 782 None or almost none None or almost none
## 783 None or almost none None or almost none
## 784 Small amount None or almost none
## 785 Large amount Small amount
## 786 None or almost none None or almost none
## 787 None or almost none None or almost none
## 788 None or almost none None or almost none
## 789 None or almost none None or almost none
## 790 Small amount None or almost none
## 791 None or almost none None or almost none
## 792 None or almost none None or almost none
## 793 None or almost none None or almost none
## 794 None or almost none None or almost none
## 795 Small amount None or almost none
## 796 Small amount Small amount
## 797 None or almost none None or almost none
## 798 None or almost none None or almost none
## 799 None or almost none None or almost none
## 800 None or almost none None or almost none
## 801 None or almost none None or almost none
## 802 None or almost none None or almost none
## 803 Small amount Small amount
## 804 None or almost none None or almost none
## 805 Small amount None or almost none
## 806 None or almost none None or almost none
## 807 Small amount None or almost none
## 808 Small amount Small amount
## 809 Small amount None or almost none
## 810 None or almost none None or almost none
## 811 Small amount None or almost none
## 812 None or almost none None or almost none
## 813 Large amount Small amount
## 814 None or almost none None or almost none
## 815 None or almost none None or almost none
## 816 None or almost none None or almost none
## 817 None or almost none None or almost none
## 818 None or almost none None or almost none
## 819 None or almost none None or almost none
## 820 None or almost none None or almost none
## 821 None or almost none None or almost none
## 822 Small amount Small amount
## 823 None or almost none None or almost none
## 824 None or almost none None or almost none
## 825 Small amount None or almost none
## 826 None or almost none None or almost none
## 827 None or almost none None or almost none
## 828 None or almost none None or almost none
## 829 None or almost none None or almost none
## 830 Small amount None or almost none
## 831 None or almost none None or almost none
## 832 None or almost none None or almost none
## 833 None or almost none None or almost none
## 834 Small amount None or almost none
## 835 None or almost none None or almost none
## 836 None or almost none None or almost none
## 837 None or almost none None or almost none
## 838 Small amount Small amount
## 839 None or almost none None or almost none
## 840 None or almost none None or almost none
## 841 Small amount None or almost none
## 842 None or almost none None or almost none
## 843 None or almost none Small amount
## 844 Small amount None or almost none
## 845 None or almost none None or almost none
## 846 None or almost none None or almost none
## 847 None or almost none None or almost none
## 848 None or almost none None or almost none
## 849 None or almost none None or almost none
## 850 None or almost none None or almost none
## 851 Small amount None or almost none
## 852 None or almost none None or almost none
## 853 None or almost none None or almost none
## 854 None or almost none None or almost none
## 855 None or almost none None or almost none
## 856 None or almost none None or almost none
## 857 None or almost none None or almost none
## 858 None or almost none None or almost none
## 859 None or almost none None or almost none
## 860 None or almost none None or almost none
## 861 None or almost none None or almost none
## 862 None or almost none None or almost none
## 863 None or almost none None or almost none
## 864 None or almost none None or almost none
## 865 None or almost none None or almost none
## 866 None or almost none None or almost none
## 867 Small amount None or almost none
## 868 None or almost none None or almost none
## 869 None or almost none None or almost none
## 870 None or almost none None or almost none
## 871 Very large amount Large amount
## 872 None or almost none None or almost none
## 873 Small amount Small amount
## 874 None or almost none None or almost none
## 875 Small amount Small amount
## 876 None or almost none None or almost none
## 877 None or almost none None or almost none
## 878 None or almost none None or almost none
## 879 None or almost none None or almost none
## 880 Small amount None or almost none
## 881 Small amount Small amount
## 882 None or almost none None or almost none
## 883 None or almost none None or almost none
## 884 None or almost none None or almost none
## 885 Small amount None or almost none
## 886 None or almost none None or almost none
## 887 None or almost none None or almost none
## 888 None or almost none None or almost none
## 889 None or almost none None or almost none
## 890 None or almost none None or almost none
## 891 Small amount Small amount
## 892 Small amount None or almost none
## 893 None or almost none None or almost none
## 894 Small amount None or almost none
## 895 None or almost none None or almost none
## 896 None or almost none None or almost none
## 897 None or almost none None or almost none
## 898 Large amount Large amount
## 899 None or almost none None or almost none
## 900 Small amount Small amount
## 901 None or almost none None or almost none
## 902 None or almost none None or almost none
## 903 Small amount None or almost none
## 904 None or almost none None or almost none
## 905 None or almost none None or almost none
## 906 None or almost none None or almost none
## 907 Small amount None or almost none
## 908 None or almost none None or almost none
## 909 Small amount None or almost none
## 910 None or almost none None or almost none
## 911 None or almost none None or almost none
## 912 None or almost none None or almost none
## 913 None or almost none None or almost none
## 914 Small amount Small amount
## 915 None or almost none None or almost none
## 916 None or almost none None or almost none
## 917 None or almost none None or almost none
## 918 None or almost none None or almost none
## 919 None or almost none None or almost none
## 920 None or almost none None or almost none
## 921 None or almost none None or almost none
## 922 None or almost none None or almost none
## 923 None or almost none None or almost none
## 924 None or almost none None or almost none
## 925 None or almost none None or almost none
## 926 None or almost none None or almost none
## 927 None or almost none None or almost none
## 928 None or almost none None or almost none
## 929 None or almost none None or almost none
## 930 None or almost none None or almost none
## 931 None or almost none None or almost none
## 932 None or almost none None or almost none
## 933 None or almost none None or almost none
## 934 Small amount None or almost none
## 935 Small amount Small amount
## 936 None or almost none None or almost none
## 937 Small amount None or almost none
## 938 Small amount None or almost none
## 939 None or almost none None or almost none
## 940 None or almost none None or almost none
## 941 None or almost none None or almost none
## 942 None or almost none None or almost none
## 943 None or almost none None or almost none
## 944 None or almost none None or almost none
## 945 None or almost none None or almost none
## 946 None or almost none None or almost none
## 947 None or almost none None or almost none
## 948 None or almost none None or almost none
## 949 Small amount Small amount
## 950 Small amount None or almost none
## 951 None or almost none None or almost none
## 952 None or almost none None or almost none
## 953 None or almost none None or almost none
## 954 None or almost none None or almost none
## 955 Small amount Large amount
## 956 None or almost none None or almost none
## 957 None or almost none None or almost none
## 958 None or almost none None or almost none
## 959 None or almost none None or almost none
## 960 None or almost none None or almost none
## 961 None or almost none None or almost none
## 962 None or almost none None or almost none
## 963 None or almost none None or almost none
## 964 None or almost none None or almost none
## 965 None or almost none None or almost none
## 966 None or almost none None or almost none
## 967 None or almost none None or almost none
## 968 None or almost none None or almost none
## 969 None or almost none None or almost none
## 970 None or almost none None or almost none
## 971 Small amount None or almost none
## 972 None or almost none None or almost none
## 973 None or almost none None or almost none
## 974 None or almost none None or almost none
## 975 None or almost none None or almost none
## 976 None or almost none None or almost none
## 977 None or almost none None or almost none
## 978 Large amount None or almost none
## 979 None or almost none None or almost none
## 980 None or almost none None or almost none
## 981 None or almost none None or almost none
## 982 None or almost none None or almost none
## 983 None or almost none None or almost none
## 984 None or almost none None or almost none
## 985 None or almost none None or almost none
## 986 None or almost none None or almost none
## 987 None or almost none None or almost none
## 988 None or almost none None or almost none
## 989 None or almost none None or almost none
## 990 Small amount None or almost none
## 991 None or almost none Small amount
## 992 None or almost none None or almost none
## 993 None or almost none None or almost none
## 994 None or almost none None or almost none
## 995 None or almost none None or almost none
## 996 None or almost none None or almost none
## 997 None or almost none None or almost none
## 998 None or almost none None or almost none
## 999 None or almost none None or almost none
## 1000 None or almost none None or almost none
## 1001 None or almost none None or almost none
## 1002 None or almost none None or almost none
## 1003 Small amount None or almost none
## 1004 None or almost none None or almost none
## 1005 None or almost none None or almost none
## 1006 Small amount None or almost none
## 1007 Small amount None or almost none
## 1008 None or almost none None or almost none
## 1009 None or almost none None or almost none
## 1010 None or almost none None or almost none
## 1011 None or almost none None or almost none
## 1012 Small amount None or almost none
## 1013 None or almost none None or almost none
## 1014 None or almost none None or almost none
## 1015 None or almost none None or almost none
## 1016 None or almost none None or almost none
## 1017 None or almost none None or almost none
## 1018 None or almost none None or almost none
## 1019 None or almost none None or almost none
## 1020 None or almost none None or almost none
## 1021 None or almost none None or almost none
## 1022 Small amount None or almost none
## 1023 Small amount None or almost none
## 1024 None or almost none None or almost none
## 1025 Small amount None or almost none
## 1026 None or almost none None or almost none
## 1027 None or almost none None or almost none
## 1028 None or almost none None or almost none
## 1029 None or almost none None or almost none
## 1030 None or almost none None or almost none
## 1031 None or almost none None or almost none
## 1032 None or almost none None or almost none
## 1033 None or almost none None or almost none
## 1034 None or almost none None or almost none
## 1035 None or almost none None or almost none
## 1036 None or almost none None or almost none
## 1037 None or almost none None or almost none
## 1038 None or almost none None or almost none
## 1039 None or almost none None or almost none
## 1040 Small amount Small amount
## 1041 Small amount None or almost none
## 1042 None or almost none None or almost none
## 1043 None or almost none None or almost none
## 1044 None or almost none None or almost none
## 1045 None or almost none None or almost none
## 1046 None or almost none None or almost none
## 1047 None or almost none None or almost none
## 1048 Small amount Small amount
## 1049 Small amount None or almost none
## 1050 None or almost none None or almost none
## 1051 None or almost none None or almost none
## 1052 Small amount None or almost none
## 1053 None or almost none None or almost none
## 1054 None or almost none None or almost none
## 1055 Small amount Small amount
## 1056 None or almost none None or almost none
## 1057 None or almost none None or almost none
## 1058 None or almost none None or almost none
## 1059 None or almost none None or almost none
## 1060 None or almost none None or almost none
## 1061 Small amount None or almost none
## 1062 None or almost none None or almost none
## 1063 None or almost none None or almost none
## 1064 None or almost none None or almost none
## 1065 None or almost none None or almost none
## 1066 None or almost none None or almost none
## 1067 None or almost none None or almost none
## 1068 None or almost none None or almost none
## 1069 None or almost none None or almost none
## 1070 None or almost none None or almost none
## 1071 Small amount None or almost none
## 1072 Small amount None or almost none
## 1073 None or almost none None or almost none
## 1074 None or almost none None or almost none
## 1075 Small amount None or almost none
## 1076 None or almost none None or almost none
## 1077 None or almost none None or almost none
## 1078 None or almost none None or almost none
## 1079 None or almost none None or almost none
## 1080 None or almost none None or almost none
## 1081 None or almost none None or almost none
## 1082 None or almost none None or almost none
## 1083 None or almost none None or almost none
## 1084 None or almost none None or almost none
## 1085 Small amount Small amount
## 1086 None or almost none None or almost none
## 1087 None or almost none None or almost none
## 1088 Small amount None or almost none
## 1089 None or almost none None or almost none
## 1090 None or almost none None or almost none
## 1091 None or almost none None or almost none
## 1092 None or almost none None or almost none
## 1093 Large amount Large amount
## 1094 Small amount Small amount
## 1095 None or almost none None or almost none
## 1096 Small amount None or almost none
## 1097 Small amount None or almost none
## 1098 Small amount None or almost none
## 1099 None or almost none None or almost none
## 1100 None or almost none Small amount
## 1101 None or almost none None or almost none
## 1102 None or almost none None or almost none
## 1103 None or almost none None or almost none
## 1104 Large amount None or almost none
## 1105 Small amount None or almost none
## 1106 Small amount None or almost none
## 1107 None or almost none None or almost none
## 1108 Small amount None or almost none
## 1109 Very large amount None or almost none
## 1110 Small amount None or almost none
## 1111 Small amount None or almost none
## 1112 None or almost none None or almost none
## 1113 Small amount None or almost none
## 1114 None or almost none None or almost none
## 1115 None or almost none None or almost none
## 1116 Small amount None or almost none
## 1117 None or almost none None or almost none
## 1118 None or almost none None or almost none
## 1119 None or almost none None or almost none
## 1120 None or almost none None or almost none
## 1121 None or almost none None or almost none
## 1122 Small amount None or almost none
## 1123 None or almost none None or almost none
## 1124 None or almost none None or almost none
## 1125 None or almost none None or almost none
## 1126 None or almost none None or almost none
## 1127 Large amount Small amount
## 1128 None or almost none None or almost none
## 1129 None or almost none None or almost none
## 1130 Small amount None or almost none
## 1131 Small amount None or almost none
## 1132 None or almost none None or almost none
## 1133 Large amount None or almost none
## 1134 None or almost none None or almost none
## 1135 None or almost none None or almost none
## 1136 None or almost none None or almost none
## 1137 None or almost none None or almost none
## 1138 None or almost none None or almost none
## 1139 Small amount Small amount
## 1140 None or almost none None or almost none
## 1141 Small amount Small amount
## 1142 None or almost none None or almost none
## 1143 None or almost none None or almost none
## 1144 None or almost none None or almost none
## 1145 None or almost none None or almost none
## 1146 None or almost none None or almost none
## 1147 Large amount Small amount
## 1148 None or almost none None or almost none
## 1149 None or almost none None or almost none
## 1150 None or almost none None or almost none
## 1151 None or almost none None or almost none
## 1152 Small amount None or almost none
## 1153 None or almost none None or almost none
## 1154 None or almost none None or almost none
## 1155 None or almost none None or almost none
## 1156 Small amount None or almost none
## 1157 None or almost none None or almost none
## 1158 None or almost none None or almost none
## 1159 Small amount Small amount
## 1160 None or almost none None or almost none
## 1161 None or almost none None or almost none
## 1162 None or almost none None or almost none
## 1163 None or almost none None or almost none
## 1164 None or almost none None or almost none
## 1165 None or almost none None or almost none
## 1166 None or almost none None or almost none
## 1167 None or almost none None or almost none
## 1168 None or almost none None or almost none
## 1169 None or almost none None or almost none
## 1170 None or almost none None or almost none
## 1171 None or almost none None or almost none
## 1172 None or almost none None or almost none
## 1173 None or almost none None or almost none
## 1174 None or almost none None or almost none
## 1175 Small amount None or almost none
## 1176 Large amount None or almost none
## 1177 None or almost none None or almost none
## 1178 Small amount None or almost none
## 1179 Small amount Small amount
## 1180 None or almost none None or almost none
## 1181 Small amount Small amount
## 1182 Small amount None or almost none
## 1183 Small amount None or almost none
## 1184 None or almost none None or almost none
## 1185 None or almost none None or almost none
## 1186 None or almost none None or almost none
## 1187 Small amount Small amount
## 1188 None or almost none None or almost none
## 1189 Small amount Small amount
## 1190 None or almost none None or almost none
## 1191 None or almost none None or almost none
## 1192 None or almost none None or almost none
## 1193 Small amount None or almost none
## 1194 None or almost none None or almost none
## 1195 None or almost none None or almost none
## 1196 None or almost none None or almost none
## 1197 None or almost none None or almost none
## 1198 None or almost none None or almost none
## 1199 None or almost none None or almost none
## 1200 None or almost none None or almost none
## 1201 None or almost none None or almost none
## 1202 Small amount None or almost none
## 1203 None or almost none None or almost none
## 1204 None or almost none None or almost none
## 1205 None or almost none None or almost none
## 1206 None or almost none None or almost none
## 1207 None or almost none None or almost none
## 1208 None or almost none None or almost none
## 1209 None or almost none None or almost none
## 1210 None or almost none None or almost none
## 1211 None or almost none None or almost none
## 1212 None or almost none None or almost none
## 1213 None or almost none None or almost none
## 1214 None or almost none None or almost none
## 1215 None or almost none None or almost none
## 1216 None or almost none None or almost none
## 1217 Small amount None or almost none
## 1218 None or almost none None or almost none
## 1219 Small amount None or almost none
## 1220 Small amount None or almost none
## 1221 None or almost none None or almost none
## 1222 None or almost none None or almost none
## 1223 None or almost none None or almost none
## 1224 None or almost none None or almost none
## 1225 Small amount None or almost none
## 1226 None or almost none None or almost none
## 1227 None or almost none None or almost none
## 1228 Large amount None or almost none
## 1229 None or almost none None or almost none
## 1230 Very large amount None or almost none
## 1231 None or almost none None or almost none
## 1232 None or almost none None or almost none
## 1233 None or almost none None or almost none
## 1234 Small amount Small amount
## 1235 None or almost none None or almost none
## 1236 None or almost none None or almost none
## 1237 Small amount Small amount
## 1238 None or almost none None or almost none
## 1239 Small amount None or almost none
## 1240 None or almost none None or almost none
## 1241 None or almost none None or almost none
## 1242 Small amount None or almost none
## 1243 None or almost none None or almost none
## 1244 None or almost none None or almost none
## 1245 None or almost none None or almost none
## 1246 Small amount None or almost none
## 1247 None or almost none None or almost none
## 1248 Small amount Small amount
## 1249 None or almost none None or almost none
## 1250 None or almost none None or almost none
## 1251 None or almost none None or almost none
## 1252 Small amount None or almost none
## 1253 None or almost none None or almost none
## 1254 None or almost none None or almost none
## 1255 None or almost none None or almost none
## 1256 None or almost none None or almost none
## 1257 None or almost none None or almost none
## 1258 None or almost none None or almost none
## 1259 None or almost none None or almost none
## 1260 None or almost none None or almost none
## 1261 None or almost none None or almost none
## 1262 None or almost none None or almost none
## 1263 None or almost none None or almost none
## 1264 None or almost none None or almost none
## 1265 None or almost none None or almost none
## 1266 None or almost none None or almost none
## 1267 None or almost none None or almost none
## 1268 None or almost none None or almost none
## 1269 None or almost none None or almost none
## 1270 Small amount None or almost none
## 1271 None or almost none None or almost none
## 1272 None or almost none None or almost none
## 1273 Small amount Small amount
## 1274 Small amount Small amount
## 1275 None or almost none None or almost none
## 1276 None or almost none None or almost none
## 1277 Small amount None or almost none
## 1278 Small amount Small amount
## 1279 Small amount None or almost none
## 1280 None or almost none None or almost none
## 1281 None or almost none None or almost none
## 1282 None or almost none None or almost none
## 1283 None or almost none None or almost none
## 1284 Small amount Small amount
## 1285 None or almost none None or almost none
## 1286 Small amount None or almost none
## 1287 None or almost none None or almost none
## 1288 None or almost none None or almost none
## 1289 None or almost none None or almost none
## 1290 None or almost none None or almost none
## 1291 None or almost none None or almost none
## 1292 None or almost none None or almost none
## 1293 None or almost none None or almost none
## 1294 Large amount Small amount
## 1295 None or almost none None or almost none
## 1296 None or almost none None or almost none
## 1297 None or almost none None or almost none
## 1298 None or almost none None or almost none
## 1299 None or almost none None or almost none
## 1300 None or almost none None or almost none
## 1301 None or almost none None or almost none
## 1302 None or almost none None or almost none
## 1303 None or almost none None or almost none
## 1304 None or almost none None or almost none
## 1305 None or almost none None or almost none
## 1306 None or almost none None or almost none
## 1307 None or almost none None or almost none
## 1308 Small amount None or almost none
## 1309 None or almost none None or almost none
## 1310 None or almost none None or almost none
## 1311 None or almost none None or almost none
## 1312 Small amount Small amount
## 1313 None or almost none None or almost none
## 1314 None or almost none None or almost none
## 1315 Small amount None or almost none
## 1316 Small amount None or almost none
## 1317 None or almost none None or almost none
## 1318 Small amount Small amount
## 1319 None or almost none None or almost none
## 1320 None or almost none None or almost none
## 1321 None or almost none None or almost none
## 1322 Small amount None or almost none
## 1323 None or almost none None or almost none
## 1324 None or almost none None or almost none
## 1325 None or almost none None or almost none
## 1326 None or almost none None or almost none
## 1327 Large amount None or almost none
## 1328 None or almost none None or almost none
## 1329 None or almost none None or almost none
## 1330 None or almost none None or almost none
## 1331 None or almost none None or almost none
## 1332 None or almost none None or almost none
## 1333 None or almost none None or almost none
## 1334 None or almost none None or almost none
## 1335 None or almost none None or almost none
## 1336 Small amount Small amount
## 1337 Small amount None or almost none
## 1338 Small amount Small amount
## 1339 Small amount None or almost none
## 1340 None or almost none None or almost none
## 1341 None or almost none None or almost none
## 1342 None or almost none None or almost none
## 1343 None or almost none None or almost none
## 1344 None or almost none None or almost none
## 1345 Small amount Small amount
## 1346 None or almost none None or almost none
## 1347 None or almost none None or almost none
## 1348 None or almost none None or almost none
## 1349 Small amount None or almost none
## 1350 None or almost none None or almost none
## 1351 Small amount None or almost none
## 1352 None or almost none None or almost none
## 1353 None or almost none None or almost none
## 1354 None or almost none None or almost none
## 1355 Small amount None or almost none
## 1356 None or almost none None or almost none
## 1357 None or almost none None or almost none
## 1358 Small amount None or almost none
## 1359 Small amount Small amount
## 1360 None or almost none None or almost none
## 1361 None or almost none None or almost none
## 1362 Small amount Small amount
## 1363 None or almost none None or almost none
## 1364 None or almost none None or almost none
## 1365 None or almost none None or almost none
## 1366 None or almost none None or almost none
## 1367 None or almost none None or almost none
## 1368 None or almost none None or almost none
## 1369 None or almost none None or almost none
## 1370 None or almost none None or almost none
## 1371 None or almost none Small amount
## 1372 Small amount None or almost none
## 1373 None or almost none None or almost none
## 1374 None or almost none None or almost none
## 1375 None or almost none None or almost none
## 1376 None or almost none None or almost none
## 1377 None or almost none None or almost none
## 1378 None or almost none None or almost none
## 1379 None or almost none None or almost none
## 1380 Large amount Small amount
## 1381 None or almost none None or almost none
## 1382 Small amount None or almost none
## 1383 None or almost none None or almost none
## 1384 None or almost none None or almost none
## 1385 None or almost none None or almost none
## 1386 None or almost none None or almost none
## 1387 Small amount None or almost none
## 1388 None or almost none None or almost none
## 1389 None or almost none None or almost none
## 1390 None or almost none None or almost none
## 1391 None or almost none None or almost none
## 1392 None or almost none None or almost none
## 1393 None or almost none None or almost none
## 1394 None or almost none None or almost none
## 1395 None or almost none None or almost none
## 1396 None or almost none None or almost none
## 1397 None or almost none None or almost none
## 1398 None or almost none None or almost none
## 1399 None or almost none None or almost none
## 1400 None or almost none None or almost none
## 1401 None or almost none None or almost none
## 1402 None or almost none None or almost none
## 1403 None or almost none None or almost none
## 1404 None or almost none None or almost none
## 1405 None or almost none None or almost none
## 1406 None or almost none None or almost none
## 1407 None or almost none None or almost none
## 1408 None or almost none None or almost none
## 1409 Small amount None or almost none
## 1410 None or almost none Small amount
## 1411 None or almost none None or almost none
## 1412 None or almost none None or almost none
## 1413 None or almost none None or almost none
## 1414 None or almost none None or almost none
## 1415 None or almost none None or almost none
## 1416 None or almost none None or almost none
## 1417 None or almost none None or almost none
## 1418 None or almost none None or almost none
## 1419 None or almost none None or almost none
## 1420 None or almost none None or almost none
## 1421 Small amount Small amount
## 1422 Large amount None or almost none
## 1423 None or almost none None or almost none
## 1424 Small amount None or almost none
## 1425 Small amount None or almost none
## 1426 None or almost none None or almost none
## 1427 None or almost none None or almost none
## 1428 None or almost none None or almost none
## 1429 None or almost none None or almost none
## 1430 None or almost none None or almost none
## 1431 None or almost none None or almost none
## 1432 None or almost none None or almost none
## 1433 None or almost none None or almost none
## 1434 None or almost none None or almost none
## 1435 Small amount None or almost none
## 1436 None or almost none None or almost none
## 1437 None or almost none None or almost none
## 1438 None or almost none None or almost none
## 1439 Small amount None or almost none
## 1440 Small amount None or almost none
## 1441 None or almost none None or almost none
## 1442 None or almost none None or almost none
## 1443 None or almost none None or almost none
## 1444 Small amount None or almost none
## 1445 Large amount Small amount
## 1446 None or almost none None or almost none
## 1447 None or almost none None or almost none
## 1448 None or almost none None or almost none
## 1449 None or almost none None or almost none
## 1450 None or almost none None or almost none
## 1451 None or almost none None or almost none
## 1452 Small amount Small amount
## 1453 Small amount None or almost none
## 1454 None or almost none None or almost none
## 1455 None or almost none None or almost none
## 1456 None or almost none None or almost none
## 1457 None or almost none None or almost none
## 1458 None or almost none None or almost none
## 1459 None or almost none None or almost none
## 1460 None or almost none None or almost none
## 1461 Small amount None or almost none
## 1462 None or almost none None or almost none
## 1463 None or almost none None or almost none
## 1464 None or almost none None or almost none
## 1465 None or almost none None or almost none
## 1466 None or almost none None or almost none
## 1467 None or almost none None or almost none
## 1468 None or almost none None or almost none
## 1469 None or almost none None or almost none
## 1470 None or almost none None or almost none
## 1471 Small amount None or almost none
## 1472 None or almost none None or almost none
## 1473 None or almost none None or almost none
## 1474 None or almost none None or almost none
## 1475 None or almost none None or almost none
## 1476 Small amount Small amount
## 1477 None or almost none None or almost none
## 1478 Small amount None or almost none
## 1479 None or almost none None or almost none
## 1480 None or almost none None or almost none
## 1481 Large amount Large amount
## 1482 None or almost none None or almost none
## 1483 None or almost none None or almost none
## 1484 None or almost none None or almost none
## 1485 None or almost none None or almost none
## 1486 None or almost none None or almost none
## 1487 None or almost none None or almost none
## 1488 None or almost none None or almost none
## 1489 None or almost none None or almost none
## 1490 None or almost none None or almost none
## 1491 None or almost none None or almost none
## 1492 None or almost none None or almost none
## 1493 None or almost none None or almost none
## 1494 None or almost none None or almost none
## 1495 None or almost none None or almost none
## 1496 None or almost none None or almost none
## 1497 None or almost none None or almost none
## 1498 Small amount None or almost none
## 1499 None or almost none None or almost none
## 1500 None or almost none None or almost none
## 1501 None or almost none None or almost none
## 1502 None or almost none None or almost none
## 1503 None or almost none None or almost none
## 1504 None or almost none None or almost none
## 1505 Small amount None or almost none
## 1506 Small amount Small amount
## 1507 None or almost none None or almost none
## 1508 None or almost none None or almost none
## 1509 None or almost none None or almost none
## 1510 Small amount None or almost none
## 1511 None or almost none None or almost none
## 1512 None or almost none None or almost none
## 1513 None or almost none None or almost none
## 1514 Small amount Small amount
## 1515 None or almost none None or almost none
## 1516 None or almost none None or almost none
## 1517 Small amount None or almost none
## 1518 None or almost none None or almost none
## 1519 None or almost none None or almost none
## 1520 Small amount None or almost none
## 1521 None or almost none None or almost none
## 1522 None or almost none None or almost none
## 1523 None or almost none None or almost none
## 1524 None or almost none None or almost none
## 1525 None or almost none None or almost none
## 1526 Small amount Small amount
## 1527 None or almost none None or almost none
## 1528 None or almost none None or almost none
## 1529 None or almost none None or almost none
## 1530 None or almost none None or almost none
## 1531 Small amount Small amount
## 1532 None or almost none None or almost none
## 1533 Small amount Small amount
## 1534 Small amount None or almost none
## 1535 Small amount None or almost none
## 1536 None or almost none None or almost none
## 1537 None or almost none None or almost none
## 1538 Small amount None or almost none
## 1539 Small amount None or almost none
## 1540 None or almost none None or almost none
## 1541 None or almost none None or almost none
## 1542 None or almost none None or almost none
## 1543 None or almost none None or almost none
## 1544 None or almost none None or almost none
## 1545 None or almost none Small amount
## 1546 Small amount Small amount
## 1547 None or almost none None or almost none
## 1548 None or almost none None or almost none
## 1549 None or almost none None or almost none
## 1550 None or almost none None or almost none
## 1551 None or almost none None or almost none
## 1552 None or almost none None or almost none
## 1553 Large amount None or almost none
## 1554 Small amount None or almost none
## 1555 Small amount Small amount
## 1556 None or almost none None or almost none
## 1557 None or almost none None or almost none
## 1558 None or almost none None or almost none
## 1559 None or almost none None or almost none
## 1560 None or almost none None or almost none
## 1561 None or almost none None or almost none
## 1562 Small amount None or almost none
## 1563 None or almost none None or almost none
## 1564 None or almost none None or almost none
## 1565 None or almost none None or almost none
## 1566 None or almost none None or almost none
## 1567 None or almost none None or almost none
## 1568 None or almost none None or almost none
## 1569 None or almost none None or almost none
## 1570 Small amount None or almost none
## 1571 None or almost none None or almost none
## 1572 Small amount None or almost none
## 1573 Small amount None or almost none
## 1574 None or almost none None or almost none
## 1575 None or almost none None or almost none
## 1576 Small amount None or almost none
## 1577 None or almost none None or almost none
## 1578 None or almost none None or almost none
## 1579 None or almost none None or almost none
## 1580 None or almost none None or almost none
## 1581 Small amount Small amount
## 1582 None or almost none None or almost none
## 1583 None or almost none None or almost none
## 1584 None or almost none None or almost none
## 1585 None or almost none None or almost none
## 1586 Small amount Small amount
## 1587 Large amount None or almost none
## 1588 None or almost none None or almost none
## 1589 None or almost none None or almost none
## 1590 None or almost none None or almost none
## 1591 None or almost none None or almost none
## 1592 None or almost none None or almost none
## 1593 None or almost none None or almost none
## 1594 None or almost none None or almost none
## 1595 None or almost none None or almost none
## 1596 None or almost none None or almost none
## 1597 None or almost none None or almost none
## 1598 None or almost none None or almost none
## 1599 None or almost none None or almost none
## 1600 Small amount None or almost none
## 1601 Small amount None or almost none
## 1602 None or almost none None or almost none
## 1603 Small amount Small amount
## 1604 None or almost none None or almost none
## 1605 None or almost none None or almost none
## 1606 None or almost none None or almost none
## 1607 None or almost none None or almost none
## 1608 None or almost none None or almost none
## 1609 Small amount None or almost none
## 1610 None or almost none None or almost none
## 1611 None or almost none None or almost none
## 1612 None or almost none None or almost none
## 1613 None or almost none None or almost none
## 1614 Small amount None or almost none
## 1615 None or almost none None or almost none
## 1616 None or almost none None or almost none
## 1617 None or almost none None or almost none
## 1618 Large amount None or almost none
## 1619 None or almost none None or almost none
## 1620 None or almost none None or almost none
## 1621 None or almost none None or almost none
## 1622 Small amount None or almost none
## 1623 None or almost none None or almost none
## 1624 None or almost none None or almost none
## 1625 None or almost none None or almost none
## 1626 None or almost none None or almost none
## 1627 None or almost none None or almost none
## 1628 None or almost none None or almost none
## 1629 None or almost none None or almost none
## 1630 Small amount None or almost none
## 1631 None or almost none None or almost none
## 1632 Small amount None or almost none
## 1633 None or almost none None or almost none
## 1634 None or almost none None or almost none
## 1635 None or almost none None or almost none
## 1636 None or almost none None or almost none
## 1637 Small amount None or almost none
## 1638 None or almost none None or almost none
## 1639 None or almost none None or almost none
## 1640 None or almost none None or almost none
## 1641 None or almost none None or almost none
## 1642 None or almost none None or almost none
## 1643 None or almost none None or almost none
## 1644 None or almost none None or almost none
## 1645 None or almost none None or almost none
## 1646 None or almost none None or almost none
## 1647 None or almost none None or almost none
## 1648 None or almost none None or almost none
## 1649 None or almost none None or almost none
## 1650 None or almost none None or almost none
## 1651 None or almost none None or almost none
## 1652 Small amount Small amount
## 1653 Small amount None or almost none
## 1654 Small amount None or almost none
## 1655 None or almost none None or almost none
## 1656 None or almost none None or almost none
## 1657 Small amount None or almost none
## 1658 None or almost none Small amount
## 1659 None or almost none None or almost none
## 1660 None or almost none None or almost none
## 1661 None or almost none None or almost none
## 1662 None or almost none None or almost none
## 1663 None or almost none None or almost none
## 1664 None or almost none None or almost none
## 1665 None or almost none None or almost none
## 1666 None or almost none None or almost none
## 1667 None or almost none None or almost none
## 1668 Small amount None or almost none
## 1669 Small amount None or almost none
## 1670 None or almost none None or almost none
## 1671 Small amount None or almost none
## 1672 None or almost none None or almost none
## 1673 None or almost none None or almost none
## 1674 None or almost none None or almost none
## 1675 None or almost none None or almost none
## 1676 None or almost none None or almost none
## 1677 None or almost none None or almost none
## 1678 None or almost none None or almost none
## 1679 None or almost none None or almost none
## 1680 None or almost none None or almost none
## 1681 Small amount None or almost none
## 1682 None or almost none None or almost none
## 1683 None or almost none None or almost none
## 1684 None or almost none None or almost none
## 1685 None or almost none None or almost none
## 1686 None or almost none None or almost none
## 1687 None or almost none None or almost none
## 1688 Small amount None or almost none
## 1689 Small amount None or almost none
## 1690 None or almost none None or almost none
## 1691 None or almost none None or almost none
## 1692 None or almost none None or almost none
## 1693 None or almost none None or almost none
## 1694 None or almost none None or almost none
## 1695 None or almost none None or almost none
## 1696 None or almost none None or almost none
## 1697 None or almost none None or almost none
## 1698 None or almost none None or almost none
## 1699 None or almost none None or almost none
## 1700 None or almost none None or almost none
## 1701 Small amount None or almost none
## 1702 None or almost none None or almost none
## 1703 None or almost none None or almost none
## 1704 None or almost none None or almost none
## 1705 None or almost none None or almost none
## 1706 None or almost none None or almost none
## 1707 None or almost none None or almost none
## 1708 Small amount None or almost none
## 1709 None or almost none None or almost none
## 1710 None or almost none None or almost none
## 1711 None or almost none None or almost none
## 1712 None or almost none None or almost none
## 1713 None or almost none None or almost none
## 1714 None or almost none None or almost none
## 1715 None or almost none None or almost none
## 1716 None or almost none None or almost none
## 1717 None or almost none None or almost none
## 1718 Small amount None or almost none
## 1719 None or almost none None or almost none
## 1720 None or almost none None or almost none
## 1721 Small amount None or almost none
## 1722 None or almost none None or almost none
## 1723 None or almost none None or almost none
## 1724 None or almost none None or almost none
## 1725 Small amount Large amount
## 1726 Large amount Small amount
## 1727 None or almost none None or almost none
## 1728 None or almost none None or almost none
## 1729 None or almost none Small amount
## 1730 None or almost none None or almost none
## 1731 None or almost none None or almost none
## 1732 Small amount Small amount
## 1733 None or almost none None or almost none
## 1734 None or almost none None or almost none
## 1735 None or almost none None or almost none
## 1736 None or almost none None or almost none
## 1737 None or almost none None or almost none
## 1738 Small amount None or almost none
## 1739 None or almost none None or almost none
## 1740 Large amount None or almost none
## 1741 Small amount Small amount
## 1742 None or almost none None or almost none
## 1743 None or almost none None or almost none
## 1744 None or almost none None or almost none
## 1745 None or almost none None or almost none
## 1746 None or almost none None or almost none
## 1747 None or almost none None or almost none
## 1748 None or almost none None or almost none
## 1749 Small amount None or almost none
## 1750 Small amount Small amount
## 1751 Small amount None or almost none
## 1752 None or almost none None or almost none
## 1753 None or almost none None or almost none
## 1754 None or almost none None or almost none
## 1755 None or almost none None or almost none
## 1756 Small amount Small amount
## 1757 None or almost none None or almost none
## 1758 None or almost none None or almost none
## 1759 Small amount None or almost none
## 1760 None or almost none None or almost none
## 1761 None or almost none None or almost none
## 1762 Small amount None or almost none
## 1763 None or almost none None or almost none
## 1764 None or almost none None or almost none
## 1765 None or almost none None or almost none
## 1766 None or almost none None or almost none
## 1767 None or almost none None or almost none
## 1768 Small amount None or almost none
## 1769 None or almost none None or almost none
## 1770 None or almost none None or almost none
## 1771 None or almost none None or almost none
## 1772 None or almost none None or almost none
## 1773 None or almost none None or almost none
## 1774 None or almost none None or almost none
## 1775 None or almost none None or almost none
## 1776 None or almost none None or almost none
## 1777 None or almost none None or almost none
## 1778 None or almost none None or almost none
## 1779 Small amount None or almost none
## 1780 Large amount Small amount
## 1781 None or almost none None or almost none
## 1782 None or almost none None or almost none
## 1783 Small amount Small amount
## 1784 None or almost none None or almost none
## 1785 None or almost none None or almost none
## 1786 Small amount Small amount
## 1787 None or almost none None or almost none
## 1788 None or almost none None or almost none
## 1789 None or almost none None or almost none
## 1790 Small amount None or almost none
## 1791 None or almost none None or almost none
## 1792 None or almost none None or almost none
## 1793 None or almost none None or almost none
## 1794 None or almost none None or almost none
## 1795 None or almost none None or almost none
## 1796 None or almost none None or almost none
## 1797 Small amount None or almost none
## 1798 None or almost none None or almost none
## 1799 Small amount None or almost none
## 1800 Small amount Small amount
## 1801 None or almost none None or almost none
## 1802 None or almost none None or almost none
## 1803 Small amount Small amount
## 1804 None or almost none None or almost none
## 1805 None or almost none None or almost none
## 1806 None or almost none None or almost none
## 1807 None or almost none None or almost none
## 1808 None or almost none None or almost none
## 1809 None or almost none None or almost none
## 1810 Small amount Small amount
## 1811 None or almost none None or almost none
## 1812 None or almost none None or almost none
## 1813 None or almost none None or almost none
## 1814 None or almost none None or almost none
## 1815 Small amount None or almost none
## 1816 None or almost none None or almost none
## 1817 None or almost none None or almost none
## 1818 None or almost none None or almost none
## 1819 None or almost none None or almost none
## 1820 None or almost none None or almost none
## 1821 None or almost none None or almost none
## 1822 None or almost none None or almost none
## 1823 None or almost none None or almost none
## 1824 None or almost none None or almost none
## 1825 Small amount None or almost none
## 1826 None or almost none None or almost none
## 1827 None or almost none None or almost none
## 1828 None or almost none None or almost none
## 1829 None or almost none None or almost none
## 1830 None or almost none None or almost none
## 1831 None or almost none None or almost none
## 1832 None or almost none None or almost none
## 1833 None or almost none None or almost none
## 1834 None or almost none None or almost none
## 1835 None or almost none None or almost none
## 1836 None or almost none None or almost none
## 1837 None or almost none None or almost none
## 1838 None or almost none None or almost none
## 1839 Small amount None or almost none
## 1840 None or almost none None or almost none
## 1841 None or almost none None or almost none
## 1842 None or almost none None or almost none
## 1843 None or almost none None or almost none
## 1844 None or almost none None or almost none
## 1845 None or almost none None or almost none
## 1846 None or almost none None or almost none
## 1847 None or almost none None or almost none
## 1848 Small amount Small amount
## 1849 Large amount Large amount
## 1850 None or almost none None or almost none
## 1851 None or almost none None or almost none
## 1852 Small amount None or almost none
## 1853 Small amount None or almost none
## 1854 None or almost none None or almost none
## 1855 None or almost none None or almost none
## 1856 None or almost none None or almost none
## 1857 None or almost none None or almost none
## 1858 Small amount None or almost none
## 1859 Small amount None or almost none
## 1860 Small amount None or almost none
## 1861 None or almost none None or almost none
## 1862 Small amount None or almost none
## 1863 Small amount None or almost none
## 1864 None or almost none None or almost none
## 1865 Small amount None or almost none
## 1866 None or almost none None or almost none
## 1867 None or almost none None or almost none
## 1868 None or almost none None or almost none
## 1869 None or almost none None or almost none
## 1870 None or almost none None or almost none
## 1871 None or almost none None or almost none
## 1872 None or almost none None or almost none
## 1873 None or almost none None or almost none
## 1874 None or almost none None or almost none
## 1875 Small amount None or almost none
## 1876 Small amount None or almost none
## 1877 None or almost none None or almost none
## 1878 None or almost none None or almost none
## 1879 None or almost none None or almost none
## 1880 None or almost none None or almost none
## 1881 None or almost none None or almost none
## 1882 None or almost none None or almost none
## 1883 None or almost none None or almost none
## 1884 None or almost none None or almost none
## 1885 None or almost none None or almost none
## 1886 None or almost none None or almost none
## 1887 None or almost none None or almost none
## 1888 None or almost none None or almost none
## 1889 None or almost none None or almost none
## 1890 None or almost none None or almost none
## 1891 Small amount None or almost none
## 1892 None or almost none None or almost none
## 1893 None or almost none None or almost none
## 1894 Small amount None or almost none
## 1895 Small amount None or almost none
## 1896 None or almost none None or almost none
## 1897 None or almost none None or almost none
## 1898 None or almost none None or almost none
## 1899 None or almost none None or almost none
## 1900 None or almost none None or almost none
## 1901 None or almost none None or almost none
## 1902 None or almost none None or almost none
## 1903 None or almost none None or almost none
## 1904 None or almost none None or almost none
## 1905 None or almost none None or almost none
## 1906 Small amount None or almost none
## 1907 None or almost none None or almost none
## 1908 None or almost none None or almost none
## 1909 None or almost none None or almost none
## 1910 None or almost none None or almost none
## 1911 None or almost none None or almost none
## 1912 None or almost none None or almost none
## 1913 None or almost none None or almost none
## 1914 None or almost none None or almost none
## 1915 Large amount Small amount
## 1916 None or almost none None or almost none
## 1917 None or almost none None or almost none
## 1918 None or almost none None or almost none
## 1919 None or almost none None or almost none
## 1920 None or almost none None or almost none
## 1921 Small amount None or almost none
## 1922 None or almost none None or almost none
## 1923 None or almost none None or almost none
## 1924 None or almost none None or almost none
## 1925 Small amount None or almost none
## 1926 Small amount None or almost none
## 1927 None or almost none None or almost none
## 1928 None or almost none None or almost none
## 1929 None or almost none None or almost none
## 1930 Small amount None or almost none
## 1931 None or almost none None or almost none
## 1932 None or almost none None or almost none
## 1933 None or almost none None or almost none
## 1934 Small amount None or almost none
## 1935 None or almost none None or almost none
## 1936 None or almost none None or almost none
## 1937 None or almost none None or almost none
## 1938 None or almost none None or almost none
## 1939 Small amount Small amount
## 1940 None or almost none None or almost none
## 1941 Very large amount Small amount
## 1942 None or almost none None or almost none
## 1943 None or almost none None or almost none
## 1944 None or almost none None or almost none
## 1945 Small amount None or almost none
## 1946 None or almost none None or almost none
## 1947 None or almost none None or almost none
## 1948 None or almost none None or almost none
## 1949 None or almost none None or almost none
## 1950 None or almost none None or almost none
## 1951 None or almost none None or almost none
## 1952 None or almost none None or almost none
## 1953 None or almost none None or almost none
## 1954 None or almost none None or almost none
## 1955 None or almost none None or almost none
## 1956 None or almost none None or almost none
## 1957 None or almost none None or almost none
## 1958 None or almost none None or almost none
## 1959 Small amount None or almost none
## 1960 Small amount Small amount
## 1961 None or almost none None or almost none
## 1962 None or almost none None or almost none
## 1963 None or almost none None or almost none
## 1964 Small amount None or almost none
## 1965 Small amount None or almost none
## 1966 Small amount None or almost none
## 1967 Small amount None or almost none
## 1968 None or almost none None or almost none
## 1969 None or almost none None or almost none
## 1970 None or almost none None or almost none
## 1971 None or almost none None or almost none
## 1972 None or almost none None or almost none
## 1973 None or almost none None or almost none
## 1974 None or almost none None or almost none
## 1975 None or almost none None or almost none
## 1976 Small amount None or almost none
## 1977 Small amount None or almost none
## 1978 None or almost none None or almost none
## 1979 None or almost none None or almost none
## 1980 None or almost none None or almost none
## 1981 None or almost none None or almost none
## 1982 None or almost none None or almost none
## 1983 None or almost none None or almost none
## 1984 Large amount Small amount
## 1985 None or almost none None or almost none
## 1986 Small amount None or almost none
## 1987 None or almost none None or almost none
## 1988 None or almost none None or almost none
## 1989 None or almost none None or almost none
## 1990 None or almost none None or almost none
## 1991 None or almost none None or almost none
## 1992 None or almost none None or almost none
## 1993 Small amount None or almost none
## 1994 Small amount None or almost none
## 1995 None or almost none None or almost none
## 1996 None or almost none None or almost none
## 1997 None or almost none None or almost none
## 1998 None or almost none None or almost none
## 1999 None or almost none None or almost none
## 2000 None or almost none None or almost none
## 2001 None or almost none None or almost none
## 2002 None or almost none None or almost none
## 2003 None or almost none None or almost none
## 2004 Large amount None or almost none
## 2005 None or almost none None or almost none
## 2006 None or almost none None or almost none
## 2007 Large amount Large amount
## 2008 None or almost none None or almost none
## 2009 None or almost none None or almost none
## 2010 None or almost none None or almost none
## 2011 None or almost none None or almost none
## 2012 None or almost none None or almost none
## 2013 Small amount None or almost none
## 2014 None or almost none None or almost none
## 2015 None or almost none None or almost none
## 2016 None or almost none None or almost none
## 2017 Small amount Small amount
## 2018 None or almost none None or almost none
## 2019 None or almost none None or almost none
## 2020 None or almost none None or almost none
## 2021 Small amount Small amount
## 2022 None or almost none None or almost none
## 2023 None or almost none None or almost none
## 2024 None or almost none None or almost none
## 2025 None or almost none None or almost none
## 2026 None or almost none None or almost none
## 2027 None or almost none None or almost none
## 2028 Small amount None or almost none
## 2029 None or almost none None or almost none
## 2030 None or almost none None or almost none
## 2031 None or almost none None or almost none
## 2032 None or almost none None or almost none
## 2033 None or almost none None or almost none
## 2034 None or almost none None or almost none
## 2035 Large amount Small amount
## 2036 None or almost none None or almost none
## 2037 Small amount Small amount
## 2038 Very large amount None or almost none
## 2039 None or almost none None or almost none
## 2040 None or almost none Small amount
## 2041 None or almost none None or almost none
## 2042 None or almost none None or almost none
## 2043 None or almost none None or almost none
## 2044 None or almost none None or almost none
## 2045 Small amount Small amount
## 2046 None or almost none None or almost none
## 2047 Large amount Very large amount
## 2048 None or almost none None or almost none
## 2049 Large amount Small amount
## 2050 None or almost none None or almost none
## 2051 None or almost none None or almost none
## 2052 None or almost none None or almost none
## 2053 Small amount None or almost none
## 2054 None or almost none None or almost none
## 2055 Small amount Small amount
## 2056 None or almost none None or almost none
## 2057 None or almost none None or almost none
## 2058 None or almost none None or almost none
## 2059 None or almost none None or almost none
## 2060 None or almost none None or almost none
## 2061 None or almost none None or almost none
## 2062 None or almost none None or almost none
## 2063 Large amount Large amount
## 2064 None or almost none None or almost none
## 2065 Very large amount None or almost none
## 2066 None or almost none None or almost none
## 2067 None or almost none None or almost none
## 2068 None or almost none None or almost none
## 2069 None or almost none None or almost none
## 2070 Small amount Small amount
## 2071 Small amount Small amount
## 2072 None or almost none None or almost none
## 2073 None or almost none None or almost none
## 2074 None or almost none None or almost none
## 2075 None or almost none None or almost none
## 2076 Small amount None or almost none
## 2077 None or almost none None or almost none
## 2078 None or almost none None or almost none
## 2079 None or almost none None or almost none
## 2080 None or almost none None or almost none
## 2081 None or almost none None or almost none
## 2082 None or almost none None or almost none
## 2083 None or almost none None or almost none
## 2084 None or almost none None or almost none
## 2085 None or almost none None or almost none
## 2086 None or almost none None or almost none
## 2087 Large amount None or almost none
## 2088 None or almost none None or almost none
## 2089 None or almost none None or almost none
## 2090 Small amount None or almost none
## 2091 None or almost none None or almost none
## 2092 None or almost none None or almost none
## 2093 None or almost none None or almost none
## 2094 None or almost none None or almost none
## 2095 None or almost none None or almost none
## 2096 None or almost none None or almost none
## 2097 None or almost none None or almost none
## 2098 Small amount Small amount
## 2099 None or almost none None or almost none
## 2100 Small amount None or almost none
## 2101 Small amount None or almost none
## 2102 None or almost none None or almost none
## 2103 None or almost none None or almost none
## 2104 None or almost none None or almost none
## 2105 None or almost none None or almost none
## 2106 None or almost none None or almost none
## 2107 Small amount None or almost none
## 2108 None or almost none None or almost none
## 2109 None or almost none None or almost none
## 2110 None or almost none None or almost none
## 2111 None or almost none None or almost none
## 2112 None or almost none None or almost none
## 2113 None or almost none None or almost none
## 2114 Small amount None or almost none
## 2115 Small amount None or almost none
## 2116 None or almost none None or almost none
## 2117 None or almost none None or almost none
## 2118 Small amount None or almost none
## 2119 None or almost none None or almost none
## 2120 None or almost none None or almost none
## 2121 Small amount None or almost none
## 2122 Small amount None or almost none
## 2123 None or almost none None or almost none
## 2124 None or almost none None or almost none
## 2125 Small amount None or almost none
## 2126 Small amount None or almost none
## 2127 None or almost none None or almost none
## 2128 None or almost none None or almost none
## 2129 Small amount None or almost none
## 2130 None or almost none None or almost none
## 2131 None or almost none Small amount
## 2132 None or almost none None or almost none
## 2133 None or almost none None or almost none
## 2134 None or almost none None or almost none
## 2135 None or almost none None or almost none
## 2136 None or almost none None or almost none
## 2137 None or almost none None or almost none
## 2138 Small amount None or almost none
## 2139 None or almost none None or almost none
## 2140 None or almost none None or almost none
## 2141 Small amount Small amount
## 2142 None or almost none None or almost none
## 2143 None or almost none None or almost none
## 2144 Small amount None or almost none
## 2145 None or almost none None or almost none
## 2146 None or almost none None or almost none
## 2147 None or almost none None or almost none
## 2148 None or almost none None or almost none
## 2149 None or almost none None or almost none
## 2150 None or almost none None or almost none
## 2151 None or almost none None or almost none
## 2152 Small amount None or almost none
## 2153 None or almost none None or almost none
## 2154 None or almost none None or almost none
## 2155 Small amount None or almost none
## 2156 None or almost none None or almost none
## 2157 None or almost none None or almost none
## 2158 None or almost none None or almost none
## 2159 None or almost none None or almost none
## 2160 None or almost none None or almost none
## 2161 None or almost none None or almost none
## 2162 Large amount None or almost none
## 2163 None or almost none None or almost none
## 2164 None or almost none None or almost none
## 2165 None or almost none None or almost none
## 2166 None or almost none None or almost none
## 2167 None or almost none None or almost none
## 2168 None or almost none None or almost none
## 2169 None or almost none None or almost none
## 2170 Small amount None or almost none
## 2171 Small amount None or almost none
## 2172 None or almost none None or almost none
## 2173 None or almost none None or almost none
## 2174 None or almost none None or almost none
## 2175 None or almost none None or almost none
## 2176 None or almost none None or almost none
## 2177 None or almost none None or almost none
## 2178 None or almost none None or almost none
## 2179 Large amount Small amount
## 2180 None or almost none None or almost none
## 2181 None or almost none None or almost none
## 2182 None or almost none None or almost none
## 2183 Large amount None or almost none
## 2184 None or almost none None or almost none
## 2185 Small amount None or almost none
## 2186 Small amount Small amount
## 2187 None or almost none None or almost none
## 2188 None or almost none None or almost none
## 2189 None or almost none None or almost none
## 2190 Small amount None or almost none
## 2191 None or almost none None or almost none
## 2192 None or almost none None or almost none
## 2193 None or almost none None or almost none
## 2194 Small amount Small amount
## 2195 None or almost none None or almost none
## 2196 Small amount None or almost none
## 2197 None or almost none None or almost none
## 2198 Small amount None or almost none
## 2199 Small amount None or almost none
## 2200 None or almost none None or almost none
## 2201 Small amount None or almost none
## 2202 Small amount None or almost none
## 2203 None or almost none None or almost none
## 2204 None or almost none None or almost none
## 2205 None or almost none None or almost none
## 2206 None or almost none None or almost none
## 2207 None or almost none None or almost none
## 2208 None or almost none None or almost none
## 2209 None or almost none None or almost none
## 2210 None or almost none None or almost none
## 2211 Small amount None or almost none
## 2212 Small amount None or almost none
## 2213 Small amount None or almost none
## 2214 None or almost none None or almost none
## 2215 None or almost none None or almost none
## 2216 Small amount None or almost none
## 2217 None or almost none None or almost none
## 2218 Small amount None or almost none
## 2219 Small amount None or almost none
## 2220 None or almost none None or almost none
## 2221 None or almost none None or almost none
## 2222 None or almost none None or almost none
## 2223 Small amount Small amount
## 2224 None or almost none None or almost none
## 2225 None or almost none None or almost none
## 2226 None or almost none None or almost none
## 2227 None or almost none None or almost none
## 2228 None or almost none None or almost none
## 2229 Large amount Small amount
## 2230 None or almost none None or almost none
## 2231 None or almost none None or almost none
## 2232 Small amount Small amount
## 2233 Large amount None or almost none
## 2234 None or almost none None or almost none
## 2235 None or almost none None or almost none
## 2236 None or almost none None or almost none
## 2237 Small amount None or almost none
## 2238 None or almost none None or almost none
## 2239 None or almost none None or almost none
## 2240 None or almost none None or almost none
## 2241 None or almost none None or almost none
## 2242 None or almost none None or almost none
## 2243 None or almost none None or almost none
## 2244 Small amount None or almost none
## 2245 None or almost none None or almost none
## 2246 Small amount Small amount
## 2247 Small amount Small amount
## 2248 None or almost none None or almost none
## 2249 None or almost none None or almost none
## 2250 None or almost none None or almost none
## 2251 None or almost none None or almost none
## 2252 None or almost none None or almost none
## 2253 None or almost none None or almost none
## 2254 None or almost none None or almost none
## 2255 None or almost none None or almost none
## 2256 None or almost none None or almost none
## 2257 None or almost none None or almost none
## 2258 None or almost none None or almost none
## 2259 None or almost none None or almost none
## 2260 None or almost none None or almost none
## 2261 None or almost none None or almost none
## 2262 None or almost none None or almost none
## 2263 None or almost none None or almost none
## 2264 None or almost none None or almost none
## 2265 Large amount Small amount
## 2266 <NA> <NA>
## 2267 Small amount Small amount
## 2268 None or almost none None or almost none
## 2269 Small amount None or almost none
## 2270 <NA> <NA>
## 2271 Very large amount Very large amount
## 2272 Small amount None or almost none
## 2273 None or almost none None or almost none
## 2274 <NA> <NA>
## 2275 Small amount None or almost none
## 2276 None or almost none None or almost none
## 2277 Small amount None or almost none
## 2278 None or almost none None or almost none
## 2279 None or almost none None or almost none
## 2280 None or almost none None or almost none
## 2281 None or almost none None or almost none
## 2282 None or almost none None or almost none
## 2283 <NA> <NA>
## 2284 None or almost none None or almost none
## 2285 None or almost none None or almost none
## 2286 None or almost none None or almost none
## 2287 <NA> <NA>
## 2288 <NA> <NA>
## 2289 None or almost none None or almost none
## 2290 None or almost none None or almost none
## 2291 None or almost none None or almost none
## 2292 None or almost none None or almost none
## 2293 None or almost none None or almost none
## 2294 None or almost none None or almost none
## 2295 None or almost none None or almost none
## 2296 None or almost none None or almost none
## 2297 None or almost none None or almost none
## 2298 None or almost none None or almost none
## 2299 Small amount None or almost none
## 2300 Small amount None or almost none
## 2301 <NA> <NA>
## 2302 <NA> <NA>
## 2303 <NA> <NA>
## 2304 <NA> <NA>
## 2305 Small amount None or almost none
## 2306 <NA> <NA>
## 2307 <NA> <NA>
## 2308 None or almost none None or almost none
## 2309 None or almost none None or almost none
## 2310 None or almost none None or almost none
## 2311 <NA> <NA>
## 2312 None or almost none None or almost none
## 2313 <NA> <NA>
## 2314 Small amount Large amount
## 2315 Small amount Small amount
## 2316 None or almost none None or almost none
## 2317 None or almost none None or almost none
## 2318 Small amount Small amount
## 2319 None or almost none None or almost none
## 2320 Small amount Small amount
## 2321 None or almost none None or almost none
## 2322 None or almost none None or almost none
## 2323 None or almost none None or almost none
## 2324 <NA> <NA>
## 2325 None or almost none None or almost none
## 2326 None or almost none None or almost none
## 2327 None or almost none None or almost none
## 2328 <NA> <NA>
## 2329 None or almost none None or almost none
## 2330 None or almost none None or almost none
## 2331 None or almost none None or almost none
## 2332 <NA> <NA>
## 2333 None or almost none None or almost none
## 2334 None or almost none None or almost none
## 2335 Small amount Small amount
## 2336 None or almost none None or almost none
## 2337 Small amount None or almost none
## 2338 Small amount Small amount
## 2339 None or almost none None or almost none
## 2340 Small amount Small amount
## 2341 <NA> <NA>
## 2342 None or almost none None or almost none
## 2343 None or almost none None or almost none
## 2344 None or almost none None or almost none
## 2345 None or almost none None or almost none
## 2346 None or almost none None or almost none
## 2347 None or almost none None or almost none
## 2348 None or almost none None or almost none
## 2349 <NA> <NA>
## 2350 None or almost none None or almost none
## 2351 Small amount None or almost none
## 2352 Small amount None or almost none
## 2353 <NA> <NA>
## 2354 None or almost none None or almost none
## 2355 None or almost none None or almost none
## 2356 None or almost none None or almost none
## 2357 None or almost none None or almost none
## 2358 Small amount None or almost none
## 2359 <NA> <NA>
## 2360 None or almost none None or almost none
## 2361 Small amount None or almost none
## 2362 None or almost none None or almost none
## 2363 Small amount None or almost none
## 2364 None or almost none None or almost none
## 2365 <NA> <NA>
## 2366 None or almost none None or almost none
## 2367 None or almost none None or almost none
## 2368 None or almost none None or almost none
## 2369 Small amount None or almost none
## 2370 Small amount Small amount
## 2371 None or almost none None or almost none
## 2372 None or almost none None or almost none
## 2373 Small amount Small amount
## 2374 None or almost none None or almost none
## 2375 <NA> <NA>
## 2376 None or almost none None or almost none
## 2377 None or almost none None or almost none
## 2378 None or almost none None or almost none
## 2379 <NA> <NA>
## 2380 None or almost none None or almost none
## 2381 None or almost none None or almost none
## 2382 Small amount None or almost none
## 2383 Very large amount Small amount
## 2384 None or almost none None or almost none
## 2385 None or almost none None or almost none
## 2386 Very large amount None or almost none
## 2387 None or almost none None or almost none
## 2388 Large amount Small amount
## 2389 <NA> <NA>
## 2390 Small amount None or almost none
## 2391 <NA> <NA>
## 2392 Large amount None or almost none
## 2393 None or almost none None or almost none
## 2394 Small amount None or almost none
## 2395 None or almost none None or almost none
## 2396 None or almost none None or almost none
## 2397 None or almost none None or almost none
## 2398 None or almost none None or almost none
## 2399 None or almost none None or almost none
## 2400 None or almost none None or almost none
## 2401 None or almost none None or almost none
## 2402 None or almost none None or almost none
## 2403 None or almost none None or almost none
## 2404 None or almost none None or almost none
## 2405 None or almost none None or almost none
## 2406 None or almost none None or almost none
## 2407 None or almost none None or almost none
## 2408 <NA> <NA>
## 2409 None or almost none None or almost none
## 2410 Small amount None or almost none
## 2411 None or almost none None or almost none
## 2412 None or almost none None or almost none
## 2413 Small amount Small amount
## 2414 Large amount None or almost none
## 2415 None or almost none None or almost none
## 2416 None or almost none None or almost none
## 2417 Small amount None or almost none
## 2418 None or almost none None or almost none
## 2419 None or almost none None or almost none
## 2420 None or almost none None or almost none
## 2421 <NA> <NA>
## 2422 None or almost none None or almost none
## 2423 Small amount None or almost none
## 2424 None or almost none None or almost none
## 2425 None or almost none None or almost none
## 2426 None or almost none None or almost none
## 2427 None or almost none None or almost none
## 2428 None or almost none None or almost none
## 2429 None or almost none None or almost none
## 2430 None or almost none None or almost none
## 2431 None or almost none None or almost none
## 2432 None or almost none None or almost none
## 2433 Small amount None or almost none
## 2434 None or almost none None or almost none
## 2435 <NA> <NA>
## 2436 <NA> <NA>
## 2437 <NA> <NA>
## 2438 None or almost none None or almost none
## 2439 Small amount Small amount
## 2440 None or almost none None or almost none
## 2441 Small amount Small amount
## 2442 Small amount None or almost none
## 2443 None or almost none None or almost none
## 2444 <NA> <NA>
## 2445 None or almost none None or almost none
## 2446 None or almost none None or almost none
## 2447 None or almost none Small amount
## 2448 None or almost none None or almost none
## 2449 None or almost none None or almost none
## 2450 None or almost none None or almost none
## 2451 None or almost none None or almost none
## 2452 <NA> <NA>
## 2453 None or almost none None or almost none
## 2454 <NA> <NA>
## 2455 None or almost none None or almost none
## 2456 None or almost none None or almost none
## 2457 Large amount None or almost none
## 2458 None or almost none None or almost none
## 2459 <NA> <NA>
## 2460 Small amount None or almost none
## 2461 None or almost none None or almost none
## 2462 None or almost none None or almost none
## 2463 Small amount Small amount
## 2464 Very large amount Small amount
## 2465 <NA> <NA>
## 2466 None or almost none None or almost none
## 2467 Small amount None or almost none
## 2468 None or almost none None or almost none
## 2469 Small amount None or almost none
## 2470 <NA> <NA>
## 2471 None or almost none None or almost none
## 2472 None or almost none None or almost none
## 2473 None or almost none None or almost none
## 2474 None or almost none None or almost none
## 2475 Small amount Small amount
## 2476 None or almost none None or almost none
## 2477 None or almost none None or almost none
## 2478 None or almost none None or almost none
## 2479 <NA> <NA>
## 2480 None or almost none None or almost none
## 2481 None or almost none None or almost none
## 2482 <NA> <NA>
## 2483 <NA> <NA>
## 2484 None or almost none None or almost none
## 2485 Small amount None or almost none
## 2486 Small amount Small amount
## 2487 None or almost none None or almost none
## 2488 Small amount None or almost none
## 2489 Small amount None or almost none
## 2490 Small amount Small amount
## 2491 Small amount Small amount
## 2492 <NA> <NA>
## 2493 None or almost none None or almost none
## 2494 None or almost none None or almost none
## 2495 None or almost none None or almost none
## 2496 <NA> <NA>
## 2497 Small amount None or almost none
## 2498 None or almost none None or almost none
## 2499 None or almost none None or almost none
## 2500 None or almost none None or almost none
## 2501 Small amount Small amount
## 2502 Small amount None or almost none
## 2503 None or almost none None or almost none
## 2504 <NA> <NA>
## 2505 None or almost none None or almost none
## 2506 None or almost none None or almost none
## 2507 Small amount Small amount
## 2508 Small amount None or almost none
## 2509 None or almost none None or almost none
## 2510 Small amount None or almost none
## 2511 None or almost none None or almost none
## 2512 None or almost none None or almost none
## 2513 <NA> <NA>
## 2514 None or almost none None or almost none
## 2515 None or almost none None or almost none
## 2516 None or almost none None or almost none
## 2517 None or almost none None or almost none
## 2518 None or almost none None or almost none
## 2519 <NA> <NA>
## 2520 None or almost none None or almost none
## 2521 <NA> <NA>
## 2522 Small amount None or almost none
## 2523 None or almost none None or almost none
## 2524 Large amount Small amount
## 2525 None or almost none None or almost none
## 2526 None or almost none None or almost none
## 2527 None or almost none None or almost none
## 2528 None or almost none None or almost none
## 2529 Small amount None or almost none
## 2530 None or almost none None or almost none
## 2531 Small amount None or almost none
## 2532 None or almost none None or almost none
## 2533 None or almost none None or almost none
## 2534 <NA> <NA>
## 2535 Small amount None or almost none
## 2536 None or almost none None or almost none
## 2537 Small amount Small amount
## 2538 <NA> <NA>
## 2539 None or almost none None or almost none
## 2540 None or almost none None or almost none
## 2541 None or almost none None or almost none
## 2542 None or almost none None or almost none
## 2543 None or almost none None or almost none
## 2544 <NA> <NA>
## 2545 None or almost none None or almost none
## 2546 <NA> <NA>
## 2547 Small amount None or almost none
## 2548 None or almost none None or almost none
## 2549 Small amount Small amount
## 2550 None or almost none None or almost none
## 2551 None or almost none None or almost none
## 2552 None or almost none None or almost none
## 2553 None or almost none None or almost none
## 2554 None or almost none None or almost none
## 2555 None or almost none None or almost none
## 2556 None or almost none None or almost none
## 2557 None or almost none None or almost none
## 2558 Small amount None or almost none
## 2559 None or almost none None or almost none
## 2560 None or almost none None or almost none
## 2561 None or almost none None or almost none
## 2562 None or almost none None or almost none
## 2563 None or almost none None or almost none
## 2564 Small amount Small amount
## 2565 Small amount None or almost none
## 2566 None or almost none None or almost none
## 2567 None or almost none None or almost none
## 2568 None or almost none None or almost none
## 2569 None or almost none None or almost none
## 2570 None or almost none None or almost none
## 2571 <NA> <NA>
## 2572 Very large amount Small amount
## 2573 None or almost none None or almost none
## 2574 None or almost none None or almost none
## 2575 None or almost none None or almost none
## 2576 <NA> <NA>
## 2577 None or almost none None or almost none
## 2578 None or almost none None or almost none
## 2579 <NA> <NA>
## 2580 None or almost none None or almost none
## 2581 Small amount None or almost none
## 2582 None or almost none None or almost none
## 2583 None or almost none None or almost none
## 2584 None or almost none None or almost none
## 2585 Small amount None or almost none
## 2586 Small amount None or almost none
## 2587 None or almost none None or almost none
## 2588 None or almost none None or almost none
## 2589 None or almost none None or almost none
## 2590 None or almost none None or almost none
## 2591 Small amount None or almost none
## 2592 None or almost none None or almost none
## 2593 None or almost none None or almost none
## 2594 None or almost none None or almost none
## 2595 None or almost none None or almost none
## 2596 None or almost none None or almost none
## 2597 Small amount Small amount
## 2598 <NA> <NA>
## 2599 Small amount None or almost none
## 2600 None or almost none None or almost none
## 2601 <NA> <NA>
## 2602 Large amount Small amount
## 2603 None or almost none None or almost none
## 2604 None or almost none None or almost none
## 2605 None or almost none None or almost none
## 2606 None or almost none None or almost none
## 2607 None or almost none None or almost none
## 2608 None or almost none None or almost none
## 2609 <NA> <NA>
## 2610 None or almost none None or almost none
## 2611 Small amount Small amount
## 2612 <NA> <NA>
## 2613 None or almost none None or almost none
## 2614 <NA> <NA>
## 2615 None or almost none None or almost none
## 2616 None or almost none None or almost none
## 2617 None or almost none None or almost none
## 2618 Small amount None or almost none
## 2619 None or almost none None or almost none
## 2620 None or almost none None or almost none
## 2621 Small amount None or almost none
## 2622 None or almost none None or almost none
## 2623 None or almost none None or almost none
## 2624 None or almost none None or almost none
## 2625 None or almost none None or almost none
## 2626 None or almost none None or almost none
## 2627 Small amount Small amount
## 2628 Small amount None or almost none
## 2629 Small amount Small amount
## 2630 None or almost none None or almost none
## 2631 Small amount None or almost none
## 2632 None or almost none None or almost none
## 2633 None or almost none None or almost none
## 2634 None or almost none None or almost none
## 2635 None or almost none None or almost none
## 2636 None or almost none None or almost none
## 2637 None or almost none None or almost none
## 2638 None or almost none None or almost none
## 2639 <NA> <NA>
## 2640 None or almost none None or almost none
## 2641 Small amount None or almost none
## 2642 Small amount Small amount
## 2643 None or almost none None or almost none
## 2644 <NA> <NA>
## 2645 None or almost none None or almost none
## 2646 <NA> <NA>
## 2647 <NA> <NA>
## 2648 None or almost none None or almost none
## 2649 None or almost none None or almost none
## 2650 <NA> <NA>
## 2651 None or almost none None or almost none
## 2652 None or almost none None or almost none
## 2653 None or almost none None or almost none
## 2654 None or almost none None or almost none
## 2655 <NA> <NA>
## 2656 Small amount None or almost none
## 2657 <NA> <NA>
## 2658 <NA> <NA>
## 2659 None or almost none None or almost none
## 2660 Small amount Small amount
## 2661 Small amount None or almost none
## 2662 None or almost none None or almost none
## 2663 None or almost none None or almost none
## 2664 None or almost none None or almost none
## 2665 None or almost none None or almost none
## 2666 None or almost none None or almost none
## 2667 None or almost none None or almost none
## 2668 <NA> <NA>
## 2669 <NA> <NA>
## 2670 None or almost none None or almost none
## 2671 None or almost none None or almost none
## 2672 Small amount Small amount
## 2673 Small amount None or almost none
## 2674 None or almost none None or almost none
## 2675 None or almost none None or almost none
## 2676 None or almost none Small amount
## 2677 Small amount None or almost none
## 2678 None or almost none None or almost none
## 2679 None or almost none None or almost none
## 2680 None or almost none None or almost none
## 2681 None or almost none None or almost none
## 2682 None or almost none None or almost none
## 2683 None or almost none None or almost none
## 2684 Small amount None or almost none
## 2685 None or almost none None or almost none
## 2686 Large amount None or almost none
## 2687 Small amount Small amount
## 2688 None or almost none None or almost none
## 2689 None or almost none None or almost none
## 2690 None or almost none None or almost none
## 2691 <NA> <NA>
## 2692 None or almost none None or almost none
## 2693 None or almost none None or almost none
## 2694 None or almost none None or almost none
## 2695 Small amount None or almost none
## 2696 <NA> <NA>
## 2697 None or almost none None or almost none
## 2698 None or almost none None or almost none
## 2699 Small amount None or almost none
## 2700 None or almost none None or almost none
## 2701 <NA> <NA>
## 2702 Small amount None or almost none
## 2703 Small amount Small amount
## 2704 None or almost none None or almost none
## 2705 None or almost none None or almost none
## 2706 Small amount None or almost none
## 2707 None or almost none None or almost none
## 2708 None or almost none None or almost none
## 2709 None or almost none None or almost none
## 2710 None or almost none None or almost none
## 2711 <NA> <NA>
## 2712 None or almost none None or almost none
## 2713 None or almost none None or almost none
## 2714 None or almost none None or almost none
## 2715 None or almost none None or almost none
## 2716 None or almost none None or almost none
## 2717 None or almost none None or almost none
## 2718 None or almost none None or almost none
## 2719 None or almost none None or almost none
## 2720 None or almost none None or almost none
## 2721 <NA> <NA>
## 2722 None or almost none None or almost none
## 2723 None or almost none None or almost none
## 2724 None or almost none None or almost none
## 2725 None or almost none None or almost none
## 2726 None or almost none None or almost none
## 2727 Small amount None or almost none
## 2728 Small amount None or almost none
## 2729 Small amount None or almost none
## 2730 None or almost none None or almost none
## 2731 Small amount Small amount
## 2732 None or almost none None or almost none
## 2733 None or almost none None or almost none
## 2734 None or almost none None or almost none
## 2735 None or almost none None or almost none
## 2736 Small amount None or almost none
## 2737 None or almost none None or almost none
## 2738 None or almost none None or almost none
## 2739 None or almost none None or almost none
## 2740 None or almost none None or almost none
## 2741 None or almost none None or almost none
## 2742 <NA> <NA>
## 2743 Large amount None or almost none
## 2744 None or almost none None or almost none
## 2745 None or almost none None or almost none
## 2746 <NA> <NA>
## 2747 Small amount None or almost none
## 2748 Large amount Small amount
## 2749 None or almost none None or almost none
## 2750 None or almost none None or almost none
## 2751 None or almost none None or almost none
## 2752 Small amount Small amount
## 2753 None or almost none None or almost none
## 2754 None or almost none None or almost none
## 2755 None or almost none None or almost none
## 2756 None or almost none None or almost none
## 2757 <NA> <NA>
## 2758 Small amount None or almost none
## 2759 None or almost none None or almost none
## 2760 Small amount None or almost none
## 2761 None or almost none None or almost none
## 2762 Small amount None or almost none
## 2763 None or almost none None or almost none
## 2764 <NA> <NA>
## 2765 None or almost none None or almost none
## 2766 None or almost none None or almost none
## 2767 None or almost none None or almost none
## 2768 Small amount None or almost none
## 2769 None or almost none None or almost none
## 2770 <NA> <NA>
## 2771 None or almost none None or almost none
## 2772 None or almost none None or almost none
## 2773 None or almost none None or almost none
## 2774 Small amount None or almost none
## 2775 Very large amount Small amount
## 2776 <NA> <NA>
## 2777 None or almost none None or almost none
## 2778 None or almost none None or almost none
## 2779 <NA> <NA>
## 2780 None or almost none None or almost none
## 2781 None or almost none None or almost none
## 2782 None or almost none None or almost none
## 2783 None or almost none None or almost none
## 2784 None or almost none None or almost none
## 2785 None or almost none None or almost none
## 2786 None or almost none None or almost none
## 2787 None or almost none None or almost none
## 2788 None or almost none None or almost none
## 2789 <NA> <NA>
## 2790 None or almost none None or almost none
## 2791 Small amount Small amount
## 2792 None or almost none None or almost none
## 2793 None or almost none None or almost none
## 2794 None or almost none None or almost none
## 2795 None or almost none None or almost none
## 2796 <NA> <NA>
## 2797 None or almost none None or almost none
## 2798 None or almost none None or almost none
## 2799 Small amount Small amount
## 2800 Small amount None or almost none
## 2801 <NA> <NA>
## 2802 None or almost none None or almost none
## 2803 Small amount None or almost none
## 2804 None or almost none None or almost none
## 2805 Small amount None or almost none
## 2806 Small amount None or almost none
## 2807 <NA> <NA>
## 2808 None or almost none None or almost none
## 2809 None or almost none None or almost none
## 2810 None or almost none None or almost none
## 2811 None or almost none None or almost none
## 2812 None or almost none None or almost none
## 2813 <NA> <NA>
## 2814 Small amount Small amount
## 2815 Small amount None or almost none
## 2816 <NA> <NA>
## 2817 None or almost none None or almost none
## 2818 Small amount Small amount
## 2819 None or almost none None or almost none
## 2820 Large amount Small amount
## 2821 <NA> <NA>
## 2822 None or almost none None or almost none
## 2823 None or almost none None or almost none
## 2824 None or almost none None or almost none
## 2825 None or almost none None or almost none
## 2826 None or almost none None or almost none
## 2827 None or almost none None or almost none
## 2828 None or almost none None or almost none
## 2829 None or almost none None or almost none
## 2830 Small amount None or almost none
## 2831 <NA> <NA>
## 2832 None or almost none None or almost none
## 2833 None or almost none None or almost none
## 2834 None or almost none None or almost none
## 2835 None or almost none None or almost none
## 2836 None or almost none None or almost none
## 2837 None or almost none None or almost none
## 2838 Small amount None or almost none
## 2839 None or almost none None or almost none
## 2840 None or almost none None or almost none
## 2841 Small amount None or almost none
## 2842 None or almost none None or almost none
## 2843 <NA> <NA>
## 2844 None or almost none None or almost none
## 2845 None or almost none None or almost none
## 2846 None or almost none None or almost none
## 2847 Small amount None or almost none
## 2848 <NA> <NA>
## 2849 Small amount None or almost none
## 2850 None or almost none None or almost none
## 2851 Small amount Small amount
## 2852 None or almost none None or almost none
## 2853 None or almost none None or almost none
## 2854 <NA> <NA>
## 2855 <NA> <NA>
## 2856 None or almost none None or almost none
## 2857 None or almost none None or almost none
## 2858 <NA> <NA>
## 2859 None or almost none None or almost none
## 2860 Small amount None or almost none
## 2861 Small amount Small amount
## 2862 None or almost none None or almost none
## 2863 None or almost none None or almost none
## 2864 <NA> <NA>
## 2865 Small amount None or almost none
## 2866 Small amount None or almost none
## 2867 Small amount None or almost none
## 2868 None or almost none None or almost none
## 2869 None or almost none None or almost none
## 2870 <NA> <NA>
## 2871 <NA> <NA>
## 2872 Small amount None or almost none
## 2873 None or almost none None or almost none
## 2874 None or almost none None or almost none
## 2875 None or almost none None or almost none
## 2876 None or almost none None or almost none
## 2877 None or almost none None or almost none
## 2878 <NA> <NA>
## 2879 None or almost none None or almost none
## 2880 Small amount None or almost none
## 2881 None or almost none None or almost none
## 2882 None or almost none None or almost none
## 2883 None or almost none None or almost none
## 2884 None or almost none None or almost none
## 2885 None or almost none None or almost none
## 2886 Small amount Small amount
## 2887 <NA> <NA>
## 2888 None or almost none None or almost none
## 2889 Small amount Small amount
## 2890 Small amount None or almost none
## 2891 None or almost none None or almost none
## 2892 Small amount None or almost none
## 2893 None or almost none None or almost none
## 2894 None or almost none None or almost none
## 2895 None or almost none None or almost none
## 2896 None or almost none None or almost none
## 2897 None or almost none None or almost none
## 2898 Small amount None or almost none
## 2899 <NA> <NA>
## 2900 None or almost none None or almost none
## 2901 <NA> <NA>
## 2902 Small amount None or almost none
## 2903 None or almost none None or almost none
## 2904 Small amount None or almost none
## 2905 None or almost none None or almost none
## 2906 None or almost none None or almost none
## 2907 <NA> <NA>
## 2908 <NA> <NA>
## 2909 None or almost none None or almost none
## 2910 None or almost none None or almost none
## 2911 <NA> <NA>
## 2912 Small amount Small amount
## 2913 None or almost none None or almost none
## 2914 None or almost none None or almost none
## 2915 None or almost none None or almost none
## 2916 <NA> <NA>
## 2917 <NA> <NA>
## 2918 None or almost none None or almost none
## 2919 <NA> <NA>
## 2920 None or almost none None or almost none
## 2921 None or almost none None or almost none
## 2922 None or almost none None or almost none
## 2923 Small amount None or almost none
## 2924 None or almost none None or almost none
## 2925 <NA> <NA>
## 2926 None or almost none None or almost none
## 2927 <NA> <NA>
## 2928 Small amount None or almost none
## 2929 None or almost none None or almost none
## 2930 None or almost none None or almost none
## 2931 <NA> <NA>
## 2932 None or almost none None or almost none
## 2933 Small amount None or almost none
## 2934 Large amount None or almost none
## 2935 None or almost none None or almost none
## 2936 <NA> <NA>
## 2937 None or almost none None or almost none
## 2938 None or almost none None or almost none
## 2939 None or almost none None or almost none
## 2940 <NA> <NA>
## 2941 None or almost none None or almost none
## 2942 Small amount Small amount
## 2943 None or almost none None or almost none
## 2944 None or almost none None or almost none
## 2945 None or almost none None or almost none
## 2946 None or almost none None or almost none
## 2947 None or almost none None or almost none
## 2948 None or almost none None or almost none
## 2949 Small amount Small amount
## 2950 Small amount Small amount
## 2951 None or almost none None or almost none
## 2952 None or almost none None or almost none
## 2953 None or almost none None or almost none
## 2954 None or almost none None or almost none
## 2955 None or almost none None or almost none
## 2956 <NA> <NA>
## 2957 None or almost none None or almost none
## 2958 None or almost none None or almost none
## 2959 <NA> <NA>
## 2960 Small amount None or almost none
## 2961 Small amount None or almost none
## 2962 None or almost none None or almost none
## 2963 None or almost none None or almost none
## 2964 None or almost none None or almost none
## 2965 None or almost none None or almost none
## 2966 <NA> <NA>
## 2967 <NA> <NA>
## 2968 None or almost none None or almost none
## 2969 None or almost none None or almost none
## 2970 None or almost none None or almost none
## 2971 None or almost none None or almost none
## 2972 <NA> <NA>
## 2973 None or almost none None or almost none
## 2974 None or almost none None or almost none
## 2975 Small amount Small amount
## 2976 None or almost none None or almost none
## 2977 Large amount None or almost none
## 2978 <NA> <NA>
## 2979 <NA> <NA>
## 2980 <NA> <NA>
## 2981 None or almost none None or almost none
## 2982 None or almost none None or almost none
## 2983 None or almost none None or almost none
## 2984 Small amount None or almost none
## 2985 Small amount None or almost none
## 2986 None or almost none None or almost none
## 2987 Small amount None or almost none
## 2988 <NA> <NA>
## 2989 None or almost none None or almost none
## 2990 None or almost none None or almost none
## 2991 None or almost none None or almost none
## 2992 None or almost none None or almost none
## 2993 None or almost none None or almost none
## 2994 None or almost none None or almost none
## 2995 None or almost none None or almost none
## 2996 <NA> <NA>
## 2997 <NA> <NA>
## 2998 Small amount Small amount
## 2999 <NA> <NA>
## 3000 <NA> <NA>
## 3001 None or almost none None or almost none
## 3002 None or almost none None or almost none
## 3003 None or almost none None or almost none
## 3004 <NA> <NA>
## 3005 None or almost none None or almost none
## 3006 <NA> <NA>
## 3007 Small amount Small amount
## 3008 Small amount None or almost none
## 3009 None or almost none None or almost none
## 3010 Small amount None or almost none
## 3011 None or almost none None or almost none
## 3012 None or almost none None or almost none
## 3013 None or almost none None or almost none
## 3014 None or almost none None or almost none
## 3015 None or almost none None or almost none
## 3016 None or almost none None or almost none
## 3017 None or almost none None or almost none
## 3018 None or almost none None or almost none
## 3019 <NA> <NA>
## 3020 <NA> <NA>
## 3021 None or almost none None or almost none
## 3022 None or almost none None or almost none
## 3023 <NA> <NA>
## 3024 None or almost none None or almost none
## 3025 Small amount None or almost none
## 3026 None or almost none None or almost none
## 3027 None or almost none None or almost none
## 3028 None or almost none None or almost none
## 3029 None or almost none None or almost none
## 3030 None or almost none None or almost none
## 3031 Small amount None or almost none
## 3032 None or almost none None or almost none
## 3033 None or almost none None or almost none
## 3034 None or almost none None or almost none
## 3035 None or almost none None or almost none
## 3036 Small amount None or almost none
## 3037 None or almost none None or almost none
## 3038 <NA> <NA>
## 3039 <NA> <NA>
## 3040 None or almost none None or almost none
## 3041 None or almost none None or almost none
## 3042 None or almost none None or almost none
## 3043 None or almost none None or almost none
## 3044 None or almost none None or almost none
## 3045 None or almost none None or almost none
## 3046 Small amount None or almost none
## 3047 <NA> <NA>
## 3048 Small amount None or almost none
## 3049 None or almost none None or almost none
## 3050 None or almost none None or almost none
## 3051 Small amount None or almost none
## 3052 None or almost none None or almost none
## 3053 Small amount Small amount
## 3054 None or almost none None or almost none
## 3055 None or almost none None or almost none
## 3056 None or almost none None or almost none
## 3057 None or almost none None or almost none
## 3058 None or almost none None or almost none
## 3059 Small amount None or almost none
## 3060 Small amount None or almost none
## 3061 None or almost none None or almost none
## 3062 None or almost none None or almost none
## 3063 None or almost none None or almost none
## 3064 None or almost none None or almost none
## 3065 Small amount None or almost none
## 3066 Small amount Small amount
## 3067 None or almost none None or almost none
## 3068 Small amount Small amount
## 3069 None or almost none None or almost none
## 3070 None or almost none None or almost none
## 3071 None or almost none None or almost none
## 3072 Large amount None or almost none
## 3073 None or almost none None or almost none
## 3074 None or almost none None or almost none
## 3075 None or almost none None or almost none
## 3076 None or almost none None or almost none
## 3077 None or almost none None or almost none
## 3078 None or almost none None or almost none
## 3079 <NA> <NA>
## 3080 None or almost none None or almost none
## 3081 None or almost none None or almost none
## 3082 None or almost none None or almost none
## 3083 None or almost none None or almost none
## 3084 <NA> <NA>
## 3085 <NA> <NA>
## 3086 None or almost none None or almost none
## 3087 <NA> <NA>
## 3088 None or almost none None or almost none
## 3089 None or almost none None or almost none
## 3090 None or almost none None or almost none
## 3091 None or almost none None or almost none
## 3092 None or almost none None or almost none
## 3093 None or almost none None or almost none
## 3094 None or almost none None or almost none
## 3095 <NA> <NA>
## 3096 None or almost none None or almost none
## 3097 None or almost none None or almost none
## 3098 <NA> <NA>
## 3099 None or almost none None or almost none
## 3100 None or almost none None or almost none
## 3101 None or almost none None or almost none
## 3102 Small amount None or almost none
## 3103 None or almost none None or almost none
## 3104 None or almost none None or almost none
## 3105 Small amount Small amount
## 3106 None or almost none None or almost none
## 3107 Small amount Small amount
## 3108 None or almost none None or almost none
## 3109 None or almost none None or almost none
## 3110 None or almost none None or almost none
## 3111 None or almost none None or almost none
## 3112 None or almost none None or almost none
## 3113 None or almost none None or almost none
## 3114 Small amount None or almost none
## 3115 None or almost none None or almost none
## 3116 None or almost none None or almost none
## 3117 <NA> <NA>
## 3118 <NA> <NA>
## 3119 None or almost none None or almost none
## 3120 None or almost none None or almost none
## 3121 Small amount None or almost none
## 3122 None or almost none None or almost none
## 3123 None or almost none None or almost none
## 3124 <NA> <NA>
## 3125 Small amount Small amount
## 3126 None or almost none None or almost none
## 3127 None or almost none None or almost none
## 3128 <NA> <NA>
## 3129 None or almost none None or almost none
## 3130 None or almost none None or almost none
## 3131 None or almost none None or almost none
## 3132 <NA> <NA>
## 3133 None or almost none None or almost none
## 3134 None or almost none None or almost none
## 3135 None or almost none None or almost none
## 3136 None or almost none None or almost none
## 3137 <NA> <NA>
## 3138 <NA> <NA>
## 3139 None or almost none None or almost none
## 3140 None or almost none None or almost none
## 3141 None or almost none None or almost none
## 3142 None or almost none None or almost none
## 3143 None or almost none None or almost none
## 3144 None or almost none None or almost none
## 3145 Small amount Small amount
## 3146 None or almost none None or almost none
## 3147 None or almost none None or almost none
## 3148 None or almost none None or almost none
## 3149 None or almost none None or almost none
## 3150 Small amount Small amount
## 3151 None or almost none None or almost none
## 3152 <NA> <NA>
## 3153 None or almost none None or almost none
## 3154 None or almost none None or almost none
## 3155 None or almost none None or almost none
## 3156 None or almost none None or almost none
## 3157 <NA> <NA>
## 3158 Small amount Small amount
## 3159 None or almost none None or almost none
## 3160 Small amount Small amount
## 3161 None or almost none None or almost none
## 3162 Small amount None or almost none
## 3163 None or almost none None or almost none
## 3164 None or almost none None or almost none
## 3165 <NA> <NA>
## 3166 None or almost none None or almost none
## 3167 None or almost none None or almost none
## 3168 None or almost none None or almost none
## 3169 None or almost none None or almost none
## 3170 None or almost none Small amount
## 3171 None or almost none None or almost none
## 3172 Small amount None or almost none
## 3173 <NA> <NA>
## 3174 None or almost none None or almost none
## 3175 <NA> <NA>
## 3176 Small amount Small amount
## 3177 None or almost none None or almost none
## 3178 None or almost none None or almost none
## 3179 Large amount None or almost none
## 3180 None or almost none None or almost none
## 3181 None or almost none None or almost none
## 3182 None or almost none None or almost none
## 3183 None or almost none None or almost none
## 3184 Small amount None or almost none
## 3185 None or almost none None or almost none
## 3186 None or almost none None or almost none
## 3187 None or almost none None or almost none
## 3188 None or almost none None or almost none
## 3189 Small amount None or almost none
## 3190 <NA> <NA>
## 3191 Small amount None or almost none
## 3192 None or almost none None or almost none
## 3193 None or almost none None or almost none
## 3194 None or almost none None or almost none
## 3195 <NA> <NA>
## 3196 <NA> <NA>
## 3197 Large amount Small amount
## 3198 <NA> <NA>
## 3199 None or almost none None or almost none
## 3200 Large amount Small amount
## 3201 None or almost none None or almost none
## 3202 Small amount None or almost none
## 3203 None or almost none None or almost none
## 3204 None or almost none None or almost none
## 3205 None or almost none None or almost none
## 3206 Small amount Small amount
## 3207 None or almost none None or almost none
## 3208 None or almost none None or almost none
## 3209 <NA> <NA>
## 3210 Large amount Small amount
## 3211 None or almost none None or almost none
## 3212 None or almost none None or almost none
## 3213 Small amount Small amount
## 3214 Small amount None or almost none
## 3215 Small amount Small amount
## 3216 None or almost none None or almost none
## 3217 Small amount None or almost none
## 3218 Small amount None or almost none
## 3219 Small amount None or almost none
## 3220 <NA> <NA>
## 3221 None or almost none None or almost none
## 3222 None or almost none None or almost none
## 3223 None or almost none None or almost none
## 3224 <NA> <NA>
## 3225 Small amount None or almost none
## 3226 None or almost none None or almost none
## 3227 None or almost none None or almost none
## 3228 None or almost none None or almost none
## 3229 Small amount Small amount
## 3230 Large amount None or almost none
## 3231 None or almost none None or almost none
## 3232 None or almost none None or almost none
## 3233 None or almost none None or almost none
## 3234 None or almost none None or almost none
## 3235 None or almost none None or almost none
## 3236 None or almost none None or almost none
## 3237 None or almost none None or almost none
## 3238 <NA> <NA>
## 3239 None or almost none None or almost none
## 3240 Small amount None or almost none
## 3241 Small amount None or almost none
## 3242 <NA> <NA>
## 3243 Small amount None or almost none
## 3244 <NA> <NA>
## 3245 None or almost none None or almost none
## 3246 <NA> <NA>
## 3247 Small amount None or almost none
## 3248 <NA> <NA>
## 3249 None or almost none None or almost none
## 3250 <NA> <NA>
## 3251 Small amount Small amount
## 3252 Small amount None or almost none
## 3253 None or almost none None or almost none
## 3254 None or almost none None or almost none
## 3255 Small amount Small amount
## 3256 Small amount None or almost none
## 3257 None or almost none None or almost none
## 3258 Small amount None or almost none
## 3259 None or almost none None or almost none
## 3260 <NA> <NA>
## 3261 None or almost none None or almost none
## 3262 Small amount None or almost none
## 3263 Small amount Small amount
## 3264 None or almost none None or almost none
## 3265 None or almost none None or almost none
## 3266 Large amount Small amount
## 3267 Small amount Small amount
## 3268 None or almost none None or almost none
## 3269 Small amount None or almost none
## 3270 <NA> <NA>
## 3271 None or almost none None or almost none
## 3272 None or almost none None or almost none
## 3273 None or almost none None or almost none
## 3274 None or almost none None or almost none
## 3275 None or almost none None or almost none
## 3276 Small amount Small amount
## 3277 None or almost none None or almost none
## 3278 None or almost none None or almost none
## 3279 None or almost none None or almost none
## 3280 None or almost none None or almost none
## 3281 None or almost none None or almost none
## 3282 None or almost none None or almost none
## 3283 None or almost none None or almost none
## 3284 Small amount None or almost none
## 3285 None or almost none None or almost none
## 3286 None or almost none None or almost none
## 3287 Small amount Small amount
## 3288 None or almost none None or almost none
## 3289 Small amount None or almost none
## 3290 None or almost none None or almost none
## 3291 Small amount Small amount
## 3292 <NA> <NA>
## 3293 None or almost none None or almost none
## 3294 Small amount Small amount
## 3295 None or almost none None or almost none
## 3296 None or almost none None or almost none
## 3297 None or almost none None or almost none
## 3298 None or almost none None or almost none
## 3299 None or almost none None or almost none
## 3300 None or almost none None or almost none
## 3301 <NA> <NA>
## 3302 None or almost none None or almost none
## 3303 None or almost none None or almost none
## 3304 None or almost none None or almost none
## 3305 Small amount None or almost none
## 3306 None or almost none None or almost none
## 3307 None or almost none None or almost none
## 3308 <NA> <NA>
## 3309 None or almost none None or almost none
## 3310 None or almost none None or almost none
## 3311 <NA> <NA>
## 3312 None or almost none None or almost none
## 3313 None or almost none None or almost none
## 3314 None or almost none None or almost none
## 3315 Small amount None or almost none
## 3316 <NA> <NA>
## 3317 None or almost none None or almost none
## 3318 None or almost none None or almost none
## 3319 None or almost none None or almost none
## 3320 None or almost none None or almost none
## 3321 None or almost none None or almost none
## 3322 None or almost none None or almost none
## 3323 None or almost none None or almost none
## 3324 None or almost none None or almost none
## 3325 None or almost none None or almost none
## 3326 None or almost none None or almost none
## 3327 None or almost none None or almost none
## 3328 None or almost none None or almost none
## 3329 Small amount None or almost none
## 3330 None or almost none None or almost none
## 3331 Small amount Small amount
## 3332 Small amount None or almost none
## 3333 None or almost none None or almost none
## 3334 None or almost none None or almost none
## 3335 None or almost none None or almost none
## 3336 None or almost none None or almost none
## 3337 None or almost none None or almost none
## 3338 <NA> <NA>
## 3339 <NA> <NA>
## 3340 <NA> <NA>
## 3341 Small amount None or almost none
## 3342 None or almost none None or almost none
## 3343 <NA> <NA>
## 3344 None or almost none None or almost none
## 3345 Small amount Small amount
## 3346 None or almost none None or almost none
## 3347 <NA> <NA>
## 3348 None or almost none None or almost none
## 3349 None or almost none None or almost none
## 3350 Small amount None or almost none
## 3351 Small amount None or almost none
## 3352 None or almost none None or almost none
## 3353 None or almost none None or almost none
## 3354 None or almost none None or almost none
## 3355 None or almost none None or almost none
## 3356 Small amount None or almost none
## 3357 None or almost none None or almost none
## 3358 Small amount None or almost none
## 3359 <NA> <NA>
## 3360 <NA> <NA>
## 3361 Small amount None or almost none
## 3362 None or almost none None or almost none
## 3363 Small amount None or almost none
## 3364 Small amount None or almost none
## 3365 None or almost none None or almost none
## 3366 <NA> <NA>
## 3367 <NA> <NA>
## 3368 Small amount None or almost none
## 3369 None or almost none None or almost none
## 3370 Small amount Small amount
## 3371 None or almost none None or almost none
## 3372 <NA> <NA>
## 3373 None or almost none None or almost none
## 3374 <NA> <NA>
## 3375 Small amount Small amount
## 3376 None or almost none None or almost none
## 3377 None or almost none None or almost none
## 3378 None or almost none None or almost none
## 3379 Small amount Small amount
## 3380 Small amount None or almost none
## 3381 None or almost none None or almost none
## 3382 None or almost none None or almost none
## 3383 <NA> <NA>
## 3384 None or almost none None or almost none
## 3385 None or almost none None or almost none
## 3386 None or almost none None or almost none
## 3387 None or almost none None or almost none
## 3388 None or almost none None or almost none
## 3389 None or almost none None or almost none
## 3390 None or almost none None or almost none
## 3391 None or almost none None or almost none
## 3392 Small amount None or almost none
## 3393 Very large amount Small amount
## 3394 Small amount None or almost none
## 3395 None or almost none None or almost none
## 3396 <NA> <NA>
## 3397 None or almost none None or almost none
## 3398 None or almost none None or almost none
## 3399 None or almost none None or almost none
## 3400 None or almost none None or almost none
## 3401 <NA> <NA>
## 3402 Small amount None or almost none
## 3403 None or almost none None or almost none
## 3404 None or almost none None or almost none
## 3405 Small amount None or almost none
## 3406 None or almost none None or almost none
## 3407 None or almost none None or almost none
## 3408 None or almost none None or almost none
## 3409 None or almost none None or almost none
## 3410 Small amount None or almost none
## 3411 <NA> <NA>
## 3412 None or almost none None or almost none
## 3413 None or almost none None or almost none
## 3414 None or almost none None or almost none
## 3415 Small amount Small amount
## 3416 <NA> <NA>
## 3417 Small amount None or almost none
## 3418 <NA> <NA>
## 3419 <NA> <NA>
## 3420 Small amount None or almost none
## 3421 Small amount None or almost none
## 3422 None or almost none None or almost none
## 3423 None or almost none None or almost none
## 3424 None or almost none None or almost none
## 3425 None or almost none None or almost none
## 3426 None or almost none None or almost none
## 3427 None or almost none None or almost none
## 3428 None or almost none None or almost none
## 3429 None or almost none None or almost none
## 3430 <NA> <NA>
## 3431 None or almost none None or almost none
## 3432 Small amount Small amount
## 3433 None or almost none None or almost none
## 3434 None or almost none None or almost none
## 3435 None or almost none None or almost none
## 3436 Small amount None or almost none
## 3437 Small amount None or almost none
## 3438 None or almost none None or almost none
## 3439 None or almost none None or almost none
## 3440 <NA> <NA>
## 3441 None or almost none None or almost none
## 3442 <NA> <NA>
## 3443 None or almost none None or almost none
## 3444 <NA> <NA>
## 3445 None or almost none None or almost none
## 3446 None or almost none None or almost none
## 3447 Small amount Small amount
## 3448 None or almost none None or almost none
## 3449 Small amount None or almost none
## 3450 None or almost none None or almost none
## 3451 None or almost none None or almost none
## 3452 None or almost none None or almost none
## 3453 <NA> <NA>
## 3454 None or almost none None or almost none
## 3455 Small amount None or almost none
## 3456 None or almost none None or almost none
## 3457 None or almost none None or almost none
## 3458 None or almost none None or almost none
## 3459 None or almost none None or almost none
## 3460 None or almost none None or almost none
## 3461 None or almost none None or almost none
## 3462 None or almost none None or almost none
## 3463 <NA> <NA>
## 3464 None or almost none None or almost none
## 3465 <NA> <NA>
## 3466 None or almost none None or almost none
## 3467 None or almost none None or almost none
## 3468 None or almost none None or almost none
## 3469 <NA> <NA>
## 3470 <NA> <NA>
## 3471 Large amount Small amount
## 3472 <NA> <NA>
## 3473 Small amount Small amount
## 3474 None or almost none None or almost none
## 3475 None or almost none None or almost none
## 3476 None or almost none None or almost none
## 3477 <NA> <NA>
## 3478 Very large amount Small amount
## 3479 None or almost none None or almost none
## 3480 None or almost none None or almost none
## 3481 Large amount Small amount
## 3482 None or almost none None or almost none
## 3483 Small amount None or almost none
## 3484 None or almost none None or almost none
## 3485 Small amount Small amount
## 3486 None or almost none None or almost none
## 3487 None or almost none None or almost none
## 3488 None or almost none None or almost none
## 3489 <NA> <NA>
## 3490 Small amount Small amount
## 3491 None or almost none None or almost none
## 3492 Small amount None or almost none
## 3493 None or almost none None or almost none
## 3494 Small amount Small amount
## 3495 Small amount None or almost none
## 3496 None or almost none None or almost none
## 3497 None or almost none None or almost none
## 3498 Small amount Small amount
## 3499 <NA> <NA>
## 3500 <NA> <NA>
## 3501 None or almost none None or almost none
## 3502 None or almost none None or almost none
## 3503 <NA> <NA>
## 3504 None or almost none None or almost none
## 3505 Small amount None or almost none
## 3506 None or almost none None or almost none
## 3507 None or almost none None or almost none
## 3508 <NA> <NA>
## 3509 <NA> <NA>
## 3510 Small amount Small amount
## 3511 None or almost none None or almost none
## 3512 Small amount None or almost none
## 3513 None or almost none None or almost none
## 3514 None or almost none None or almost none
## 3515 Small amount Small amount
## 3516 None or almost none None or almost none
## 3517 <NA> <NA>
## 3518 None or almost none None or almost none
## 3519 Small amount Small amount
## 3520 None or almost none None or almost none
## 3521 None or almost none None or almost none
## 3522 None or almost none None or almost none
## 3523 None or almost none None or almost none
## 3524 None or almost none None or almost none
## 3525 None or almost none None or almost none
## 3526 Small amount Small amount
## 3527 <NA> <NA>
## 3528 None or almost none None or almost none
## 3529 None or almost none None or almost none
## 3530 Small amount Small amount
## 3531 None or almost none None or almost none
## 3532 None or almost none None or almost none
## 3533 None or almost none None or almost none
## 3534 None or almost none None or almost none
## 3535 None or almost none None or almost none
## 3536 Small amount Small amount
## 3537 <NA> <NA>
## 3538 <NA> <NA>
## 3539 None or almost none None or almost none
## 3540 None or almost none None or almost none
## 3541 None or almost none None or almost none
## 3542 <NA> <NA>
## 3543 Small amount None or almost none
## 3544 None or almost none None or almost none
## 3545 None or almost none None or almost none
## 3546 None or almost none None or almost none
## 3547 Small amount Small amount
## 3548 Small amount None or almost none
## 3549 <NA> <NA>
## 3550 None or almost none None or almost none
## 3551 None or almost none None or almost none
## 3552 Small amount Small amount
## 3553 <NA> <NA>
## 3554 None or almost none None or almost none
## 3555 Small amount None or almost none
## 3556 None or almost none None or almost none
## 3557 None or almost none None or almost none
## 3558 None or almost none None or almost none
## 3559 <NA> <NA>
## 3560 None or almost none None or almost none
## 3561 <NA> <NA>
## 3562 Small amount None or almost none
## 3563 None or almost none None or almost none
## 3564 <NA> <NA>
## 3565 Small amount Small amount
## 3566 None or almost none None or almost none
## 3567 None or almost none None or almost none
## 3568 Large amount Small amount
## 3569 Small amount None or almost none
## 3570 None or almost none None or almost none
## 3571 None or almost none None or almost none
## 3572 None or almost none None or almost none
## 3573 None or almost none None or almost none
## 3574 None or almost none None or almost none
## 3575 <NA> <NA>
## 3576 None or almost none None or almost none
## 3577 None or almost none None or almost none
## 3578 None or almost none None or almost none
## 3579 Small amount None or almost none
## 3580 None or almost none None or almost none
## 3581 <NA> <NA>
## 3582 None or almost none None or almost none
## 3583 None or almost none None or almost none
## 3584 None or almost none None or almost none
## 3585 Small amount None or almost none
## 3586 Small amount None or almost none
## 3587 None or almost none None or almost none
## 3588 None or almost none None or almost none
## 3589 None or almost none None or almost none
## 3590 None or almost none None or almost none
## 3591 None or almost none None or almost none
## 3592 Large amount None or almost none
## 3593 None or almost none None or almost none
## 3594 None or almost none None or almost none
## 3595 None or almost none None or almost none
## 3596 None or almost none None or almost none
## 3597 None or almost none None or almost none
## 3598 None or almost none None or almost none
## 3599 Small amount None or almost none
## 3600 None or almost none None or almost none
## 3601 None or almost none None or almost none
## 3602 None or almost none None or almost none
## 3603 None or almost none None or almost none
## 3604 None or almost none None or almost none
## 3605 None or almost none None or almost none
## 3606 Small amount Small amount
## 3607 None or almost none None or almost none
## 3608 None or almost none None or almost none
## 3609 Small amount None or almost none
## 3610 None or almost none None or almost none
## 3611 None or almost none None or almost none
## 3612 None or almost none None or almost none
## 3613 None or almost none None or almost none
## 3614 None or almost none None or almost none
## 3615 <NA> <NA>
## 3616 None or almost none None or almost none
## 3617 None or almost none None or almost none
## 3618 None or almost none None or almost none
## 3619 None or almost none None or almost none
## 3620 None or almost none None or almost none
## 3621 None or almost none None or almost none
## 3622 None or almost none None or almost none
## 3623 Small amount None or almost none
## 3624 None or almost none None or almost none
## 3625 None or almost none None or almost none
## 3626 <NA> <NA>
## 3627 None or almost none None or almost none
## 3628 <NA> <NA>
## 3629 None or almost none None or almost none
## 3630 Small amount Small amount
## 3631 Small amount None or almost none
## 3632 None or almost none None or almost none
## 3633 None or almost none None or almost none
## 3634 None or almost none None or almost none
## 3635 Small amount None or almost none
## 3636 Small amount None or almost none
## 3637 <NA> <NA>
## 3638 <NA> <NA>
## 3639 None or almost none None or almost none
## 3640 None or almost none None or almost none
## 3641 <NA> <NA>
## 3642 <NA> <NA>
## 3643 None or almost none None or almost none
## 3644 None or almost none None or almost none
## 3645 None or almost none None or almost none
## 3646 Small amount None or almost none
## 3647 Large amount Large amount
## 3648 None or almost none None or almost none
## 3649 <NA> <NA>
## 3650 None or almost none None or almost none
## 3651 Small amount None or almost none
## 3652 None or almost none None or almost none
## 3653 None or almost none None or almost none
## 3654 Small amount Small amount
## 3655 None or almost none None or almost none
## 3656 None or almost none None or almost none
## 3657 <NA> <NA>
## 3658 None or almost none None or almost none
## 3659 Small amount Small amount
## 3660 None or almost none None or almost none
## 3661 Small amount Small amount
## 3662 None or almost none None or almost none
## 3663 None or almost none None or almost none
## 3664 None or almost none None or almost none
## 3665 <NA> <NA>
## 3666 None or almost none None or almost none
## 3667 None or almost none None or almost none
## 3668 None or almost none None or almost none
## 3669 None or almost none None or almost none
## 3670 Small amount Small amount
## 3671 None or almost none None or almost none
## 3672 None or almost none None or almost none
## 3673 None or almost none None or almost none
## 3674 <NA> <NA>
## 3675 None or almost none None or almost none
## 3676 None or almost none None or almost none
## 3677 None or almost none None or almost none
## 3678 None or almost none None or almost none
## 3679 None or almost none None or almost none
## 3680 Small amount Small amount
## 3681 None or almost none None or almost none
## 3682 <NA> <NA>
## 3683 Small amount Small amount
## 3684 None or almost none None or almost none
## 3685 Very large amount Small amount
## 3686 Small amount None or almost none
## 3687 None or almost none None or almost none
## 3688 Small amount None or almost none
## 3689 <NA> <NA>
## 3690 None or almost none None or almost none
## 3691 None or almost none None or almost none
## 3692 Large amount Small amount
## 3693 None or almost none None or almost none
## 3694 <NA> <NA>
## 3695 None or almost none None or almost none
## 3696 None or almost none None or almost none
## 3697 None or almost none None or almost none
## 3698 None or almost none None or almost none
## 3699 <NA> <NA>
## 3700 Small amount None or almost none
## 3701 None or almost none None or almost none
## 3702 Small amount None or almost none
## 3703 None or almost none None or almost none
## 3704 Small amount None or almost none
## 3705 None or almost none None or almost none
## 3706 <NA> <NA>
## 3707 None or almost none None or almost none
## 3708 None or almost none None or almost none
## 3709 None or almost none None or almost none
## 3710 None or almost none None or almost none
## 3711 None or almost none None or almost none
## 3712 None or almost none None or almost none
## 3713 None or almost none None or almost none
## 3714 None or almost none None or almost none
## 3715 None or almost none None or almost none
## 3716 None or almost none None or almost none
## 3717 <NA> <NA>
## 3718 None or almost none None or almost none
## 3719 None or almost none None or almost none
## 3720 Small amount None or almost none
## 3721 None or almost none None or almost none
## 3722 Large amount None or almost none
## 3723 None or almost none None or almost none
## 3724 Small amount None or almost none
## 3725 None or almost none None or almost none
## 3726 Small amount None or almost none
## 3727 <NA> <NA>
## 3728 None or almost none None or almost none
## 3729 <NA> <NA>
## 3730 Small amount None or almost none
## 3731 None or almost none None or almost none
## 3732 None or almost none None or almost none
## 3733 None or almost none None or almost none
## 3734 None or almost none None or almost none
## 3735 Small amount None or almost none
## 3736 None or almost none None or almost none
## 3737 Small amount Small amount
## 3738 None or almost none None or almost none
## 3739 Small amount None or almost none
## 3740 None or almost none None or almost none
## 3741 None or almost none None or almost none
## 3742 None or almost none None or almost none
## 3743 <NA> <NA>
## 3744 <NA> <NA>
## 3745 Small amount None or almost none
## 3746 None or almost none None or almost none
## 3747 None or almost none None or almost none
## 3748 None or almost none None or almost none
## 3749 Small amount None or almost none
## 3750 None or almost none None or almost none
## 3751 None or almost none None or almost none
## 3752 Small amount None or almost none
## 3753 Small amount None or almost none
## 3754 Small amount Small amount
## 3755 None or almost none None or almost none
## 3756 None or almost none None or almost none
## 3757 None or almost none None or almost none
## 3758 None or almost none None or almost none
## 3759 <NA> <NA>
## 3760 None or almost none None or almost none
## 3761 None or almost none None or almost none
## 3762 None or almost none Small amount
## 3763 Small amount None or almost none
## 3764 None or almost none None or almost none
## 3765 Large amount None or almost none
## 3766 None or almost none None or almost none
## 3767 None or almost none None or almost none
## 3768 None or almost none None or almost none
## 3769 Small amount Small amount
## 3770 None or almost none None or almost none
## 3771 None or almost none None or almost none
## 3772 Small amount Small amount
## 3773 Small amount None or almost none
## 3774 None or almost none None or almost none
## 3775 Small amount None or almost none
## 3776 <NA> <NA>
## 3777 Small amount Small amount
## 3778 Small amount Small amount
## 3779 Small amount None or almost none
## 3780 Small amount None or almost none
## 3781 None or almost none None or almost none
## 3782 Small amount None or almost none
## 3783 Small amount None or almost none
## 3784 None or almost none None or almost none
## 3785 <NA> <NA>
## 3786 None or almost none None or almost none
## 3787 Small amount Small amount
## 3788 Small amount None or almost none
## 3789 Large amount Large amount
## 3790 None or almost none None or almost none
## 3791 None or almost none None or almost none
## 3792 None or almost none None or almost none
## 3793 Small amount Small amount
## 3794 Small amount None or almost none
## 3795 None or almost none None or almost none
## 3796 None or almost none None or almost none
## 3797 None or almost none None or almost none
## 3798 None or almost none None or almost none
## 3799 Small amount Small amount
## 3800 Small amount None or almost none
## 3801 Small amount None or almost none
## 3802 None or almost none None or almost none
## 3803 None or almost none None or almost none
## 3804 <NA> <NA>
## 3805 Large amount None or almost none
## 3806 None or almost none None or almost none
## 3807 None or almost none None or almost none
## 3808 None or almost none None or almost none
## 3809 None or almost none None or almost none
## 3810 <NA> <NA>
## 3811 <NA> <NA>
## 3812 None or almost none None or almost none
## 3813 None or almost none None or almost none
## 3814 Small amount None or almost none
## 3815 None or almost none None or almost none
## 3816 <NA> <NA>
## 3817 <NA> <NA>
## 3818 Large amount Large amount
## 3819 Small amount None or almost none
## 3820 None or almost none None or almost none
## 3821 <NA> <NA>
## 3822 Small amount None or almost none
## 3823 Small amount None or almost none
## 3824 None or almost none None or almost none
## 3825 None or almost none None or almost none
## 3826 None or almost none None or almost none
## 3827 None or almost none None or almost none
## 3828 None or almost none None or almost none
## 3829 <NA> <NA>
## 3830 None or almost none None or almost none
## 3831 None or almost none None or almost none
## 3832 None or almost none None or almost none
## 3833 <NA> <NA>
## 3834 None or almost none None or almost none
## 3835 None or almost none None or almost none
## 3836 None or almost none None or almost none
## 3837 <NA> <NA>
## 3838 None or almost none None or almost none
## 3839 None or almost none None or almost none
## 3840 Small amount None or almost none
## 3841 None or almost none None or almost none
## 3842 <NA> <NA>
## 3843 <NA> <NA>
## 3844 Small amount None or almost none
## 3845 None or almost none None or almost none
## 3846 Small amount None or almost none
## 3847 None or almost none None or almost none
## 3848 None or almost none None or almost none
## 3849 None or almost none None or almost none
## 3850 <NA> <NA>
## 3851 Small amount Small amount
## 3852 None or almost none None or almost none
## 3853 Small amount None or almost none
## 3854 None or almost none None or almost none
## 3855 None or almost none None or almost none
## 3856 None or almost none None or almost none
## 3857 None or almost none None or almost none
## 3858 <NA> <NA>
## 3859 Small amount Small amount
## 3860 None or almost none None or almost none
## 3861 None or almost none None or almost none
## 3862 Small amount Small amount
## 3863 None or almost none None or almost none
## 3864 None or almost none None or almost none
## 3865 Small amount Small amount
## 3866 Small amount None or almost none
## 3867 None or almost none None or almost none
## 3868 None or almost none None or almost none
## 3869 Small amount Small amount
## 3870 <NA> <NA>
## 3871 Small amount None or almost none
## 3872 Small amount Small amount
## 3873 None or almost none None or almost none
## 3874 <NA> <NA>
## 3875 Small amount None or almost none
## 3876 Small amount Small amount
## 3877 None or almost none None or almost none
## 3878 None or almost none None or almost none
## 3879 None or almost none None or almost none
## 3880 None or almost none None or almost none
## 3881 None or almost none None or almost none
## 3882 Large amount None or almost none
## 3883 None or almost none None or almost none
## 3884 None or almost none None or almost none
## 3885 None or almost none None or almost none
## 3886 None or almost none None or almost none
## 3887 None or almost none None or almost none
## 3888 None or almost none None or almost none
## 3889 None or almost none None or almost none
## 3890 <NA> <NA>
## 3891 Small amount None or almost none
## 3892 None or almost none None or almost none
## 3893 <NA> <NA>
## 3894 None or almost none None or almost none
## 3895 None or almost none None or almost none
## 3896 Small amount Small amount
## 3897 Small amount None or almost none
## 3898 None or almost none None or almost none
## 3899 Small amount None or almost none
## 3900 None or almost none None or almost none
## 3901 None or almost none None or almost none
## 3902 None or almost none None or almost none
## 3903 None or almost none None or almost none
## 3904 None or almost none None or almost none
## 3905 None or almost none None or almost none
## 3906 None or almost none None or almost none
## 3907 None or almost none None or almost none
## 3908 None or almost none None or almost none
## 3909 None or almost none None or almost none
## 3910 None or almost none None or almost none
## 3911 Small amount None or almost none
## 3912 None or almost none None or almost none
## 3913 None or almost none None or almost none
## 3914 None or almost none None or almost none
## 3915 <NA> <NA>
## 3916 None or almost none None or almost none
## 3917 Small amount None or almost none
## 3918 Small amount None or almost none
## 3919 Small amount None or almost none
## 3920 None or almost none None or almost none
## 3921 Small amount None or almost none
## 3922 Small amount Small amount
## 3923 None or almost none None or almost none
## 3924 <NA> <NA>
## 3925 None or almost none None or almost none
## 3926 <NA> <NA>
## 3927 Small amount Small amount
## 3928 Small amount None or almost none
## 3929 None or almost none None or almost none
## 3930 None or almost none None or almost none
## 3931 <NA> <NA>
## 3932 None or almost none None or almost none
## 3933 None or almost none None or almost none
## 3934 Small amount None or almost none
## 3935 None or almost none None or almost none
## 3936 <NA> <NA>
## 3937 Small amount None or almost none
## 3938 None or almost none None or almost none
## 3939 <NA> <NA>
## 3940 None or almost none None or almost none
## 3941 Small amount Small amount
## 3942 None or almost none None or almost none
## 3943 None or almost none None or almost none
## 3944 None or almost none None or almost none
## 3945 Small amount None or almost none
## 3946 Small amount None or almost none
## 3947 <NA> <NA>
## 3948 None or almost none None or almost none
## 3949 None or almost none None or almost none
## 3950 Large amount Small amount
## 3951 None or almost none None or almost none
## 3952 None or almost none None or almost none
## 3953 None or almost none None or almost none
## 3954 None or almost none None or almost none
## 3955 <NA> <NA>
## 3956 None or almost none None or almost none
## 3957 None or almost none None or almost none
## 3958 None or almost none None or almost none
## 3959 None or almost none None or almost none
## 3960 None or almost none None or almost none
## 3961 Small amount Small amount
## 3962 None or almost none None or almost none
## 3963 Small amount None or almost none
## 3964 None or almost none None or almost none
## 3965 None or almost none None or almost none
## 3966 <NA> <NA>
## 3967 None or almost none None or almost none
## 3968 None or almost none None or almost none
## 3969 None or almost none None or almost none
## 3970 None or almost none None or almost none
## 3971 None or almost none None or almost none
## 3972 None or almost none None or almost none
## 3973 Small amount None or almost none
## 3974 None or almost none None or almost none
## 3975 None or almost none None or almost none
## 3976 None or almost none None or almost none
## 3977 None or almost none None or almost none
## 3978 None or almost none None or almost none
## 3979 None or almost none None or almost none
## 3980 None or almost none None or almost none
## 3981 None or almost none None or almost none
## 3982 None or almost none None or almost none
## 3983 None or almost none None or almost none
## 3984 None or almost none None or almost none
## 3985 Small amount Small amount
## 3986 Small amount None or almost none
## 3987 None or almost none None or almost none
## 3988 <NA> <NA>
## 3989 None or almost none None or almost none
## 3990 Small amount None or almost none
## 3991 <NA> <NA>
## 3992 None or almost none None or almost none
## 3993 None or almost none None or almost none
## 3994 Small amount None or almost none
## 3995 Small amount Small amount
## 3996 None or almost none None or almost none
## 3997 None or almost none None or almost none
## 3998 Small amount None or almost none
## 3999 None or almost none None or almost none
## 4000 None or almost none None or almost none
## 4001 Small amount None or almost none
## 4002 None or almost none None or almost none
## 4003 Small amount None or almost none
## 4004 None or almost none None or almost none
## 4005 Small amount Small amount
## 4006 None or almost none None or almost none
## 4007 Small amount Small amount
## 4008 Small amount None or almost none
## 4009 None or almost none None or almost none
## 4010 None or almost none None or almost none
## 4011 None or almost none None or almost none
## 4012 None or almost none None or almost none
## 4013 Small amount Small amount
## 4014 None or almost none None or almost none
## 4015 None or almost none None or almost none
## 4016 None or almost none None or almost none
## 4017 Large amount Small amount
## 4018 Small amount None or almost none
## 4019 Small amount None or almost none
## 4020 Small amount None or almost none
## 4021 None or almost none None or almost none
## 4022 Small amount None or almost none
## 4023 <NA> <NA>
## 4024 Small amount None or almost none
## 4025 None or almost none None or almost none
## 4026 None or almost none None or almost none
## 4027 None or almost none None or almost none
## 4028 <NA> <NA>
## 4029 <NA> <NA>
## 4030 None or almost none None or almost none
## 4031 Small amount None or almost none
## 4032 None or almost none None or almost none
## 4033 Small amount Small amount
## 4034 None or almost none None or almost none
## 4035 None or almost none None or almost none
## 4036 None or almost none None or almost none
## 4037 Small amount None or almost none
## 4038 None or almost none None or almost none
## 4039 Small amount None or almost none
## 4040 None or almost none None or almost none
## 4041 None or almost none None or almost none
## 4042 None or almost none None or almost none
## 4043 None or almost none None or almost none
## 4044 None or almost none None or almost none
## 4045 Small amount Small amount
## 4046 None or almost none None or almost none
## 4047 None or almost none None or almost none
## 4048 None or almost none None or almost none
## 4049 None or almost none None or almost none
## 4050 Small amount Small amount
## 4051 Small amount None or almost none
## 4052 None or almost none None or almost none
## 4053 Small amount None or almost none
## 4054 None or almost none None or almost none
## 4055 Small amount None or almost none
## 4056 <NA> <NA>
## 4057 <NA> <NA>
## 4058 None or almost none None or almost none
## 4059 None or almost none None or almost none
## 4060 None or almost none None or almost none
## 4061 <NA> <NA>
## 4062 None or almost none None or almost none
## 4063 Small amount Small amount
## 4064 Small amount None or almost none
## 4065 None or almost none None or almost none
## 4066 None or almost none None or almost none
## 4067 None or almost none None or almost none
## 4068 Small amount Small amount
## 4069 None or almost none None or almost none
## 4070 None or almost none None or almost none
## 4071 Small amount Small amount
## 4072 Small amount None or almost none
## 4073 None or almost none None or almost none
## 4074 Small amount Small amount
## 4075 None or almost none None or almost none
## 4076 None or almost none None or almost none
## 4077 Small amount None or almost none
## 4078 Small amount None or almost none
## 4079 <NA> <NA>
## 4080 Small amount None or almost none
## 4081 None or almost none None or almost none
## 4082 None or almost none None or almost none
## 4083 Small amount None or almost none
## 4084 Small amount None or almost none
## 4085 None or almost none None or almost none
## 4086 <NA> <NA>
## 4087 None or almost none None or almost none
## 4088 None or almost none None or almost none
## 4089 Small amount None or almost none
## 4090 None or almost none None or almost none
## 4091 Small amount Small amount
## 4092 None or almost none None or almost none
## 4093 None or almost none None or almost none
## 4094 Small amount None or almost none
## 4095 <NA> <NA>
## 4096 None or almost none None or almost none
## 4097 Small amount None or almost none
## 4098 None or almost none None or almost none
## 4099 None or almost none None or almost none
## 4100 None or almost none None or almost none
## 4101 Small amount Small amount
## 4102 <NA> <NA>
## 4103 <NA> <NA>
## 4104 Small amount None or almost none
## 4105 None or almost none None or almost none
## 4106 Small amount None or almost none
## 4107 None or almost none None or almost none
## 4108 Small amount None or almost none
## 4109 None or almost none None or almost none
## 4110 Small amount Small amount
## 4111 None or almost none None or almost none
## 4112 None or almost none None or almost none
## 4113 None or almost none None or almost none
## 4114 Small amount None or almost none
## 4115 Small amount None or almost none
## 4116 None or almost none None or almost none
## 4117 None or almost none None or almost none
## 4118 None or almost none None or almost none
## 4119 None or almost none None or almost none
## 4120 <NA> <NA>
## 4121 None or almost none None or almost none
## 4122 None or almost none None or almost none
## 4123 None or almost none None or almost none
## 4124 <NA> <NA>
## 4125 None or almost none None or almost none
## 4126 None or almost none None or almost none
## 4127 None or almost none None or almost none
## 4128 Small amount Small amount
## 4129 None or almost none None or almost none
## 4130 Small amount Small amount
## 4131 None or almost none None or almost none
## 4132 None or almost none None or almost none
## 4133 Small amount Large amount
## 4134 None or almost none None or almost none
## 4135 None or almost none None or almost none
## 4136 None or almost none None or almost none
## 4137 <NA> <NA>
## 4138 None or almost none None or almost none
## 4139 None or almost none None or almost none
## 4140 <NA> <NA>
## 4141 Small amount None or almost none
## 4142 None or almost none None or almost none
## 4143 Small amount Small amount
## 4144 <NA> <NA>
## 4145 None or almost none None or almost none
## 4146 Large amount None or almost none
## 4147 Small amount None or almost none
## 4148 None or almost none None or almost none
## 4149 None or almost none None or almost none
## 4150 None or almost none None or almost none
## 4151 None or almost none None or almost none
## 4152 None or almost none Small amount
## 4153 None or almost none None or almost none
## 4154 None or almost none None or almost none
## 4155 Small amount None or almost none
## 4156 None or almost none None or almost none
## 4157 None or almost none None or almost none
## 4158 None or almost none None or almost none
## 4159 None or almost none None or almost none
## 4160 None or almost none None or almost none
## 4161 Small amount None or almost none
## 4162 Small amount None or almost none
## 4163 None or almost none None or almost none
## 4164 Small amount None or almost none
## 4165 None or almost none None or almost none
## 4166 None or almost none None or almost none
## 4167 <NA> <NA>
## 4168 None or almost none None or almost none
## 4169 Small amount None or almost none
## 4170 Small amount None or almost none
## 4171 Small amount None or almost none
## 4172 None or almost none None or almost none
## 4173 None or almost none None or almost none
## 4174 None or almost none None or almost none
## 4175 None or almost none None or almost none
## 4176 Large amount Large amount
## 4177 None or almost none None or almost none
## 4178 <NA> <NA>
## 4179 Small amount Small amount
## 4180 None or almost none None or almost none
## 4181 <NA> <NA>
## 4182 None or almost none None or almost none
## 4183 Small amount None or almost none
## 4184 None or almost none None or almost none
## 4185 None or almost none None or almost none
## 4186 Small amount None or almost none
## 4187 None or almost none None or almost none
## 4188 Small amount None or almost none
## 4189 None or almost none None or almost none
## 4190 Small amount Small amount
## 4191 None or almost none None or almost none
## 4192 None or almost none None or almost none
## 4193 Small amount Small amount
## 4194 <NA> <NA>
## 4195 None or almost none None or almost none
## 4196 None or almost none None or almost none
## 4197 None or almost none None or almost none
## 4198 None or almost none None or almost none
## 4199 None or almost none None or almost none
## 4200 Small amount None or almost none
## 4201 None or almost none None or almost none
## 4202 Small amount Small amount
## 4203 None or almost none None or almost none
## 4204 None or almost none None or almost none
## 4205 Small amount None or almost none
## 4206 None or almost none None or almost none
## 4207 None or almost none None or almost none
## 4208 None or almost none None or almost none
## 4209 <NA> <NA>
## 4210 Small amount None or almost none
## 4211 None or almost none None or almost none
## 4212 <NA> <NA>
## 4213 Small amount None or almost none
## 4214 Small amount Small amount
## 4215 None or almost none None or almost none
## 4216 None or almost none None or almost none
## 4217 None or almost none None or almost none
## 4218 Small amount None or almost none
## 4219 None or almost none None or almost none
## 4220 <NA> <NA>
## 4221 Small amount Small amount
## 4222 None or almost none None or almost none
## 4223 None or almost none None or almost none
## 4224 None or almost none None or almost none
## 4225 <NA> <NA>
## 4226 Small amount None or almost none
## 4227 Small amount None or almost none
## 4228 None or almost none None or almost none
## 4229 None or almost none None or almost none
## 4230 None or almost none None or almost none
## 4231 None or almost none None or almost none
## 4232 Small amount Small amount
## 4233 None or almost none None or almost none
## 4234 None or almost none None or almost none
## 4235 <NA> <NA>
## 4236 Small amount None or almost none
## 4237 Small amount None or almost none
## 4238 None or almost none None or almost none
## 4239 None or almost none None or almost none
## 4240 None or almost none None or almost none
## 4241 None or almost none None or almost none
## 4242 None or almost none None or almost none
## 4243 Small amount None or almost none
## 4244 None or almost none None or almost none
## 4245 None or almost none None or almost none
## 4246 <NA> <NA>
## 4247 None or almost none None or almost none
## 4248 None or almost none None or almost none
## 4249 None or almost none None or almost none
## 4250 Small amount None or almost none
## 4251 <NA> <NA>
## 4252 None or almost none None or almost none
## 4253 Small amount None or almost none
## 4254 Small amount None or almost none
## 4255 None or almost none None or almost none
## 4256 None or almost none None or almost none
## 4257 None or almost none None or almost none
## 4258 None or almost none None or almost none
## 4259 Small amount None or almost none
## 4260 None or almost none None or almost none
## 4261 None or almost none None or almost none
## 4262 None or almost none None or almost none
## 4263 None or almost none None or almost none
## 4264 None or almost none None or almost none
## 4265 None or almost none None or almost none
## 4266 <NA> <NA>
## 4267 None or almost none None or almost none
## 4268 <NA> <NA>
## 4269 None or almost none None or almost none
## 4270 None or almost none None or almost none
## 4271 <NA> <NA>
## 4272 None or almost none None or almost none
## 4273 None or almost none None or almost none
## 4274 Very large amount Small amount
## 4275 Small amount Small amount
## 4276 None or almost none None or almost none
## 4277 None or almost none None or almost none
## 4278 None or almost none None or almost none
## 4279 None or almost none None or almost none
## 4280 None or almost none None or almost none
## 4281 None or almost none None or almost none
## 4282 <NA> <NA>
## 4283 None or almost none None or almost none
## 4284 None or almost none None or almost none
## 4285 None or almost none None or almost none
## 4286 None or almost none None or almost none
## 4287 None or almost none None or almost none
## 4288 None or almost none None or almost none
## 4289 Small amount None or almost none
## 4290 Small amount Small amount
## 4291 None or almost none None or almost none
## 4292 Small amount None or almost none
## 4293 <NA> <NA>
## 4294 Small amount None or almost none
## 4295 Small amount None or almost none
## 4296 None or almost none None or almost none
## 4297 <NA> <NA>
## 4298 None or almost none None or almost none
## 4299 Small amount None or almost none
## 4300 None or almost none None or almost none
## 4301 Large amount Small amount
## 4302 None or almost none None or almost none
## 4303 None or almost none None or almost none
## 4304 <NA> <NA>
## 4305 None or almost none None or almost none
## 4306 None or almost none None or almost none
## 4307 None or almost none None or almost none
## 4308 None or almost none None or almost none
## 4309 <NA> <NA>
## 4310 None or almost none None or almost none
## 4311 <NA> <NA>
## 4312 None or almost none None or almost none
## 4313 None or almost none None or almost none
## 4314 <NA> <NA>
## 4315 None or almost none None or almost none
## 4316 None or almost none None or almost none
## 4317 None or almost none None or almost none
## 4318 Small amount None or almost none
## 4319 None or almost none None or almost none
## 4320 None or almost none None or almost none
## 4321 <NA> <NA>
## 4322 None or almost none None or almost none
## 4323 <NA> <NA>
## 4324 None or almost none None or almost none
## 4325 None or almost none None or almost none
## 4326 None or almost none None or almost none
## 4327 Small amount None or almost none
## 4328 None or almost none None or almost none
## 4329 Small amount None or almost none
## 4330 None or almost none None or almost none
## 4331 None or almost none None or almost none
## 4332 None or almost none None or almost none
## 4333 Small amount None or almost none
## 4334 None or almost none None or almost none
## 4335 <NA> <NA>
## 4336 None or almost none None or almost none
## 4337 None or almost none None or almost none
## 4338 None or almost none None or almost none
## 4339 Small amount Small amount
## 4340 <NA> <NA>
## 4341 Small amount None or almost none
## 4342 None or almost none None or almost none
## 4343 None or almost none None or almost none
## 4344 Small amount Small amount
## 4345 None or almost none None or almost none
## 4346 None or almost none None or almost none
## 4347 None or almost none None or almost none
## 4348 Small amount None or almost none
## 4349 Small amount Small amount
## 4350 Small amount Small amount
## 4351 None or almost none None or almost none
## 4352 None or almost none None or almost none
## 4353 Small amount Small amount
## 4354 Small amount Small amount
## 4355 None or almost none None or almost none
## 4356 None or almost none None or almost none
## 4357 Large amount Small amount
## 4358 None or almost none None or almost none
## 4359 None or almost none None or almost none
## 4360 None or almost none None or almost none
## 4361 Small amount Small amount
## 4362 None or almost none None or almost none
## 4363 None or almost none None or almost none
## 4364 Small amount None or almost none
## 4365 None or almost none None or almost none
## 4366 <NA> <NA>
## 4367 None or almost none None or almost none
## 4368 <NA> <NA>
## 4369 None or almost none None or almost none
## 4370 None or almost none None or almost none
## 4371 None or almost none None or almost none
## 4372 None or almost none None or almost none
## 4373 None or almost none None or almost none
## 4374 None or almost none None or almost none
## 4375 None or almost none None or almost none
## 4376 Small amount None or almost none
## 4377 Small amount None or almost none
## 4378 None or almost none None or almost none
## 4379 None or almost none None or almost none
## 4380 None or almost none None or almost none
## 4381 None or almost none None or almost none
## 4382 None or almost none None or almost none
## 4383 None or almost none None or almost none
## 4384 None or almost none None or almost none
## 4385 Small amount Small amount
## 4386 None or almost none None or almost none
## 4387 None or almost none None or almost none
## 4388 <NA> <NA>
## 4389 None or almost none None or almost none
## 4390 Small amount None or almost none
## 4391 None or almost none None or almost none
## 4392 None or almost none None or almost none
## 4393 None or almost none None or almost none
## 4394 None or almost none None or almost none
## 4395 None or almost none None or almost none
## 4396 None or almost none None or almost none
## 4397 Small amount Small amount
## 4398 <NA> <NA>
## 4399 <NA> <NA>
## 4400 Large amount Small amount
## 4401 None or almost none None or almost none
## 4402 <NA> <NA>
## 4403 Small amount None or almost none
## 4404 None or almost none None or almost none
## 4405 Very large amount Small amount
## 4406 None or almost none None or almost none
## 4407 Small amount None or almost none
## 4408 None or almost none None or almost none
## 4409 Small amount None or almost none
## 4410 Small amount None or almost none
## 4411 <NA> <NA>
## 4412 None or almost none None or almost none
## 4413 Large amount Small amount
## 4414 None or almost none None or almost none
## 4415 None or almost none None or almost none
## 4416 None or almost none None or almost none
## 4417 <NA> <NA>
## 4418 None or almost none None or almost none
## 4419 None or almost none None or almost none
## 4420 None or almost none None or almost none
## 4421 None or almost none None or almost none
## 4422 Small amount Small amount
## 4423 <NA> <NA>
## 4424 Small amount None or almost none
## 4425 <NA> <NA>
## 4426 None or almost none None or almost none
## 4427 <NA> <NA>
## 4428 None or almost none None or almost none
## 4429 <NA> <NA>
## 4430 None or almost none None or almost none
## 4431 Small amount None or almost none
## 4432 None or almost none None or almost none
## 4433 Small amount None or almost none
## 4434 None or almost none None or almost none
## 4435 Small amount None or almost none
## 4436 None or almost none None or almost none
## 4437 Small amount None or almost none
## 4438 None or almost none None or almost none
## 4439 <NA> <NA>
## 4440 None or almost none None or almost none
## 4441 <NA> <NA>
## 4442 <NA> <NA>
## 4443 None or almost none None or almost none
## 4444 None or almost none None or almost none
## 4445 None or almost none None or almost none
## 4446 None or almost none None or almost none
## 4447 None or almost none None or almost none
## 4448 None or almost none None or almost none
## 4449 None or almost none None or almost none
## 4450 None or almost none None or almost none
## 4451 None or almost none None or almost none
## 4452 None or almost none None or almost none
## 4453 None or almost none None or almost none
## 4454 Small amount None or almost none
## 4455 None or almost none None or almost none
## 4456 None or almost none None or almost none
## 4457 None or almost none None or almost none
## 4458 None or almost none None or almost none
## 4459 Small amount Small amount
## 4460 None or almost none None or almost none
## 4461 None or almost none None or almost none
## 4462 None or almost none None or almost none
## 4463 None or almost none None or almost none
## 4464 None or almost none None or almost none
## 4465 None or almost none None or almost none
## 4466 None or almost none None or almost none
## 4467 None or almost none None or almost none
## 4468 None or almost none None or almost none
## 4469 None or almost none None or almost none
## 4470 <NA> <NA>
## 4471 <NA> <NA>
## 4472 None or almost none None or almost none
## 4473 <NA> <NA>
## 4474 None or almost none None or almost none
## 4475 None or almost none None or almost none
## 4476 None or almost none None or almost none
## 4477 None or almost none None or almost none
## 4478 None or almost none None or almost none
## 4479 <NA> <NA>
## 4480 None or almost none None or almost none
## 4481 None or almost none None or almost none
## 4482 None or almost none None or almost none
## 4483 <NA> <NA>
## 4484 None or almost none None or almost none
## 4485 <NA> <NA>
## 4486 <NA> <NA>
## 4487 Small amount None or almost none
## 4488 Small amount Small amount
## 4489 None or almost none None or almost none
## 4490 None or almost none None or almost none
## 4491 None or almost none None or almost none
## 4492 None or almost none None or almost none
## 4493 <NA> <NA>
## 4494 Small amount Small amount
## 4495 Small amount None or almost none
## 4496 Very large amount None or almost none
## 4497 None or almost none None or almost none
## 4498 None or almost none None or almost none
## 4499 None or almost none None or almost none
## 4500 None or almost none None or almost none
## 4501 <NA> <NA>
## 4502 Small amount None or almost none
## 4503 None or almost none None or almost none
## 4504 Small amount None or almost none
## 4505 None or almost none None or almost none
## 4506 None or almost none None or almost none
## 4507 <NA> <NA>
## 4508 None or almost none None or almost none
## 4509 None or almost none None or almost none
## 4510 None or almost none None or almost none
## 4511 None or almost none None or almost none
## 4512 None or almost none None or almost none
## 4513 None or almost none None or almost none
## 4514 None or almost none None or almost none
## 4515 None or almost none None or almost none
## 4516 Small amount None or almost none
## 4517 None or almost none None or almost none
## 4518 <NA> <NA>
## 4519 None or almost none None or almost none
## 4520 Small amount Small amount
## 4521 None or almost none None or almost none
## 4522 None or almost none None or almost none
## 4523 <NA> <NA>
## 4524 None or almost none None or almost none
## 4525 <NA> <NA>
## 4526 <NA> <NA>
## 4527 None or almost none None or almost none
## 4528 None or almost none None or almost none
## 4529 None or almost none None or almost none
## 4530 None or almost none None or almost none
## 4531 None or almost none None or almost none
## 4532 None or almost none None or almost none
## 4533 None or almost none None or almost none
## 4534 None or almost none None or almost none
## 4535 Small amount None or almost none
## 4536 <NA> <NA>
## 4537 Small amount None or almost none
## 4538 None or almost none None or almost none
## 4539 None or almost none None or almost none
## 4540 Small amount None or almost none
## 4541 None or almost none None or almost none
## 4542 <NA> <NA>
## 4543 None or almost none None or almost none
## 4544 None or almost none None or almost none
## 4545 Small amount Small amount
## 4546 None or almost none None or almost none
## 4547 None or almost none None or almost none
## 4548 None or almost none None or almost none
## 4549 Large amount Small amount
## 4550 None or almost none None or almost none
## 4551 None or almost none None or almost none
## 4552 None or almost none None or almost none
## 4553 None or almost none None or almost none
## 4554 None or almost none None or almost none
## 4555 None or almost none None or almost none
## 4556 Small amount Small amount
## 4557 None or almost none None or almost none
## 4558 Small amount Small amount
## 4559 Small amount None or almost none
## 4560 Small amount Small amount
## 4561 None or almost none None or almost none
## 4562 Small amount None or almost none
## 4563 <NA> <NA>
## 4564 <NA> <NA>
## 4565 None or almost none None or almost none
## 4566 None or almost none None or almost none
## 4567 None or almost none None or almost none
## 4568 Large amount Small amount
## 4569 Small amount Small amount
## 4570 None or almost none None or almost none
## 4571 None or almost none None or almost none
## 4572 None or almost none None or almost none
## 4573 None or almost none None or almost none
## 4574 <NA> <NA>
## 4575 None or almost none None or almost none
## 4576 None or almost none None or almost none
## 4577 None or almost none None or almost none
## 4578 None or almost none None or almost none
## 4579 Small amount Small amount
## 4580 Small amount Small amount
## 4581 None or almost none None or almost none
## 4582 Small amount Small amount
## 4583 Small amount None or almost none
## 4584 None or almost none None or almost none
## 4585 None or almost none None or almost none
## 4586 None or almost none None or almost none
## 4587 Small amount None or almost none
## 4588 None or almost none None or almost none
## 4589 <NA> <NA>
## 4590 None or almost none None or almost none
## 4591 None or almost none None or almost none
## 4592 None or almost none None or almost none
## 4593 None or almost none None or almost none
## 4594 None or almost none None or almost none
## 4595 None or almost none None or almost none
## 4596 None or almost none None or almost none
## 4597 <NA> <NA>
## 4598 Small amount None or almost none
## 4599 None or almost none None or almost none
## 4600 None or almost none None or almost none
## 4601 None or almost none None or almost none
## 4602 <NA> <NA>
## 4603 Small amount None or almost none
## 4604 None or almost none None or almost none
## 4605 Small amount None or almost none
## 4606 Small amount None or almost none
## 4607 None or almost none None or almost none
## 4608 None or almost none None or almost none
## 4609 Small amount None or almost none
## 4610 None or almost none None or almost none
## 4611 None or almost none None or almost none
## 4612 Small amount None or almost none
## 4613 None or almost none None or almost none
## 4614 None or almost none None or almost none
## 4615 None or almost none None or almost none
## 4616 Large amount None or almost none
## 4617 None or almost none None or almost none
## 4618 None or almost none None or almost none
## 4619 Small amount None or almost none
## 4620 None or almost none None or almost none
## 4621 Small amount None or almost none
## 4622 None or almost none None or almost none
## 4623 None or almost none None or almost none
## 4624 None or almost none None or almost none
## 4625 None or almost none None or almost none
## 4626 Small amount Small amount
## 4627 None or almost none None or almost none
## 4628 None or almost none None or almost none
## 4629 Small amount None or almost none
## 4630 None or almost none None or almost none
## 4631 None or almost none None or almost none
## 4632 <NA> <NA>
## 4633 None or almost none None or almost none
## 4634 <NA> <NA>
## 4635 None or almost none None or almost none
## 4636 None or almost none None or almost none
## 4637 None or almost none None or almost none
## 4638 None or almost none None or almost none
## 4639 Small amount None or almost none
## 4640 None or almost none None or almost none
## 4641 None or almost none None or almost none
## 4642 None or almost none None or almost none
## 4643 Small amount Small amount
## 4644 None or almost none None or almost none
## 4645 None or almost none None or almost none
## 4646 None or almost none None or almost none
## 4647 None or almost none None or almost none
## 4648 None or almost none None or almost none
## 4649 Small amount None or almost none
## 4650 None or almost none None or almost none
## 4651 None or almost none None or almost none
## 4652 None or almost none None or almost none
## 4653 None or almost none None or almost none
## 4654 None or almost none None or almost none
## 4655 Large amount Large amount
## 4656 None or almost none None or almost none
## 4657 None or almost none None or almost none
## 4658 None or almost none None or almost none
## 4659 None or almost none None or almost none
## 4660 <NA> <NA>
## 4661 <NA> <NA>
## 4662 None or almost none None or almost none
## 4663 None or almost none Small amount
## 4664 Small amount None or almost none
## 4665 None or almost none None or almost none
## 4666 Small amount None or almost none
## 4667 <NA> <NA>
## 4668 Small amount None or almost none
## 4669 None or almost none None or almost none
## 4670 None or almost none None or almost none
## 4671 None or almost none None or almost none
## 4672 None or almost none None or almost none
## 4673 None or almost none None or almost none
## 4674 None or almost none None or almost none
## 4675 Small amount None or almost none
## 4676 None or almost none None or almost none
## 4677 None or almost none None or almost none
## 4678 Small amount Small amount
## 4679 None or almost none None or almost none
## 4680 None or almost none None or almost none
## 4681 <NA> <NA>
## 4682 None or almost none None or almost none
## 4683 Small amount Small amount
## 4684 None or almost none None or almost none
## 4685 None or almost none None or almost none
## 4686 None or almost none None or almost none
## 4687 <NA> <NA>
## 4688 None or almost none None or almost none
## 4689 None or almost none None or almost none
## 4690 None or almost none None or almost none
## 4691 None or almost none None or almost none
## 4692 <NA> <NA>
## 4693 None or almost none None or almost none
## 4694 None or almost none None or almost none
## 4695 None or almost none None or almost none
## 4696 None or almost none None or almost none
## 4697 None or almost none None or almost none
## 4698 <NA> <NA>
## 4699 None or almost none None or almost none
## 4700 None or almost none None or almost none
## 4701 None or almost none None or almost none
## 4702 None or almost none None or almost none
## 4703 None or almost none None or almost none
## 4704 None or almost none None or almost none
## 4705 Small amount None or almost none
## 4706 <NA> <NA>
## 4707 <NA> <NA>
## 4708 None or almost none None or almost none
## 4709 None or almost none None or almost none
## 4710 <NA> <NA>
## 4711 None or almost none None or almost none
## 4712 None or almost none None or almost none
## 4713 None or almost none None or almost none
## 4714 <NA> <NA>
## 4715 Small amount None or almost none
## 4716 <NA> <NA>
## 4717 None or almost none None or almost none
## 4718 None or almost none None or almost none
## 4719 None or almost none None or almost none
## 4720 Small amount None or almost none
## 4721 <NA> <NA>
## 4722 None or almost none None or almost none
## 4723 None or almost none None or almost none
## 4724 <NA> <NA>
## 4725 None or almost none None or almost none
## 4726 None or almost none None or almost none
## 4727 None or almost none None or almost none
## 4728 None or almost none None or almost none
## 4729 None or almost none None or almost none
## 4730 Small amount None or almost none
## 4731 None or almost none None or almost none
## 4732 None or almost none None or almost none
## 4733 None or almost none None or almost none
## 4734 Small amount None or almost none
## 4735 None or almost none Small amount
## 4736 None or almost none None or almost none
## 4737 None or almost none None or almost none
## 4738 None or almost none None or almost none
## 4739 <NA> <NA>
## 4740 None or almost none None or almost none
## 4741 None or almost none None or almost none
## 4742 Small amount None or almost none
## 4743 <NA> <NA>
## 4744 None or almost none None or almost none
## 4745 None or almost none None or almost none
## 4746 None or almost none None or almost none
## 4747 None or almost none None or almost none
## 4748 None or almost none None or almost none
## 4749 <NA> <NA>
## 4750 None or almost none None or almost none
## 4751 None or almost none None or almost none
## 4752 Small amount None or almost none
## 4753 None or almost none None or almost none
## 4754 Small amount None or almost none
## 4755 None or almost none None or almost none
## 4756 None or almost none None or almost none
## 4757 None or almost none None or almost none
## 4758 Small amount Small amount
## 4759 None or almost none None or almost none
## 4760 None or almost none None or almost none
## 4761 None or almost none None or almost none
## 4762 None or almost none None or almost none
## 4763 None or almost none None or almost none
## 4764 None or almost none None or almost none
## 4765 None or almost none None or almost none
## 4766 None or almost none None or almost none
## 4767 None or almost none None or almost none
## 4768 None or almost none None or almost none
## 4769 None or almost none None or almost none
## 4770 None or almost none None or almost none
## 4771 None or almost none None or almost none
## 4772 <NA> <NA>
## 4773 Small amount None or almost none
## 4774 None or almost none None or almost none
## 4775 None or almost none None or almost none
## 4776 None or almost none None or almost none
## 4777 None or almost none None or almost none
## 4778 None or almost none None or almost none
## 4779 None or almost none None or almost none
## 4780 None or almost none None or almost none
## 4781 None or almost none None or almost none
## 4782 None or almost none None or almost none
## 4783 None or almost none None or almost none
## 4784 None or almost none None or almost none
## 4785 None or almost none None or almost none
## 4786 Small amount None or almost none
## 4787 None or almost none None or almost none
## 4788 <NA> <NA>
## 4789 None or almost none None or almost none
## 4790 <NA> <NA>
## 4791 <NA> <NA>
## 4792 None or almost none None or almost none
## 4793 Small amount None or almost none
## 4794 Small amount None or almost none
## 4795 Small amount None or almost none
## 4796 <NA> <NA>
## 4797 None or almost none None or almost none
## 4798 None or almost none None or almost none
## 4799 None or almost none None or almost none
## 4800 Small amount None or almost none
## 4801 Small amount None or almost none
## 4802 Small amount None or almost none
## 4803 <NA> <NA>
## 4804 None or almost none None or almost none
## 4805 None or almost none None or almost none
## 4806 None or almost none None or almost none
## 4807 None or almost none None or almost none
## 4808 None or almost none None or almost none
## 4809 None or almost none None or almost none
## 4810 <NA> <NA>
## 4811 None or almost none None or almost none
## 4812 None or almost none None or almost none
## 4813 Small amount None or almost none
## 4814 <NA> <NA>
## 4815 Small amount None or almost none
## 4816 Small amount Small amount
## 4817 None or almost none None or almost none
## 4818 Small amount None or almost none
## 4819 <NA> <NA>
## 4820 Small amount None or almost none
## 4821 None or almost none None or almost none
## 4822 Small amount Small amount
## 4823 Small amount Small amount
## 4824 <NA> <NA>
## 4825 <NA> <NA>
## 4826 None or almost none None or almost none
## 4827 Small amount None or almost none
## 4828 None or almost none None or almost none
## 4829 None or almost none None or almost none
## 4830 None or almost none None or almost none
## 4831 None or almost none None or almost none
## 4832 None or almost none None or almost none
## 4833 <NA> <NA>
## 4834 Small amount None or almost none
## 4835 None or almost none None or almost none
## 4836 None or almost none None or almost none
## 4837 None or almost none None or almost none
## 4838 Small amount None or almost none
## 4839 None or almost none None or almost none
## 4840 None or almost none None or almost none
## 4841 None or almost none None or almost none
## 4842 None or almost none None or almost none
## 4843 Small amount Small amount
## 4844 Small amount None or almost none
## 4845 None or almost none None or almost none
## 4846 None or almost none None or almost none
## 4847 <NA> <NA>
## 4848 None or almost none None or almost none
## 4849 None or almost none None or almost none
## 4850 None or almost none None or almost none
## 4851 Small amount Small amount
## 4852 <NA> <NA>
## 4853 None or almost none Small amount
## 4854 Small amount None or almost none
## 4855 <NA> <NA>
## 4856 Small amount None or almost none
## 4857 None or almost none None or almost none
## 4858 Small amount None or almost none
## 4859 Small amount None or almost none
## 4860 None or almost none None or almost none
## 4861 None or almost none None or almost none
## 4862 None or almost none None or almost none
## 4863 None or almost none None or almost none
## 4864 None or almost none None or almost none
## 4865 <NA> <NA>
## 4866 Large amount Small amount
## 4867 None or almost none None or almost none
## 4868 Small amount Small amount
## 4869 <NA> <NA>
## 4870 Small amount Small amount
## 4871 None or almost none None or almost none
## 4872 None or almost none None or almost none
## 4873 None or almost none None or almost none
## 4874 None or almost none Small amount
## 4875 None or almost none None or almost none
## 4876 None or almost none None or almost none
## 4877 None or almost none None or almost none
## 4878 None or almost none None or almost none
## 4879 <NA> <NA>
## 4880 None or almost none None or almost none
## 4881 None or almost none None or almost none
## 4882 None or almost none None or almost none
## 4883 None or almost none None or almost none
## 4884 None or almost none None or almost none
## 4885 None or almost none None or almost none
## 4886 None or almost none None or almost none
## 4887 <NA> <NA>
## 4888 Small amount Small amount
## 4889 None or almost none None or almost none
## 4890 None or almost none None or almost none
## 4891 Large amount Small amount
## 4892 None or almost none None or almost none
## 4893 None or almost none None or almost none
## 4894 Small amount None or almost none
## 4895 <NA> <NA>
## 4896 <NA> <NA>
## 4897 None or almost none None or almost none
## 4898 None or almost none None or almost none
## 4899 None or almost none None or almost none
## 4900 None or almost none None or almost none
## 4901 None or almost none None or almost none
## 4902 None or almost none Small amount
## 4903 None or almost none None or almost none
## 4904 <NA> <NA>
## 4905 None or almost none None or almost none
## 4906 <NA> <NA>
## 4907 <NA> <NA>
## 4908 None or almost none None or almost none
## 4909 <NA> <NA>
## 4910 None or almost none None or almost none
## 4911 Small amount None or almost none
## 4912 Small amount None or almost none
## 4913 Small amount Small amount
## 4914 None or almost none None or almost none
## 4915 None or almost none None or almost none
## 4916 None or almost none None or almost none
## 4917 None or almost none None or almost none
## 4918 None or almost none None or almost none
## 4919 Large amount Small amount
## 4920 None or almost none None or almost none
## 4921 Small amount Small amount
## 4922 None or almost none None or almost none
## 4923 <NA> <NA>
## 4924 None or almost none None or almost none
## 4925 Very large amount Small amount
## 4926 None or almost none None or almost none
## 4927 Small amount None or almost none
## 4928 <NA> <NA>
## 4929 <NA> <NA>
## 4930 None or almost none None or almost none
## 4931 None or almost none None or almost none
## 4932 None or almost none None or almost none
## 4933 None or almost none None or almost none
## 4934 Small amount Small amount
## 4935 Large amount None or almost none
## 4936 None or almost none None or almost none
## 4937 Small amount None or almost none
## 4938 None or almost none None or almost none
## 4939 Small amount None or almost none
## 4940 None or almost none None or almost none
## 4941 Small amount Large amount
## 4942 None or almost none None or almost none
## 4943 None or almost none None or almost none
## 4944 None or almost none None or almost none
## 4945 Small amount None or almost none
## 4946 Small amount None or almost none
## 4947 Small amount Small amount
## 4948 None or almost none None or almost none
## 4949 None or almost none None or almost none
## 4950 Small amount None or almost none
## 4951 Small amount None or almost none
## 4952 None or almost none None or almost none
## 4953 None or almost none None or almost none
## 4954 Small amount None or almost none
## 4955 None or almost none None or almost none
## 4956 Small amount None or almost none
## 4957 <NA> <NA>
## 4958 None or almost none None or almost none
## 4959 Small amount None or almost none
## 4960 Small amount None or almost none
## 4961 None or almost none None or almost none
## 4962 None or almost none None or almost none
## 4963 Small amount None or almost none
## 4964 <NA> <NA>
## 4965 None or almost none None or almost none
## 4966 Small amount None or almost none
## 4967 None or almost none None or almost none
## 4968 Small amount None or almost none
## 4969 None or almost none None or almost none
## 4970 None or almost none None or almost none
## 4971 None or almost none None or almost none
## 4972 Small amount None or almost none
## 4973 None or almost none None or almost none
## 4974 None or almost none None or almost none
## 4975 Small amount Small amount
## 4976 None or almost none None or almost none
## 4977 <NA> <NA>
## 4978 None or almost none None or almost none
## 4979 None or almost none None or almost none
## 4980 None or almost none None or almost none
## 4981 <NA> <NA>
## 4982 Large amount None or almost none
## 4983 None or almost none None or almost none
## 4984 None or almost none None or almost none
## 4985 None or almost none None or almost none
## 4986 None or almost none None or almost none
## 4987 None or almost none None or almost none
## 4988 Small amount None or almost none
## 4989 Small amount Small amount
## 4990 Large amount Small amount
## 4991 None or almost none None or almost none
## 4992 Large amount Small amount
## 4993 None or almost none None or almost none
## 4994 Small amount None or almost none
## 4995 None or almost none None or almost none
## 4996 Large amount Small amount
## 4997 None or almost none None or almost none
## 4998 None or almost none None or almost none
## 4999 <NA> <NA>
## 5000 None or almost none None or almost none
## 5001 None or almost none None or almost none
## 5002 None or almost none None or almost none
## 5003 None or almost none None or almost none
## 5004 Small amount None or almost none
## 5005 Small amount Small amount
## 5006 None or almost none None or almost none
## 5007 None or almost none None or almost none
## 5008 None or almost none None or almost none
## 5009 None or almost none None or almost none
## 5010 None or almost none None or almost none
## 5011 None or almost none None or almost none
## 5012 <NA> <NA>
## 5013 None or almost none None or almost none
## 5014 None or almost none None or almost none
## 5015 None or almost none None or almost none
## 5016 <NA> <NA>
## 5017 None or almost none None or almost none
## 5018 <NA> <NA>
## 5019 None or almost none None or almost none
## 5020 None or almost none None or almost none
## 5021 None or almost none None or almost none
## 5022 None or almost none None or almost none
## 5023 None or almost none None or almost none
## 5024 None or almost none None or almost none
## 5025 None or almost none None or almost none
## 5026 None or almost none None or almost none
## 5027 Small amount None or almost none
## 5028 None or almost none None or almost none
## 5029 None or almost none None or almost none
## 5030 <NA> <NA>
## 5031 None or almost none None or almost none
## 5032 None or almost none None or almost none
## 5033 None or almost none None or almost none
## 5034 None or almost none None or almost none
## 5035 Small amount None or almost none
## 5036 Small amount None or almost none
## 5037 None or almost none None or almost none
## 5038 <NA> <NA>
## 5039 None or almost none None or almost none
## 5040 Small amount None or almost none
## 5041 Large amount Small amount
## 5042 <NA> <NA>
## 5043 None or almost none None or almost none
## 5044 None or almost none None or almost none
## 5045 None or almost none None or almost none
## 5046 None or almost none None or almost none
## 5047 <NA> <NA>
## 5048 None or almost none None or almost none
## 5049 None or almost none None or almost none
## 5050 <NA> <NA>
## 5051 <NA> <NA>
## 5052 None or almost none None or almost none
## 5053 <NA> <NA>
## 5054 None or almost none None or almost none
## 5055 None or almost none None or almost none
## 5056 None or almost none None or almost none
## 5057 <NA> <NA>
## 5058 <NA> <NA>
## 5059 None or almost none None or almost none
## 5060 None or almost none None or almost none
## 5061 None or almost none None or almost none
## 5062 Small amount None or almost none
## 5063 Small amount Small amount
## 5064 Large amount Small amount
## 5065 <NA> <NA>
## 5066 None or almost none None or almost none
## 5067 None or almost none None or almost none
## 5068 Very large amount Large amount
## 5069 None or almost none None or almost none
## 5070 <NA> <NA>
## 5071 None or almost none None or almost none
## 5072 None or almost none None or almost none
## 5073 None or almost none None or almost none
## 5074 None or almost none None or almost none
## 5075 None or almost none None or almost none
## 5076 None or almost none None or almost none
## 5077 None or almost none None or almost none
## 5078 Small amount Small amount
## 5079 Small amount None or almost none
## 5080 None or almost none None or almost none
## 5081 <NA> <NA>
## 5082 Small amount None or almost none
## 5083 None or almost none None or almost none
## 5084 Small amount Small amount
## 5085 None or almost none None or almost none
## 5086 None or almost none None or almost none
## 5087 None or almost none None or almost none
## 5088 None or almost none None or almost none
## 5089 None or almost none Small amount
## 5090 None or almost none None or almost none
## 5091 Small amount Small amount
## 5092 Small amount None or almost none
## 5093 Small amount Small amount
## 5094 None or almost none None or almost none
## 5095 None or almost none None or almost none
## 5096 None or almost none None or almost none
## 5097 None or almost none None or almost none
## 5098 None or almost none None or almost none
## 5099 Small amount None or almost none
## 5100 None or almost none None or almost none
## 5101 None or almost none None or almost none
## 5102 Small amount Small amount
## 5103 Small amount None or almost none
## 5104 Small amount None or almost none
## 5105 None or almost none None or almost none
## 5106 None or almost none None or almost none
## 5107 <NA> <NA>
## 5108 None or almost none None or almost none
## 5109 None or almost none None or almost none
## 5110 Small amount None or almost none
## 5111 None or almost none None or almost none
## 5112 None or almost none None or almost none
## 5113 None or almost none None or almost none
## 5114 None or almost none None or almost none
## 5115 None or almost none None or almost none
## 5116 None or almost none None or almost none
## 5117 None or almost none None or almost none
## 5118 Small amount None or almost none
## 5119 None or almost none None or almost none
## 5120 None or almost none None or almost none
## 5121 None or almost none None or almost none
## 5122 None or almost none None or almost none
## 5123 None or almost none None or almost none
## 5124 None or almost none None or almost none
## 5125 <NA> <NA>
## 5126 None or almost none None or almost none
## 5127 None or almost none None or almost none
## 5128 None or almost none None or almost none
## 5129 None or almost none None or almost none
## 5130 None or almost none None or almost none
## 5131 None or almost none None or almost none
## 5132 None or almost none None or almost none
## 5133 None or almost none None or almost none
## 5134 None or almost none None or almost none
## 5135 None or almost none None or almost none
## 5136 None or almost none None or almost none
## 5137 None or almost none None or almost none
## 5138 Small amount None or almost none
## 5139 <NA> <NA>
## 5140 Large amount None or almost none
## 5141 None or almost none None or almost none
## 5142 None or almost none None or almost none
## 5143 None or almost none None or almost none
## 5144 None or almost none None or almost none
## 5145 <NA> <NA>
## 5146 None or almost none None or almost none
## 5147 Small amount None or almost none
## 5148 None or almost none None or almost none
## 5149 Small amount Small amount
## 5150 None or almost none None or almost none
## 5151 None or almost none None or almost none
## 5152 None or almost none None or almost none
## 5153 None or almost none None or almost none
## 5154 Small amount None or almost none
## 5155 Small amount Small amount
## 5156 <NA> <NA>
## 5157 None or almost none None or almost none
## 5158 None or almost none None or almost none
## 5159 None or almost none None or almost none
## 5160 None or almost none None or almost none
## 5161 None or almost none None or almost none
## 5162 None or almost none None or almost none
## 5163 None or almost none None or almost none
## 5164 None or almost none None or almost none
## 5165 Small amount None or almost none
## 5166 None or almost none None or almost none
## 5167 None or almost none None or almost none
## 5168 <NA> <NA>
## 5169 None or almost none None or almost none
## 5170 <NA> <NA>
## 5171 None or almost none None or almost none
## 5172 None or almost none None or almost none
## 5173 None or almost none None or almost none
## 5174 None or almost none None or almost none
## 5175 None or almost none None or almost none
## 5176 None or almost none None or almost none
## 5177 Large amount None or almost none
## 5178 <NA> <NA>
## 5179 Small amount None or almost none
## 5180 Small amount Small amount
## 5181 None or almost none None or almost none
## 5182 None or almost none None or almost none
## 5183 None or almost none None or almost none
## 5184 None or almost none None or almost none
## 5185 None or almost none None or almost none
## 5186 Small amount None or almost none
## 5187 <NA> <NA>
## 5188 None or almost none None or almost none
## 5189 None or almost none None or almost none
## 5190 Small amount Small amount
## 5191 None or almost none None or almost none
## 5192 None or almost none None or almost none
## 5193 None or almost none None or almost none
## 5194 None or almost none None or almost none
## 5195 Small amount None or almost none
## 5196 None or almost none None or almost none
## 5197 Small amount None or almost none
## 5198 None or almost none None or almost none
## 5199 None or almost none None or almost none
## 5200 None or almost none None or almost none
## 5201 None or almost none None or almost none
## 5202 Small amount Small amount
## 5203 None or almost none None or almost none
## 5204 None or almost none None or almost none
## 5205 <NA> <NA>
## 5206 <NA> <NA>
## 5207 Small amount None or almost none
## 5208 Small amount None or almost none
## 5209 <NA> <NA>
## 5210 None or almost none None or almost none
## 5211 <NA> <NA>
## 5212 None or almost none None or almost none
## 5213 None or almost none None or almost none
## 5214 None or almost none None or almost none
## 5215 None or almost none None or almost none
## 5216 None or almost none None or almost none
## 5217 None or almost none None or almost none
## 5218 None or almost none None or almost none
## 5219 None or almost none None or almost none
## 5220 Small amount None or almost none
## 5221 None or almost none None or almost none
## 5222 None or almost none None or almost none
## 5223 Small amount None or almost none
## 5224 None or almost none None or almost none
## 5225 None or almost none None or almost none
## 5226 None or almost none None or almost none
## 5227 None or almost none None or almost none
## 5228 None or almost none None or almost none
## 5229 None or almost none None or almost none
## 5230 None or almost none None or almost none
## 5231 Small amount None or almost none
## 5232 None or almost none None or almost none
## 5233 Small amount None or almost none
## 5234 None or almost none Small amount
## 5235 <NA> <NA>
## 5236 Small amount None or almost none
## 5237 None or almost none None or almost none
## 5238 <NA> <NA>
## 5239 None or almost none None or almost none
## 5240 <NA> <NA>
## 5241 None or almost none None or almost none
## 5242 None or almost none None or almost none
## 5243 None or almost none None or almost none
## 5244 None or almost none None or almost none
## 5245 None or almost none None or almost none
## 5246 <NA> <NA>
## 5247 None or almost none None or almost none
## 5248 None or almost none None or almost none
## 5249 None or almost none None or almost none
## 5250 None or almost none None or almost none
## 5251 None or almost none None or almost none
## 5252 Small amount None or almost none
## 5253 None or almost none None or almost none
## 5254 <NA> <NA>
## 5255 None or almost none None or almost none
## 5256 None or almost none None or almost none
## 5257 <NA> <NA>
## 5258 None or almost none None or almost none
## 5259 None or almost none None or almost none
## 5260 None or almost none None or almost none
## 5261 None or almost none None or almost none
## 5262 Small amount None or almost none
## 5263 None or almost none None or almost none
## 5264 None or almost none None or almost none
## 5265 Small amount None or almost none
## 5266 Small amount None or almost none
## 5267 None or almost none None or almost none
## 5268 None or almost none None or almost none
## 5269 None or almost none None or almost none
## 5270 None or almost none None or almost none
## 5271 <NA> <NA>
## 5272 None or almost none None or almost none
## 5273 <NA> <NA>
## 5274 None or almost none None or almost none
## 5275 Large amount Small amount
## 5276 Small amount None or almost none
## 5277 None or almost none None or almost none
## 5278 None or almost none None or almost none
## 5279 None or almost none None or almost none
## 5280 None or almost none None or almost none
## 5281 None or almost none None or almost none
## 5282 Very large amount Large amount
## 5283 None or almost none None or almost none
## 5284 Small amount None or almost none
## 5285 None or almost none None or almost none
## 5286 None or almost none None or almost none
## 5287 None or almost none None or almost none
## 5288 None or almost none None or almost none
## 5289 Small amount None or almost none
## 5290 None or almost none None or almost none
## 5291 None or almost none None or almost none
## 5292 None or almost none None or almost none
## 5293 None or almost none None or almost none
## 5294 None or almost none None or almost none
## 5295 None or almost none None or almost none
## 5296 Small amount Small amount
## 5297 None or almost none None or almost none
## 5298 None or almost none None or almost none
## 5299 None or almost none None or almost none
## 5300 <NA> <NA>
## 5301 None or almost none None or almost none
## 5302 None or almost none None or almost none
## 5303 None or almost none None or almost none
## 5304 <NA> <NA>
## 5305 None or almost none None or almost none
## 5306 None or almost none None or almost none
## 5307 None or almost none None or almost none
## 5308 None or almost none None or almost none
## 5309 None or almost none None or almost none
## 5310 <NA> <NA>
## 5311 None or almost none None or almost none
## 5312 Large amount Small amount
## 5313 Small amount Small amount
## 5314 None or almost none None or almost none
## 5315 Small amount None or almost none
## 5316 None or almost none None or almost none
## 5317 Small amount Small amount
## 5318 None or almost none None or almost none
## 5319 Very large amount Large amount
## 5320 None or almost none None or almost none
## 5321 Small amount None or almost none
## 5322 Small amount Small amount
## 5323 None or almost none None or almost none
## 5324 None or almost none None or almost none
## 5325 None or almost none None or almost none
## 5326 None or almost none None or almost none
## 5327 Small amount None or almost none
## 5328 None or almost none None or almost none
## 5329 Small amount Small amount
## 5330 None or almost none None or almost none
## 5331 Small amount None or almost none
## 5332 None or almost none None or almost none
## 5333 Small amount None or almost none
## 5334 None or almost none None or almost none
## 5335 None or almost none None or almost none
## 5336 Small amount None or almost none
## 5337 Large amount Small amount
## 5338 <NA> <NA>
## 5339 Small amount None or almost none
## 5340 None or almost none None or almost none
## 5341 Small amount None or almost none
## 5342 None or almost none None or almost none
## 5343 None or almost none None or almost none
## 5344 None or almost none None or almost none
## 5345 None or almost none None or almost none
## 5346 Small amount Small amount
## 5347 Small amount None or almost none
## 5348 Small amount None or almost none
## 5349 Small amount None or almost none
## 5350 None or almost none None or almost none
## 5351 Small amount None or almost none
## 5352 None or almost none None or almost none
## 5353 None or almost none None or almost none
## 5354 None or almost none None or almost none
## 5355 None or almost none None or almost none
## 5356 None or almost none None or almost none
## 5357 None or almost none None or almost none
## 5358 None or almost none None or almost none
## 5359 None or almost none None or almost none
## 5360 None or almost none None or almost none
## 5361 Small amount None or almost none
## 5362 None or almost none None or almost none
## 5363 Small amount None or almost none
## 5364 Small amount None or almost none
## 5365 <NA> <NA>
## 5366 None or almost none None or almost none
## 5367 None or almost none None or almost none
## 5368 None or almost none None or almost none
## 5369 None or almost none Small amount
## 5370 None or almost none None or almost none
## 5371 <NA> <NA>
## 5372 None or almost none None or almost none
## 5373 Small amount Small amount
## 5374 None or almost none None or almost none
## 5375 Small amount None or almost none
## 5376 None or almost none None or almost none
## 5377 None or almost none None or almost none
## 5378 Small amount None or almost none
## 5379 Small amount None or almost none
## 5380 None or almost none None or almost none
## 5381 Small amount Small amount
## 5382 Small amount None or almost none
## 5383 Small amount None or almost none
## 5384 <NA> <NA>
## 5385 None or almost none None or almost none
## 5386 None or almost none None or almost none
## 5387 None or almost none None or almost none
## 5388 None or almost none None or almost none
## 5389 None or almost none None or almost none
## 5390 None or almost none None or almost none
## 5391 None or almost none None or almost none
## 5392 None or almost none None or almost none
## 5393 None or almost none None or almost none
## 5394 None or almost none None or almost none
## 5395 Small amount Small amount
## 5396 Small amount None or almost none
## 5397 None or almost none None or almost none
## 5398 None or almost none None or almost none
## 5399 Small amount Small amount
## 5400 None or almost none None or almost none
## 5401 None or almost none None or almost none
## 5402 Small amount None or almost none
## 5403 None or almost none None or almost none
## 5404 Small amount None or almost none
## 5405 None or almost none None or almost none
## 5406 None or almost none None or almost none
## 5407 <NA> <NA>
## 5408 <NA> <NA>
## 5409 Small amount None or almost none
## 5410 <NA> <NA>
## 5411 <NA> <NA>
## 5412 Small amount Small amount
## 5413 None or almost none None or almost none
## 5414 Small amount Small amount
## 5415 None or almost none None or almost none
## 5416 None or almost none None or almost none
## 5417 None or almost none None or almost none
## 5418 <NA> <NA>
## 5419 None or almost none None or almost none
## 5420 Small amount None or almost none
## 5421 None or almost none None or almost none
## 5422 None or almost none None or almost none
## 5423 None or almost none None or almost none
## 5424 None or almost none None or almost none
## 5425 None or almost none None or almost none
## 5426 <NA> <NA>
## 5427 None or almost none None or almost none
## 5428 None or almost none None or almost none
## 5429 Small amount None or almost none
## 5430 None or almost none None or almost none
## 5431 None or almost none None or almost none
## 5432 None or almost none None or almost none
## 5433 None or almost none None or almost none
## 5434 None or almost none None or almost none
## 5435 Small amount None or almost none
## 5436 Small amount Small amount
## 5437 None or almost none None or almost none
## 5438 None or almost none None or almost none
## 5439 None or almost none None or almost none
## 5440 None or almost none None or almost none
## 5441 None or almost none None or almost none
## 5442 Small amount Small amount
## 5443 Small amount None or almost none
## 5444 <NA> <NA>
## 5445 Small amount None or almost none
## 5446 Small amount Small amount
## 5447 <NA> <NA>
## 5448 Small amount None or almost none
## 5449 None or almost none None or almost none
## 5450 None or almost none None or almost none
## 5451 None or almost none None or almost none
## 5452 None or almost none None or almost none
## 5453 None or almost none None or almost none
## 5454 None or almost none None or almost none
## 5455 <NA> <NA>
## 5456 None or almost none None or almost none
## 5457 None or almost none None or almost none
## 5458 None or almost none None or almost none
## 5459 Small amount None or almost none
## 5460 None or almost none None or almost none
## 5461 None or almost none None or almost none
## 5462 None or almost none None or almost none
## 5463 None or almost none None or almost none
## 5464 None or almost none None or almost none
## 5465 None or almost none None or almost none
## 5466 None or almost none None or almost none
## 5467 None or almost none Small amount
## 5468 <NA> <NA>
## 5469 None or almost none None or almost none
## 5470 None or almost none None or almost none
## 5471 None or almost none None or almost none
## 5472 None or almost none None or almost none
## 5473 None or almost none None or almost none
## 5474 None or almost none None or almost none
## 5475 None or almost none None or almost none
## 5476 None or almost none None or almost none
## 5477 None or almost none None or almost none
## 5478 None or almost none None or almost none
## 5479 None or almost none None or almost none
## 5480 None or almost none Small amount
## 5481 Small amount Small amount
## 5482 Small amount None or almost none
## 5483 None or almost none None or almost none
## 5484 None or almost none None or almost none
## 5485 None or almost none None or almost none
## 5486 Small amount Small amount
## 5487 Small amount None or almost none
## 5488 Small amount None or almost none
## 5489 None or almost none None or almost none
## 5490 <NA> <NA>
## 5491 <NA> <NA>
## 5492 None or almost none None or almost none
## 5493 None or almost none None or almost none
## 5494 None or almost none None or almost none
## 5495 <NA> <NA>
## 5496 None or almost none None or almost none
## 5497 None or almost none None or almost none
## 5498 None or almost none None or almost none
## 5499 None or almost none None or almost none
## 5500 Small amount Small amount
## 5501 None or almost none None or almost none
## 5502 Small amount None or almost none
## 5503 None or almost none None or almost none
## 5504 None or almost none None or almost none
## 5505 None or almost none None or almost none
## 5506 None or almost none None or almost none
## 5507 Small amount None or almost none
## 5508 None or almost none None or almost none
## 5509 <NA> <NA>
## 5510 None or almost none None or almost none
## 5511 None or almost none None or almost none
## 5512 None or almost none None or almost none
## 5513 None or almost none None or almost none
## 5514 None or almost none None or almost none
## 5515 None or almost none None or almost none
## 5516 None or almost none None or almost none
## 5517 Small amount None or almost none
## 5518 Small amount None or almost none
## 5519 <NA> <NA>
## 5520 <NA> <NA>
## 5521 None or almost none None or almost none
## 5522 <NA> <NA>
## 5523 None or almost none None or almost none
## 5524 None or almost none None or almost none
## 5525 None or almost none None or almost none
## 5526 None or almost none None or almost none
## 5527 <NA> <NA>
## 5528 <NA> <NA>
## 5529 None or almost none None or almost none
## 5530 <NA> <NA>
## 5531 None or almost none None or almost none
## 5532 None or almost none None or almost none
## 5533 None or almost none None or almost none
## 5534 None or almost none None or almost none
## 5535 None or almost none None or almost none
## 5536 None or almost none None or almost none
## 5537 Large amount Small amount
## 5538 <NA> <NA>
## 5539 None or almost none None or almost none
## 5540 None or almost none None or almost none
## 5541 Small amount None or almost none
## 5542 None or almost none None or almost none
## 5543 None or almost none None or almost none
## 5544 None or almost none None or almost none
## 5545 None or almost none None or almost none
## 5546 Small amount None or almost none
## 5547 None or almost none None or almost none
## 5548 None or almost none None or almost none
## 5549 None or almost none None or almost none
## 5550 None or almost none None or almost none
## 5551 None or almost none None or almost none
## 5552 None or almost none None or almost none
## 5553 <NA> <NA>
## 5554 Small amount None or almost none
## 5555 None or almost none None or almost none
## 5556 None or almost none None or almost none
## 5557 None or almost none None or almost none
## 5558 None or almost none None or almost none
## 5559 None or almost none None or almost none
## 5560 None or almost none None or almost none
## 5561 None or almost none None or almost none
## 5562 None or almost none None or almost none
## 5563 <NA> <NA>
## 5564 None or almost none None or almost none
## 5565 None or almost none None or almost none
## 5566 None or almost none None or almost none
## 5567 None or almost none None or almost none
## 5568 None or almost none None or almost none
## 5569 None or almost none None or almost none
## 5570 Small amount None or almost none
## 5571 None or almost none None or almost none
## 5572 Large amount Small amount
## 5573 None or almost none None or almost none
## 5574 None or almost none None or almost none
## 5575 None or almost none None or almost none
## 5576 None or almost none None or almost none
## 5577 None or almost none None or almost none
## 5578 None or almost none None or almost none
## 5579 None or almost none None or almost none
## 5580 None or almost none None or almost none
## 5581 None or almost none None or almost none
## 5582 None or almost none None or almost none
## 5583 None or almost none None or almost none
## 5584 <NA> <NA>
## 5585 None or almost none None or almost none
## 5586 Large amount Small amount
## 5587 Small amount None or almost none
## 5588 None or almost none None or almost none
## 5589 <NA> <NA>
## 5590 None or almost none None or almost none
## 5591 None or almost none None or almost none
## 5592 <NA> <NA>
## 5593 Small amount Small amount
## 5594 <NA> <NA>
## 5595 None or almost none None or almost none
## 5596 Small amount Small amount
## 5597 None or almost none None or almost none
## 5598 None or almost none None or almost none
## 5599 None or almost none None or almost none
## 5600 None or almost none None or almost none
Apart from the variables of interest (cigarette and alcohol consumption) our dataset has other variables obtained from survey responses. Obviously, these are only available for respondents. We will try to use these variables to calibrate the survey in Use of auxiliary data/calibration step. Some of these variables are:
data[c(resp.id, resp.x)]
## idno vote
## 1 100000003 Yes
## 2 100000005 Yes
## 3 100000008 Yes
## 4 100000009 Yes
## 5 100000010 No
## 6 100000012 No
## 7 100000015 Yes
## 8 100000016 No
## 9 100000017 No
## 10 100000020 No
## 11 100000022 No
## 12 100000023 Yes
## 13 100000025 No
## 14 100000030 Yes
## 15 100000031 No
## 16 100000033 Yes
## 17 100000034 Yes
## 18 100000036 Yes
## 19 100000037 Not eligible to vote
## 20 100000041 Yes
## 21 100000043 Yes
## 22 100000046 Yes
## 23 100000047 Yes
## 24 100000048 <NA>
## 25 100000050 Yes
## 26 100000052 Yes
## 27 100000053 No
## 28 100000054 Yes
## 29 100000055 Yes
## 30 100000057 No
## 31 100000062 Yes
## 32 100000063 Yes
## 33 100000067 Yes
## 34 100000070 Yes
## 35 100000071 Yes
## 36 100000073 No
## 37 100000075 Yes
## 38 100000076 Yes
## 39 100000077 Yes
## 40 100000080 Yes
## 41 100000084 Yes
## 42 100000085 Yes
## 43 100000086 No
## 44 100000088 Yes
## 45 100000089 Yes
## 46 100000091 Yes
## 47 100000095 Yes
## 48 100000096 Yes
## 49 100000103 No
## 50 100000104 Yes
## 51 100000107 No
## 52 100000108 Not eligible to vote
## 53 100000109 Yes
## 54 100000110 Yes
## 55 100000111 Not eligible to vote
## 56 100000113 No
## 57 100000115 Yes
## 58 100000121 Yes
## 59 100000122 Yes
## 60 100000123 Yes
## 61 100000124 Yes
## 62 100000126 Yes
## 63 100000127 No
## 64 100000139 Yes
## 65 100000141 Yes
## 66 100000143 Yes
## 67 100000145 Yes
## 68 100000147 Yes
## 69 100000148 Yes
## 70 100000152 Yes
## 71 100000153 Yes
## 72 100000156 Yes
## 73 100000157 Yes
## 74 100000158 No
## 75 100000159 Yes
## 76 100000167 No
## 77 100000168 No
## 78 100000170 No
## 79 100000171 Yes
## 80 100000174 Not eligible to vote
## 81 100000175 Yes
## 82 100000176 Yes
## 83 100000180 Yes
## 84 100000181 Yes
## 85 100000182 No
## 86 100000183 Yes
## 87 100000184 Yes
## 88 100000185 Yes
## 89 100000186 Not eligible to vote
## 90 100000189 No
## 91 100000193 Yes
## 92 100000197 Yes
## 93 100000205 Yes
## 94 100000207 No
## 95 100000208 Not eligible to vote
## 96 100000211 No
## 97 100000212 No
## 98 100000213 Yes
## 99 100000219 No
## 100 100000221 Yes
## 101 100000224 Yes
## 102 100000225 No
## 103 100000227 No
## 104 100000229 Yes
## 105 100000231 No
## 106 100000235 Yes
## 107 100000240 Yes
## 108 100000248 No
## 109 100000250 Yes
## 110 100000251 Yes
## 111 100000253 Yes
## 112 100000256 Yes
## 113 100000261 Yes
## 114 100000263 Yes
## 115 100000264 Not eligible to vote
## 116 100000265 Yes
## 117 100000266 No
## 118 100000267 Yes
## 119 100000268 Yes
## 120 100000269 Yes
## 121 100000270 Yes
## 122 100000271 Yes
## 123 100000272 Yes
## 124 100000275 No
## 125 100000276 Yes
## 126 100000279 Yes
## 127 100000281 Yes
## 128 100000283 Yes
## 129 100000284 No
## 130 100000285 No
## 131 100000288 No
## 132 100000289 No
## 133 100000290 Yes
## 134 100000298 Yes
## 135 100000300 Yes
## 136 100000302 Yes
## 137 100000303 No
## 138 100000304 Yes
## 139 100000305 Yes
## 140 100000306 Yes
## 141 100000313 Yes
## 142 100000314 Yes
## 143 100000321 No
## 144 100000322 No
## 145 100000326 No
## 146 100000329 No
## 147 100000331 Yes
## 148 100000333 Yes
## 149 100000334 Yes
## 150 100000335 Yes
## 151 100000341 Yes
## 152 100000344 Not eligible to vote
## 153 100000348 Yes
## 154 100000350 No
## 155 100000352 Yes
## 156 100000357 Yes
## 157 100000358 No
## 158 100000359 Yes
## 159 100000360 Yes
## 160 100000365 Not eligible to vote
## 161 100000371 Yes
## 162 100000374 No
## 163 100000375 Yes
## 164 100000376 Yes
## 165 100000379 No
## 166 100000386 Yes
## 167 100000387 Yes
## 168 100000389 Yes
## 169 100000390 Yes
## 170 100000392 No
## 171 100000393 No
## 172 100000395 Yes
## 173 100000396 No
## 174 100000398 Yes
## 175 100000400 Yes
## 176 100000401 Yes
## 177 100000403 No
## 178 100000405 Yes
## 179 100000408 No
## 180 100000411 Yes
## 181 100000412 Yes
## 182 100000415 Yes
## 183 100000417 No
## 184 100000418 Yes
## 185 100000420 No
## 186 100000421 Yes
## 187 100000422 No
## 188 100000423 Yes
## 189 100000425 Yes
## 190 100000427 Yes
## 191 100000430 No
## 192 100000431 Yes
## 193 100000435 Yes
## 194 100000439 No
## 195 100000441 Yes
## 196 100000449 Yes
## 197 100000450 Yes
## 198 100000451 Yes
## 199 100000452 Yes
## 200 100000453 Yes
## 201 100000454 Yes
## 202 100000456 Yes
## 203 100000457 Yes
## 204 100000462 No
## 205 100000463 Yes
## 206 100000464 No
## 207 100000465 No
## 208 100000467 No
## 209 100000468 Yes
## 210 100000470 Not eligible to vote
## 211 100000471 Yes
## 212 100000474 Not eligible to vote
## 213 100000475 Yes
## 214 100000477 Not eligible to vote
## 215 100000478 Yes
## 216 100000479 No
## 217 100000480 Yes
## 218 100000481 Yes
## 219 100000482 No
## 220 100000485 Yes
## 221 100000490 No
## 222 100000491 Not eligible to vote
## 223 100000494 Yes
## 224 100000495 No
## 225 100000500 Yes
## 226 100000501 Yes
## 227 100000502 Yes
## 228 100000503 Yes
## 229 100000511 Yes
## 230 100000512 Yes
## 231 100000514 Yes
## 232 100000515 Yes
## 233 100000516 No
## 234 100000517 Yes
## 235 100000518 Not eligible to vote
## 236 100000521 Yes
## 237 100000523 No
## 238 100000524 Yes
## 239 100000528 Yes
## 240 100000529 Yes
## 241 100000531 Yes
## 242 100000532 Yes
## 243 100000535 Yes
## 244 100000538 Yes
## 245 100000539 Yes
## 246 100000541 No
## 247 100000544 Yes
## 248 100000545 No
## 249 100000548 Not eligible to vote
## 250 100000550 Yes
## 251 100000554 Yes
## 252 100000556 Yes
## 253 100000558 Yes
## 254 100000559 Yes
## 255 100000560 Yes
## 256 100000561 Yes
## 257 100000562 No
## 258 100000564 Not eligible to vote
## 259 100000565 Yes
## 260 100000567 Yes
## 261 100000570 No
## 262 100000574 Yes
## 263 100000575 No
## 264 100000576 No
## 265 100000577 Yes
## 266 100000580 No
## 267 100000581 Yes
## 268 100000583 No
## 269 100000584 Yes
## 270 100000586 No
## 271 100000589 Yes
## 272 100000590 Yes
## 273 100000591 Not eligible to vote
## 274 100000593 Yes
## 275 100000594 No
## 276 100000595 No
## 277 100000596 No
## 278 100000599 Yes
## 279 100000600 No
## 280 100000602 Yes
## 281 100000607 Yes
## 282 100000608 Yes
## 283 100000609 Yes
## 284 100000613 Not eligible to vote
## 285 100000615 Yes
## 286 100000617 No
## 287 100000621 Yes
## 288 100000622 No
## 289 100000623 Not eligible to vote
## 290 100000626 Yes
## 291 100000632 Yes
## 292 100000634 No
## 293 100000635 Yes
## 294 100000637 Yes
## 295 100000638 Not eligible to vote
## 296 100000639 Yes
## 297 100000641 No
## 298 100000642 No
## 299 100000645 Yes
## 300 100000646 No
## 301 100000648 Yes
## 302 100000650 Yes
## 303 100000652 No
## 304 100000655 Yes
## 305 100000658 <NA>
## 306 100000662 Yes
## 307 100000663 No
## 308 100000664 No
## 309 100000666 Yes
## 310 100000671 Yes
## 311 100000674 Yes
## 312 100000677 Yes
## 313 100000678 Yes
## 314 100000680 Yes
## 315 100000681 No
## 316 100000688 Not eligible to vote
## 317 100000692 Yes
## 318 100000693 Yes
## 319 100000698 No
## 320 100000701 Yes
## 321 100000708 Yes
## 322 100000720 Yes
## 323 100000727 Not eligible to vote
## 324 100000728 No
## 325 100000730 Yes
## 326 100000735 Yes
## 327 100000736 No
## 328 100000739 Yes
## 329 100000744 Yes
## 330 100000745 Yes
## 331 100000747 Yes
## 332 100000750 No
## 333 100000751 Yes
## 334 100000752 No
## 335 100000753 No
## 336 100000754 No
## 337 100000755 Yes
## 338 100000756 Yes
## 339 100000759 Yes
## 340 100000762 Yes
## 341 100000764 Yes
## 342 100000767 Yes
## 343 100000768 Yes
## 344 100000769 Yes
## 345 100000770 No
## 346 100000772 Yes
## 347 100000773 Yes
## 348 100000774 Yes
## 349 100000776 No
## 350 100000778 Yes
## 351 100000779 No
## 352 100000781 Yes
## 353 100000784 No
## 354 100000785 No
## 355 100000791 Yes
## 356 100000796 Yes
## 357 100000797 <NA>
## 358 100000798 Yes
## 359 100000804 Yes
## 360 100000808 Yes
## 361 100000810 No
## 362 100000815 Yes
## 363 100000821 No
## 364 100000827 Yes
## 365 100000830 Yes
## 366 100000838 Yes
## 367 100000839 Yes
## 368 100000840 No
## 369 100000841 No
## 370 100000842 Yes
## 371 100000844 Yes
## 372 100000846 No
## 373 100000847 Yes
## 374 100000848 Yes
## 375 100000849 No
## 376 100000850 Yes
## 377 100000853 Yes
## 378 100000854 Yes
## 379 100000855 Yes
## 380 100000856 Yes
## 381 100000857 Yes
## 382 100000859 Yes
## 383 100000860 Yes
## 384 100000862 Yes
## 385 100000863 Yes
## 386 100000866 Yes
## 387 100000867 No
## 388 100000877 Yes
## 389 100000879 Yes
## 390 100000881 Yes
## 391 100000883 Yes
## 392 100000887 Yes
## 393 100000888 No
## 394 100000892 Yes
## 395 100000898 Yes
## 396 100000907 Yes
## 397 100000909 No
## 398 100000911 Yes
## 399 100000916 Yes
## 400 100000919 Yes
## 401 100000922 Yes
## 402 100000923 No
## 403 100000927 Yes
## 404 100000929 Yes
## 405 100000930 Yes
## 406 100000931 Yes
## 407 100000939 Yes
## 408 100000943 Yes
## 409 100000945 Yes
## 410 100000948 No
## 411 100000953 Yes
## 412 100000956 No
## 413 100000957 Yes
## 414 100000958 Yes
## 415 100000959 Yes
## 416 100000960 Yes
## 417 100000963 Yes
## 418 100000964 No
## 419 100000971 Yes
## 420 100000974 Yes
## 421 100000977 Yes
## 422 100000978 Yes
## 423 100000984 Yes
## 424 100000987 Yes
## 425 100000988 Yes
## 426 100000992 Yes
## 427 100000993 Yes
## 428 100000998 Yes
## 429 100001001 Yes
## 430 100001003 No
## 431 100001006 Yes
## 432 100001008 Yes
## 433 100001011 Yes
## 434 100001021 Not eligible to vote
## 435 100001022 Yes
## 436 100001023 Yes
## 437 100001025 Yes
## 438 100001027 Yes
## 439 100001031 No
## 440 100001032 Yes
## 441 100001033 Yes
## 442 100001034 Yes
## 443 100001038 Yes
## 444 100001040 Yes
## 445 100001041 Yes
## 446 100001044 Yes
## 447 100001045 Yes
## 448 100001047 Yes
## 449 100001048 Yes
## 450 100001049 No
## 451 100001052 Yes
## 452 100001054 No
## 453 100001057 Yes
## 454 100001063 No
## 455 100001070 Yes
## 456 100001080 Not eligible to vote
## 457 100001081 Yes
## 458 100001087 Yes
## 459 100001089 Yes
## 460 100001094 Yes
## 461 100001097 Yes
## 462 100001100 No
## 463 100001102 No
## 464 100001103 No
## 465 100001106 No
## 466 100001107 No
## 467 100001110 Yes
## 468 100001112 Yes
## 469 100001114 Yes
## 470 100001119 Yes
## 471 100001121 Yes
## 472 100001122 Yes
## 473 100001123 No
## 474 100001125 No
## 475 100001126 Yes
## 476 100001128 Yes
## 477 100001129 Yes
## 478 100001130 Yes
## 479 100001132 Not eligible to vote
## 480 100001134 Not eligible to vote
## 481 100001136 Yes
## 482 100001137 Yes
## 483 100001139 No
## 484 100001140 Not eligible to vote
## 485 100001142 Yes
## 486 100001144 Yes
## 487 100001145 Yes
## 488 100001147 No
## 489 100001148 Yes
## 490 100001153 Yes
## 491 100001154 Yes
## 492 100001155 Yes
## 493 100001160 Yes
## 494 100001162 Yes
## 495 100001164 Yes
## 496 100001167 Yes
## 497 100001168 Yes
## 498 100001169 Yes
## 499 100001176 Yes
## 500 100001180 No
## 501 100001187 No
## 502 100001188 Yes
## 503 100001192 Yes
## 504 100001197 Yes
## 505 100001202 Yes
## 506 100001207 Yes
## 507 100001209 No
## 508 100001215 No
## 509 100001219 No
## 510 100001223 No
## 511 100001225 No
## 512 100001230 Yes
## 513 100001232 No
## 514 100001234 Not eligible to vote
## 515 100001237 Yes
## 516 100001239 Not eligible to vote
## 517 100001240 Yes
## 518 100001241 Yes
## 519 100001242 No
## 520 100001243 No
## 521 100001248 Yes
## 522 100001250 Yes
## 523 100001252 Yes
## 524 100001253 No
## 525 100001255 Not eligible to vote
## 526 100001259 Yes
## 527 100001262 Yes
## 528 100001267 Yes
## 529 100001271 No
## 530 100001273 No
## 531 100001274 Yes
## 532 100001275 Yes
## 533 100001277 Yes
## 534 100001279 Yes
## 535 100001285 Yes
## 536 100001288 No
## 537 100001293 Yes
## 538 100001295 Yes
## 539 100001297 Yes
## 540 100001298 No
## 541 100001299 No
## 542 100001300 Yes
## 543 100001301 Yes
## 544 100001303 Yes
## 545 100001304 Yes
## 546 100001307 Yes
## 547 100001310 Yes
## 548 100001311 Yes
## 549 100001316 Yes
## 550 100001318 Yes
## 551 100001319 No
## 552 100001322 Yes
## 553 100001323 Yes
## 554 100001325 Yes
## 555 100001339 Yes
## 556 100001340 Yes
## 557 100001341 Yes
## 558 100001342 Yes
## 559 100001347 Yes
## 560 100001349 Yes
## 561 100001350 Yes
## 562 100001353 Yes
## 563 100001354 No
## 564 100001356 Yes
## 565 100001360 Yes
## 566 100001363 Yes
## 567 100001367 Yes
## 568 100001373 No
## 569 100001375 Yes
## 570 100001376 No
## 571 100001378 No
## 572 100001381 Yes
## 573 100001383 Yes
## 574 100001391 Yes
## 575 100001393 No
## 576 100001395 Yes
## 577 100001401 No
## 578 100001402 Yes
## 579 100001403 Yes
## 580 100001404 Yes
## 581 100001405 Yes
## 582 100001407 Yes
## 583 100001411 Yes
## 584 100001412 Yes
## 585 100001414 Yes
## 586 100001417 Yes
## 587 100001418 Yes
## 588 100001419 Yes
## 589 100001420 Yes
## 590 100001421 Yes
## 591 100001422 Yes
## 592 100001423 Yes
## 593 100001425 Yes
## 594 100001427 Yes
## 595 100001428 Yes
## 596 100001434 Yes
## 597 100001435 Yes
## 598 100001436 No
## 599 100001439 No
## 600 100001440 Yes
## 601 100001441 No
## 602 100001443 No
## 603 100001444 Yes
## 604 100001445 Yes
## 605 100001448 No
## 606 100001449 Yes
## 607 100001456 Yes
## 608 100001460 Yes
## 609 100001463 Yes
## 610 100001468 Yes
## 611 100001470 Yes
## 612 100001474 Yes
## 613 100001480 Yes
## 614 100001483 Yes
## 615 100001487 Yes
## 616 100001488 Yes
## 617 100001491 Yes
## 618 100001494 Yes
## 619 100001495 No
## 620 100001497 No
## 621 100001501 Yes
## 622 100001503 No
## 623 100001506 Yes
## 624 100001512 No
## 625 100001517 Yes
## 626 100001518 Yes
## 627 100001522 Yes
## 628 100001523 No
## 629 100001524 Yes
## 630 100001525 Yes
## 631 100001526 No
## 632 100001528 Yes
## 633 100001529 Yes
## 634 100001530 No
## 635 100001534 No
## 636 100001538 Yes
## 637 100001540 Yes
## 638 100001541 Yes
## 639 100001547 Yes
## 640 100001549 Yes
## 641 100001551 Yes
## 642 100001554 Yes
## 643 100001564 Yes
## 644 100001565 Yes
## 645 100001566 Yes
## 646 100001569 Yes
## 647 100001572 Yes
## 648 100001573 No
## 649 100001574 Yes
## 650 100001575 Yes
## 651 100001576 No
## 652 100001586 Yes
## 653 100001594 Yes
## 654 100001597 Yes
## 655 100001598 No
## 656 100001599 No
## 657 100001600 Yes
## 658 100001602 No
## 659 100001603 Yes
## 660 100001604 Yes
## 661 100001615 Yes
## 662 100001620 Yes
## 663 100001624 Yes
## 664 100001626 Yes
## 665 100001627 Not eligible to vote
## 666 100001628 Yes
## 667 100001629 Yes
## 668 100001631 Yes
## 669 100001635 Yes
## 670 100001638 Yes
## 671 100001642 Yes
## 672 100001644 No
## 673 100001649 No
## 674 100001650 No
## 675 100001651 Yes
## 676 100001652 Not eligible to vote
## 677 100001654 Yes
## 678 100001655 Yes
## 679 100001656 Yes
## 680 100001657 Yes
## 681 100001663 Yes
## 682 100001665 Yes
## 683 100001668 No
## 684 100001669 Yes
## 685 100001672 No
## 686 100001674 No
## 687 100001677 No
## 688 100001678 No
## 689 100001679 Yes
## 690 100001680 Yes
## 691 100001681 Yes
## 692 100001682 Yes
## 693 100001683 Yes
## 694 100001688 No
## 695 100001689 Yes
## 696 100001690 Yes
## 697 100001691 No
## 698 100001692 Yes
## 699 100001696 No
## 700 100001700 No
## 701 100001701 Yes
## 702 100001705 Yes
## 703 100001707 Yes
## 704 100001708 No
## 705 100001709 Yes
## 706 100001713 Yes
## 707 100001714 Yes
## 708 100001716 Yes
## 709 100001717 No
## 710 100001720 Yes
## 711 100001722 Yes
## 712 100001726 Yes
## 713 100001728 Yes
## 714 100001733 Yes
## 715 100001734 Yes
## 716 100001735 Not eligible to vote
## 717 100001740 Yes
## 718 100001744 Yes
## 719 100001746 Yes
## 720 100001748 Yes
## 721 100001749 Not eligible to vote
## 722 100001755 Yes
## 723 100001758 Not eligible to vote
## 724 100001760 Yes
## 725 100001763 No
## 726 100001764 Yes
## 727 100001767 No
## 728 100001768 Yes
## 729 100001770 No
## 730 100001771 No
## 731 100001772 No
## 732 100001773 Yes
## 733 100001774 Yes
## 734 100001776 Yes
## 735 100001781 Yes
## 736 100001783 Not eligible to vote
## 737 100001786 Yes
## 738 100001790 Yes
## 739 100001791 Yes
## 740 100001793 Yes
## 741 100001795 Yes
## 742 100001796 Yes
## 743 100001797 Yes
## 744 100001798 Yes
## 745 100001800 Not eligible to vote
## 746 100001801 Yes
## 747 100001804 Yes
## 748 100001805 Yes
## 749 100001807 Not eligible to vote
## 750 100001815 Yes
## 751 100001817 Yes
## 752 100001818 Yes
## 753 100001819 Not eligible to vote
## 754 100001820 No
## 755 100001827 Yes
## 756 100001830 Yes
## 757 100001832 Yes
## 758 100001834 No
## 759 100001839 Yes
## 760 100001842 Yes
## 761 100001845 Yes
## 762 100001849 Yes
## 763 100001850 Yes
## 764 100001852 Yes
## 765 100001854 No
## 766 100001856 No
## 767 100001862 Yes
## 768 100001869 Yes
## 769 100001871 Yes
## 770 100001874 Yes
## 771 100001877 No
## 772 100001880 Yes
## 773 100001881 Yes
## 774 100001883 No
## 775 100001885 Yes
## 776 100001888 Yes
## 777 100001890 Yes
## 778 100001892 Yes
## 779 100001893 No
## 780 100001895 No
## 781 100001897 Yes
## 782 100001904 Not eligible to vote
## 783 100001905 Yes
## 784 100001909 Yes
## 785 100001912 Yes
## 786 100001914 Not eligible to vote
## 787 100001915 Yes
## 788 100001916 Yes
## 789 100001918 Yes
## 790 100001919 Yes
## 791 100001921 Yes
## 792 100001923 No
## 793 100001924 Yes
## 794 100001930 No
## 795 100001931 No
## 796 100001934 Yes
## 797 100001936 Yes
## 798 100001939 No
## 799 100001948 Yes
## 800 100001951 Yes
## 801 100001953 Yes
## 802 100001955 Yes
## 803 100001956 Yes
## 804 100001957 Yes
## 805 100001961 No
## 806 100001963 No
## 807 100001967 No
## 808 100001969 Yes
## 809 100001972 Not eligible to vote
## 810 100001973 No
## 811 100001974 Yes
## 812 100001979 Yes
## 813 100001981 No
## 814 100001986 No
## 815 100001992 Yes
## 816 100001993 Yes
## 817 100001995 Yes
## 818 100001996 Yes
## 819 100001999 Yes
## 820 100002000 No
## 821 100002003 Yes
## 822 100002004 No
## 823 100002005 No
## 824 100002007 No
## 825 100002008 Yes
## 826 100002011 No
## 827 100002012 Yes
## 828 100002019 Yes
## 829 100002024 No
## 830 100002025 Yes
## 831 100002026 No
## 832 100002030 No
## 833 100002034 Yes
## 834 100002041 No
## 835 100002043 Yes
## 836 100002045 Yes
## 837 100002046 No
## 838 100002047 Yes
## 839 100002049 No
## 840 100002050 No
## 841 100002051 Yes
## 842 100002052 No
## 843 100002059 No
## 844 100002061 Yes
## 845 100002062 Yes
## 846 100002066 No
## 847 100002067 Yes
## 848 100002068 Not eligible to vote
## 849 100002069 Yes
## 850 100002072 Yes
## 851 100002075 Not eligible to vote
## 852 100002076 Yes
## 853 100002077 No
## 854 100002079 Yes
## 855 100002080 Yes
## 856 100002081 No
## 857 100002082 Yes
## 858 100002083 Yes
## 859 100002085 Yes
## 860 100002089 Yes
## 861 100002090 Yes
## 862 100002095 Yes
## 863 100002098 Yes
## 864 100002100 Not eligible to vote
## 865 100002105 Not eligible to vote
## 866 100002106 Yes
## 867 100002107 Not eligible to vote
## 868 100002112 Yes
## 869 100002113 Yes
## 870 100002117 Yes
## 871 100002118 Not eligible to vote
## 872 100002121 Yes
## 873 100002122 Yes
## 874 100002123 Yes
## 875 100002125 No
## 876 100002131 Yes
## 877 100002132 Yes
## 878 100002136 No
## 879 100002137 Yes
## 880 100002140 Yes
## 881 100002141 No
## 882 100002142 Yes
## 883 100002143 Yes
## 884 100002146 No
## 885 100002152 Yes
## 886 100002154 No
## 887 100002155 Yes
## 888 100002156 Yes
## 889 100002159 No
## 890 100002161 Yes
## 891 100002162 Yes
## 892 100002164 No
## 893 100002166 Yes
## 894 100002175 Yes
## 895 100002176 Not eligible to vote
## 896 100002178 No
## 897 100002186 Yes
## 898 100002187 No
## 899 100002188 No
## 900 100002194 Yes
## 901 100002195 Yes
## 902 100002196 Yes
## 903 100002199 Yes
## 904 100002200 No
## 905 100002202 No
## 906 100002203 Yes
## 907 100002204 No
## 908 100002205 Yes
## 909 100002206 Yes
## 910 100002207 Yes
## 911 100002208 Yes
## 912 100002210 Yes
## 913 100002213 Yes
## 914 100002221 Yes
## 915 100002222 No
## 916 100002226 Yes
## 917 100002227 Yes
## 918 100002228 Yes
## 919 100002229 Yes
## 920 100002231 No
## 921 100002233 Yes
## 922 100002241 Yes
## 923 100002243 Yes
## 924 100002244 Yes
## 925 100002245 No
## 926 100002249 Yes
## 927 100002250 Yes
## 928 100002251 No
## 929 100002252 Yes
## 930 100002253 No
## 931 100002254 Yes
## 932 100002256 Yes
## 933 100002258 Yes
## 934 100002261 Yes
## 935 100002264 No
## 936 100002265 No
## 937 100002269 Yes
## 938 100002270 No
## 939 100002272 Yes
## 940 100002273 Yes
## 941 100002275 Yes
## 942 100002276 No
## 943 100002278 Yes
## 944 100002280 Yes
## 945 100002282 Yes
## 946 100002285 Yes
## 947 100002286 Yes
## 948 100002289 Yes
## 949 100002293 No
## 950 100002295 Yes
## 951 100002299 No
## 952 100002300 No
## 953 100002302 No
## 954 100002305 Yes
## 955 100002306 Yes
## 956 100002307 Yes
## 957 100002310 No
## 958 100002313 Yes
## 959 100002319 Yes
## 960 100002320 No
## 961 100002325 Yes
## 962 100002328 Yes
## 963 100002334 Yes
## 964 100002336 No
## 965 100002338 Yes
## 966 100002339 Yes
## 967 100002341 No
## 968 100002345 Yes
## 969 100002347 Yes
## 970 100002348 Yes
## 971 100002351 Yes
## 972 100002354 No
## 973 100002356 Yes
## 974 100002357 Yes
## 975 100002358 No
## 976 100002360 Yes
## 977 100002361 Not eligible to vote
## 978 100002363 No
## 979 100002364 Yes
## 980 100002366 Yes
## 981 100002367 No
## 982 100002368 No
## 983 100002369 Yes
## 984 100002370 Yes
## 985 100002371 Yes
## 986 100002372 Yes
## 987 100002374 Yes
## 988 100002379 Yes
## 989 100002380 Yes
## 990 100002381 Yes
## 991 100002383 Yes
## 992 100002385 No
## 993 100002386 No
## 994 100002387 Yes
## 995 100002390 Yes
## 996 100002393 No
## 997 100002396 Yes
## 998 100002398 Yes
## 999 100002400 Yes
## 1000 100002407 No
## 1001 100002408 Yes
## 1002 100002410 No
## 1003 100002412 Yes
## 1004 100002418 No
## 1005 100002420 Yes
## 1006 100002422 Yes
## 1007 100002424 No
## 1008 100002425 No
## 1009 100002430 No
## 1010 100002433 No
## 1011 100002438 No
## 1012 100002439 No
## 1013 100002440 No
## 1014 100002441 Yes
## 1015 100002442 Yes
## 1016 100002444 No
## 1017 100002452 Yes
## 1018 100002453 Yes
## 1019 100002455 Yes
## 1020 100002457 Yes
## 1021 100002460 No
## 1022 100002462 Yes
## 1023 100002467 No
## 1024 100002468 No
## 1025 100002474 Yes
## 1026 100002476 Yes
## 1027 100002478 Yes
## 1028 100002479 Yes
## 1029 100002484 No
## 1030 100002486 Not eligible to vote
## 1031 100002490 No
## 1032 100002493 Yes
## 1033 100002494 Yes
## 1034 100002495 Yes
## 1035 100002496 No
## 1036 100002499 Yes
## 1037 100002500 Yes
## 1038 100002501 Yes
## 1039 100002504 Yes
## 1040 100002505 Yes
## 1041 100002507 No
## 1042 100002511 Yes
## 1043 100002513 Yes
## 1044 100002516 Yes
## 1045 100002518 No
## 1046 100002523 Yes
## 1047 100002524 Yes
## 1048 100002525 Yes
## 1049 100002526 No
## 1050 100002530 Yes
## 1051 100002540 No
## 1052 100002541 Yes
## 1053 100002542 No
## 1054 100002543 Yes
## 1055 100002546 Yes
## 1056 100002548 No
## 1057 100002554 Yes
## 1058 100002555 Yes
## 1059 100002556 No
## 1060 100002557 No
## 1061 100002559 Yes
## 1062 100002560 Yes
## 1063 100002561 Yes
## 1064 100002564 No
## 1065 100002570 Not eligible to vote
## 1066 100002572 Yes
## 1067 100002573 No
## 1068 100002574 No
## 1069 100002576 Yes
## 1070 100002577 Yes
## 1071 100002579 No
## 1072 100002583 No
## 1073 100002584 Yes
## 1074 100002585 Yes
## 1075 100002588 Yes
## 1076 100002590 No
## 1077 100002594 Yes
## 1078 100002595 Yes
## 1079 100002599 Yes
## 1080 100002602 Yes
## 1081 100002604 Yes
## 1082 100002605 Yes
## 1083 100002606 Yes
## 1084 100002613 Yes
## 1085 100002614 Yes
## 1086 100002617 Yes
## 1087 100002618 Yes
## 1088 100002620 No
## 1089 100002623 Yes
## 1090 100002624 No
## 1091 100002626 Yes
## 1092 100002630 Not eligible to vote
## 1093 100002631 No
## 1094 100002632 Yes
## 1095 100002633 Yes
## 1096 100002634 Yes
## 1097 100002636 No
## 1098 100002638 No
## 1099 100002645 Yes
## 1100 100002647 Yes
## 1101 100002650 Yes
## 1102 100002651 No
## 1103 100002655 No
## 1104 100002656 Yes
## 1105 100002660 No
## 1106 100002661 No
## 1107 100002666 Yes
## 1108 100002668 Not eligible to vote
## 1109 100002672 No
## 1110 100002673 Yes
## 1111 100002674 No
## 1112 100002676 Yes
## 1113 100002680 Yes
## 1114 100002681 No
## 1115 100002686 Yes
## 1116 100002687 Yes
## 1117 100002692 Not eligible to vote
## 1118 100002696 Yes
## 1119 100002702 No
## 1120 100002704 Yes
## 1121 100002705 Yes
## 1122 100002710 Yes
## 1123 100002712 No
## 1124 100002715 No
## 1125 100002716 Yes
## 1126 100002717 Yes
## 1127 100002721 No
## 1128 100002722 Yes
## 1129 100002723 Yes
## 1130 100002727 Yes
## 1131 100002728 No
## 1132 100002729 Yes
## 1133 100002732 Yes
## 1134 100002735 Yes
## 1135 100002743 Yes
## 1136 100002745 Yes
## 1137 100002749 Yes
## 1138 100002752 No
## 1139 100002756 No
## 1140 100002760 <NA>
## 1141 100002762 No
## 1142 100002764 Yes
## 1143 100002771 Yes
## 1144 100002772 Yes
## 1145 100002774 Yes
## 1146 100002776 Yes
## 1147 100002777 No
## 1148 100002779 Yes
## 1149 100002780 Yes
## 1150 100002785 Not eligible to vote
## 1151 100002787 Yes
## 1152 100002790 Yes
## 1153 100002794 Yes
## 1154 100002797 No
## 1155 100002799 Yes
## 1156 100002800 Yes
## 1157 100002801 Yes
## 1158 100002802 Not eligible to vote
## 1159 100002804 No
## 1160 100002805 Yes
## 1161 100002808 Yes
## 1162 100002811 No
## 1163 100002815 Yes
## 1164 100002816 Yes
## 1165 100002817 Yes
## 1166 100002819 Yes
## 1167 100002823 Yes
## 1168 100002824 No
## 1169 100002826 No
## 1170 100002827 No
## 1171 100002831 No
## 1172 100002832 Yes
## 1173 100002833 No
## 1174 100002834 No
## 1175 100002836 Yes
## 1176 100002838 No
## 1177 100002840 Yes
## 1178 100002845 Yes
## 1179 100002848 Yes
## 1180 100002850 Yes
## 1181 100002852 No
## 1182 100002853 No
## 1183 100002857 Yes
## 1184 100002859 Yes
## 1185 100002863 Yes
## 1186 100002865 Yes
## 1187 100002866 Yes
## 1188 100002868 No
## 1189 100002869 No
## 1190 100002873 Yes
## 1191 100002874 No
## 1192 100002878 Yes
## 1193 100002889 Yes
## 1194 100002893 Yes
## 1195 100002897 Yes
## 1196 100002901 Yes
## 1197 100002902 No
## 1198 100002906 No
## 1199 100002908 Yes
## 1200 100002912 Yes
## 1201 100002913 Yes
## 1202 100002914 Yes
## 1203 100002917 Yes
## 1204 100002920 Yes
## 1205 100002921 Not eligible to vote
## 1206 100002923 Yes
## 1207 100002924 Yes
## 1208 100002927 No
## 1209 100002930 No
## 1210 100002934 Not eligible to vote
## 1211 100002935 Yes
## 1212 100002936 Yes
## 1213 100002937 No
## 1214 100002941 Yes
## 1215 100002944 Yes
## 1216 100002946 Yes
## 1217 100002950 Yes
## 1218 100002953 No
## 1219 100002955 Yes
## 1220 100002961 Yes
## 1221 100002962 Not eligible to vote
## 1222 100002963 Yes
## 1223 100002964 Yes
## 1224 100002965 No
## 1225 100002970 Yes
## 1226 100002972 No
## 1227 100002974 Yes
## 1228 100002976 No
## 1229 100002980 Yes
## 1230 100002984 Yes
## 1231 100002986 No
## 1232 100002987 Yes
## 1233 100002991 Yes
## 1234 100002992 No
## 1235 100002998 Yes
## 1236 100003000 Yes
## 1237 100003001 Not eligible to vote
## 1238 100003002 Yes
## 1239 100003003 Yes
## 1240 100003004 Yes
## 1241 100003005 Yes
## 1242 100003010 Yes
## 1243 100003013 Yes
## 1244 100003014 Yes
## 1245 100003015 Not eligible to vote
## 1246 100003017 No
## 1247 100003018 Yes
## 1248 100003019 No
## 1249 100003020 No
## 1250 100003022 No
## 1251 100003025 Yes
## 1252 100003031 Yes
## 1253 100003036 Yes
## 1254 100003038 No
## 1255 100003041 No
## 1256 100003042 Yes
## 1257 100003044 No
## 1258 100003045 Yes
## 1259 100003046 Yes
## 1260 100003047 Yes
## 1261 100003052 No
## 1262 100003054 Yes
## 1263 100003056 Not eligible to vote
## 1264 100003058 No
## 1265 100003064 Yes
## 1266 100003069 Yes
## 1267 100003071 Yes
## 1268 100003072 No
## 1269 100003073 No
## 1270 100003074 Yes
## 1271 100003075 No
## 1272 100003076 No
## 1273 100003077 Yes
## 1274 100003078 Yes
## 1275 100003079 No
## 1276 100003084 Yes
## 1277 100003087 No
## 1278 100003088 Yes
## 1279 100003090 No
## 1280 100003092 Yes
## 1281 100003093 Yes
## 1282 100003094 No
## 1283 100003098 Yes
## 1284 100003099 Yes
## 1285 100003101 Yes
## 1286 100003103 Yes
## 1287 100003108 Yes
## 1288 100003109 No
## 1289 100003112 Yes
## 1290 100003113 No
## 1291 100003114 Yes
## 1292 100003115 Yes
## 1293 100003116 No
## 1294 100003118 No
## 1295 100003119 No
## 1296 100003124 Yes
## 1297 100003128 Not eligible to vote
## 1298 100003130 Yes
## 1299 100003136 Yes
## 1300 100003138 Yes
## 1301 100003140 No
## 1302 100003141 Yes
## 1303 100003142 Yes
## 1304 100003143 No
## 1305 100003145 Yes
## 1306 100003146 Not eligible to vote
## 1307 100003150 Yes
## 1308 100003151 Not eligible to vote
## 1309 100003152 No
## 1310 100003154 Yes
## 1311 100003159 Yes
## 1312 100003161 Yes
## 1313 100003162 Yes
## 1314 100003163 Yes
## 1315 100003165 Yes
## 1316 100003166 Yes
## 1317 100003167 Yes
## 1318 100003175 Yes
## 1319 100003177 No
## 1320 100003180 Yes
## 1321 100003181 Yes
## 1322 100003183 Yes
## 1323 100003184 Yes
## 1324 100003188 Yes
## 1325 100003189 No
## 1326 100003192 Yes
## 1327 100003194 Not eligible to vote
## 1328 100003196 Yes
## 1329 100003197 Yes
## 1330 100003201 Yes
## 1331 100003206 Yes
## 1332 100003208 Yes
## 1333 100003212 Yes
## 1334 100003216 Yes
## 1335 100003217 Yes
## 1336 100003221 Yes
## 1337 100003222 Yes
## 1338 100003223 Yes
## 1339 100003224 Yes
## 1340 100003225 Yes
## 1341 100003227 Yes
## 1342 100003228 Yes
## 1343 100003230 Yes
## 1344 100003231 Yes
## 1345 100003238 No
## 1346 100003246 Yes
## 1347 100003250 Yes
## 1348 100003251 Yes
## 1349 100003253 Yes
## 1350 100003255 Yes
## 1351 100003261 Yes
## 1352 100003263 Yes
## 1353 100003267 No
## 1354 100003269 Yes
## 1355 100003270 No
## 1356 100003273 Yes
## 1357 100003283 Yes
## 1358 100003288 Yes
## 1359 100003290 No
## 1360 100003291 No
## 1361 100003297 Yes
## 1362 100003298 No
## 1363 100003301 No
## 1364 100003302 Yes
## 1365 100003305 No
## 1366 100003306 Yes
## 1367 100003307 No
## 1368 100003309 Yes
## 1369 100003311 Yes
## 1370 100003312 No
## 1371 100003313 Yes
## 1372 100003319 Yes
## 1373 100003323 No
## 1374 100003326 Yes
## 1375 100003329 Yes
## 1376 100003332 Yes
## 1377 100003333 No
## 1378 100003335 No
## 1379 100003337 No
## 1380 100003339 No
## 1381 100003344 No
## 1382 100003345 No
## 1383 100003346 Not eligible to vote
## 1384 100003351 Yes
## 1385 100003352 Yes
## 1386 100003359 No
## 1387 100003362 Not eligible to vote
## 1388 100003365 No
## 1389 100003370 Yes
## 1390 100003371 Yes
## 1391 100003376 Yes
## 1392 100003382 Yes
## 1393 100003385 Yes
## 1394 100003386 No
## 1395 100003387 No
## 1396 100003389 Yes
## 1397 100003390 No
## 1398 100003391 Yes
## 1399 100003394 Not eligible to vote
## 1400 100003395 No
## 1401 100003397 Yes
## 1402 100003406 Yes
## 1403 100003408 <NA>
## 1404 100003410 Yes
## 1405 100003412 Yes
## 1406 100003417 Yes
## 1407 100003420 Yes
## 1408 100003422 Yes
## 1409 100003423 Yes
## 1410 100003427 Yes
## 1411 100003431 Yes
## 1412 100003432 Yes
## 1413 100003433 Yes
## 1414 100003435 Yes
## 1415 100003437 Yes
## 1416 100003441 Yes
## 1417 100003446 No
## 1418 100003447 Yes
## 1419 100003450 Yes
## 1420 100003451 Yes
## 1421 100003452 No
## 1422 100003454 No
## 1423 100003455 Yes
## 1424 100003456 Not eligible to vote
## 1425 100003462 Yes
## 1426 100003463 Yes
## 1427 100003464 Yes
## 1428 100003465 Yes
## 1429 100003466 Yes
## 1430 100003467 No
## 1431 100003468 Yes
## 1432 100003472 Yes
## 1433 100003473 Yes
## 1434 100003475 Not eligible to vote
## 1435 100003476 Yes
## 1436 100003481 Yes
## 1437 100003484 Yes
## 1438 100003485 Yes
## 1439 100003487 Yes
## 1440 100003488 No
## 1441 100003491 Yes
## 1442 100003496 No
## 1443 100003497 Yes
## 1444 100003498 No
## 1445 100003501 No
## 1446 100003502 Yes
## 1447 100003503 Yes
## 1448 100003505 Not eligible to vote
## 1449 100003507 Yes
## 1450 100003508 No
## 1451 100003509 No
## 1452 100003512 Yes
## 1453 100003519 No
## 1454 100003524 Yes
## 1455 100003527 Yes
## 1456 100003529 No
## 1457 100003530 Yes
## 1458 100003534 Yes
## 1459 100003535 No
## 1460 100003538 Yes
## 1461 100003541 Yes
## 1462 100003546 Yes
## 1463 100003547 Not eligible to vote
## 1464 100003551 Yes
## 1465 100003553 Yes
## 1466 100003557 <NA>
## 1467 100003559 Yes
## 1468 100003562 Yes
## 1469 100003565 Yes
## 1470 100003566 Yes
## 1471 100003569 No
## 1472 100003570 Yes
## 1473 100003574 No
## 1474 100003576 No
## 1475 100003577 No
## 1476 100003581 No
## 1477 100003584 No
## 1478 100003586 Yes
## 1479 100003587 Yes
## 1480 100003594 Yes
## 1481 100003595 No
## 1482 100003597 Yes
## 1483 100003599 Yes
## 1484 100003600 Yes
## 1485 100003603 Yes
## 1486 100003605 No
## 1487 100003610 Yes
## 1488 100003612 Yes
## 1489 100003617 No
## 1490 100003619 Yes
## 1491 100003622 Yes
## 1492 100003623 Yes
## 1493 100003626 Yes
## 1494 100003627 Yes
## 1495 100003628 Yes
## 1496 100003631 Yes
## 1497 100003632 No
## 1498 100003633 Yes
## 1499 100003635 No
## 1500 100003636 Yes
## 1501 100003637 Yes
## 1502 100003641 Yes
## 1503 100003643 Yes
## 1504 100003647 Yes
## 1505 100003652 Yes
## 1506 100003653 Yes
## 1507 100003659 Yes
## 1508 100003661 No
## 1509 100003662 No
## 1510 100003667 <NA>
## 1511 100003669 Yes
## 1512 100003672 Yes
## 1513 100003675 No
## 1514 100003693 No
## 1515 100003694 No
## 1516 100003696 Yes
## 1517 100003699 No
## 1518 100003703 No
## 1519 100003710 Yes
## 1520 100003711 Yes
## 1521 100003715 Yes
## 1522 100003719 Yes
## 1523 100003720 Not eligible to vote
## 1524 100003721 Yes
## 1525 100003724 Yes
## 1526 100003725 No
## 1527 100003726 Not eligible to vote
## 1528 100003727 Yes
## 1529 100003729 Yes
## 1530 100003730 Yes
## 1531 100003733 No
## 1532 100003736 Yes
## 1533 100003737 No
## 1534 100003738 Yes
## 1535 100003740 Not eligible to vote
## 1536 100003741 Yes
## 1537 100003742 Yes
## 1538 100003746 Yes
## 1539 100003747 No
## 1540 100003748 Yes
## 1541 100003749 No
## 1542 100003751 Yes
## 1543 100003756 Yes
## 1544 100003758 Yes
## 1545 100003759 Yes
## 1546 100003763 Not eligible to vote
## 1547 100003764 No
## 1548 100003765 Yes
## 1549 100003766 No
## 1550 100003767 Yes
## 1551 100003768 Yes
## 1552 100003771 Yes
## 1553 100003773 Yes
## 1554 100003774 Not eligible to vote
## 1555 100003780 No
## 1556 100003781 Yes
## 1557 100003782 Not eligible to vote
## 1558 100003783 Yes
## 1559 100003784 Yes
## 1560 100003786 Yes
## 1561 100003788 No
## 1562 100003791 Yes
## 1563 100003794 Yes
## 1564 100003795 Yes
## 1565 100003800 No
## 1566 100003802 No
## 1567 100003808 No
## 1568 100003810 Yes
## 1569 100003811 Yes
## 1570 100003815 Yes
## 1571 100003816 Yes
## 1572 100003817 Yes
## 1573 100003818 No
## 1574 100003820 Yes
## 1575 100003826 Yes
## 1576 100003838 Yes
## 1577 100003839 Yes
## 1578 100003840 Yes
## 1579 100003842 Yes
## 1580 100003845 Yes
## 1581 100003849 Yes
## 1582 100003858 Yes
## 1583 100003860 No
## 1584 100003861 No
## 1585 100003863 Yes
## 1586 100003864 Yes
## 1587 100003870 No
## 1588 100003871 No
## 1589 100003873 Not eligible to vote
## 1590 100003874 Yes
## 1591 100003882 No
## 1592 100003888 Yes
## 1593 100003891 Yes
## 1594 100003892 No
## 1595 100003894 Yes
## 1596 100003897 Yes
## 1597 100003898 No
## 1598 100003901 Yes
## 1599 100003903 Yes
## 1600 100003904 Yes
## 1601 100003910 Yes
## 1602 100003913 Yes
## 1603 100003917 No
## 1604 100003923 Yes
## 1605 100003925 Yes
## 1606 100003927 Yes
## 1607 100003928 No
## 1608 100003930 Yes
## 1609 100003932 Yes
## 1610 100003936 No
## 1611 100003937 Yes
## 1612 100003942 Not eligible to vote
## 1613 100003943 No
## 1614 100003944 Yes
## 1615 100003946 Yes
## 1616 100003948 Yes
## 1617 100003950 Yes
## 1618 100003951 Not eligible to vote
## 1619 100003952 Yes
## 1620 100003956 Yes
## 1621 100003957 No
## 1622 100003959 Yes
## 1623 100003961 Yes
## 1624 100003962 Yes
## 1625 100003967 Yes
## 1626 100003969 Yes
## 1627 100003970 No
## 1628 100003972 Yes
## 1629 100003973 No
## 1630 100003976 Not eligible to vote
## 1631 100003977 Yes
## 1632 100003979 Yes
## 1633 100003980 No
## 1634 100003981 No
## 1635 100003983 Yes
## 1636 100003986 Not eligible to vote
## 1637 100003987 No
## 1638 100003988 Yes
## 1639 100003991 Yes
## 1640 100003993 Yes
## 1641 100003995 Not eligible to vote
## 1642 100004001 Yes
## 1643 100004004 Yes
## 1644 100004006 Yes
## 1645 100004011 Yes
## 1646 100004016 Yes
## 1647 100004019 Yes
## 1648 100004021 Yes
## 1649 100004023 Yes
## 1650 100004027 Yes
## 1651 100004029 Yes
## 1652 100004030 No
## 1653 100004038 No
## 1654 100004040 Yes
## 1655 100004045 Yes
## 1656 100004047 Yes
## 1657 100004048 Yes
## 1658 100004049 Yes
## 1659 100004050 Yes
## 1660 100004051 Yes
## 1661 100004054 Yes
## 1662 100004060 Yes
## 1663 100004067 Yes
## 1664 100004069 Yes
## 1665 100004070 Yes
## 1666 100004072 No
## 1667 100004077 Yes
## 1668 100004078 No
## 1669 100004082 No
## 1670 100004083 Yes
## 1671 100004089 No
## 1672 100004092 Not eligible to vote
## 1673 100004094 Yes
## 1674 100004098 Yes
## 1675 100004099 Yes
## 1676 100004102 No
## 1677 100004103 No
## 1678 100004106 No
## 1679 100004107 Yes
## 1680 100004108 Yes
## 1681 100004111 Yes
## 1682 100004116 No
## 1683 100004117 Yes
## 1684 100004119 Yes
## 1685 100004121 No
## 1686 100004127 No
## 1687 100004129 Yes
## 1688 100004135 Yes
## 1689 100004136 Yes
## 1690 100004144 Not eligible to vote
## 1691 100004145 Yes
## 1692 100004147 No
## 1693 100004150 Yes
## 1694 100004152 Not eligible to vote
## 1695 100004158 No
## 1696 100004159 Not eligible to vote
## 1697 100004160 Yes
## 1698 100004161 Yes
## 1699 100004163 Yes
## 1700 100004165 Yes
## 1701 100004166 No
## 1702 100004167 No
## 1703 100004173 Yes
## 1704 100004175 Yes
## 1705 100004177 Yes
## 1706 100004182 Not eligible to vote
## 1707 100004183 No
## 1708 100004185 Yes
## 1709 100004187 Yes
## 1710 100004191 Yes
## 1711 100004193 Yes
## 1712 100004194 No
## 1713 100004196 Yes
## 1714 100004202 No
## 1715 100004204 Yes
## 1716 100004206 No
## 1717 100004210 Yes
## 1718 100004214 Yes
## 1719 100004216 Yes
## 1720 100004219 Yes
## 1721 100004220 No
## 1722 100004222 Yes
## 1723 100004223 Yes
## 1724 100004224 Yes
## 1725 100004225 Not eligible to vote
## 1726 100004229 Yes
## 1727 100004230 No
## 1728 100004232 Yes
## 1729 100004236 Yes
## 1730 100004244 No
## 1731 100004245 Yes
## 1732 100004246 No
## 1733 100004247 Yes
## 1734 100004248 Yes
## 1735 100004249 Yes
## 1736 100004252 Yes
## 1737 100004254 Yes
## 1738 100004260 Yes
## 1739 100004264 Yes
## 1740 100004265 No
## 1741 100004273 Yes
## 1742 100004274 Not eligible to vote
## 1743 100004275 Yes
## 1744 100004277 <NA>
## 1745 100004282 No
## 1746 100004285 Yes
## 1747 100004289 No
## 1748 100004291 Not eligible to vote
## 1749 100004296 Yes
## 1750 100004297 Yes
## 1751 100004298 Yes
## 1752 100004300 No
## 1753 100004302 Yes
## 1754 100004306 Yes
## 1755 100004311 Not eligible to vote
## 1756 100004312 No
## 1757 100004313 No
## 1758 100004317 No
## 1759 100004318 No
## 1760 100004320 No
## 1761 100004330 Yes
## 1762 100004336 Yes
## 1763 100004337 Yes
## 1764 100004343 Yes
## 1765 100004344 Yes
## 1766 100004346 Yes
## 1767 100004348 Yes
## 1768 100004352 Yes
## 1769 100004356 Not eligible to vote
## 1770 100004361 Yes
## 1771 100004364 No
## 1772 100004366 Yes
## 1773 100004367 Yes
## 1774 100004372 No
## 1775 100004374 No
## 1776 100004376 Yes
## 1777 100004379 Yes
## 1778 100004381 Yes
## 1779 100004384 Yes
## 1780 100004386 Yes
## 1781 100004388 No
## 1782 100004389 Yes
## 1783 100004390 Yes
## 1784 100004391 Yes
## 1785 100004394 Yes
## 1786 100004398 Yes
## 1787 100004399 No
## 1788 100004401 No
## 1789 100004405 Yes
## 1790 100004406 Yes
## 1791 100004411 Yes
## 1792 100004414 Yes
## 1793 100004417 No
## 1794 100004419 Yes
## 1795 100004420 No
## 1796 100004424 No
## 1797 100004425 Yes
## 1798 100004426 Yes
## 1799 100004427 Yes
## 1800 100004428 No
## 1801 100004429 No
## 1802 100004432 Yes
## 1803 100004433 Yes
## 1804 100004436 Yes
## 1805 100004437 Yes
## 1806 100004440 No
## 1807 100004441 Yes
## 1808 100004442 No
## 1809 100004443 No
## 1810 100004444 Yes
## 1811 100004446 No
## 1812 100004448 Yes
## 1813 100004450 No
## 1814 100004454 Yes
## 1815 100004457 No
## 1816 100004461 Yes
## 1817 100004462 Yes
## 1818 100004463 Yes
## 1819 100004465 Yes
## 1820 100004466 Not eligible to vote
## 1821 100004467 Yes
## 1822 100004468 Yes
## 1823 100004469 Yes
## 1824 100004473 No
## 1825 100004474 Yes
## 1826 100004475 Yes
## 1827 100004477 No
## 1828 100004479 Yes
## 1829 100004481 Yes
## 1830 100004486 Yes
## 1831 100004487 Yes
## 1832 100004488 Yes
## 1833 100004495 Not eligible to vote
## 1834 100004496 Not eligible to vote
## 1835 100004498 Yes
## 1836 100004500 Yes
## 1837 100004501 Yes
## 1838 100004502 Yes
## 1839 100004504 Yes
## 1840 100004509 Yes
## 1841 100004510 Yes
## 1842 100004511 Yes
## 1843 100004512 No
## 1844 100004513 Yes
## 1845 100004516 Yes
## 1846 100004517 Yes
## 1847 100004518 Yes
## 1848 100004519 No
## 1849 100004520 No
## 1850 100004521 Yes
## 1851 100004522 No
## 1852 100004529 No
## 1853 100004531 No
## 1854 100004537 Yes
## 1855 100004538 Yes
## 1856 100004539 No
## 1857 100004542 No
## 1858 100004547 Yes
## 1859 100004549 Yes
## 1860 100004550 Yes
## 1861 100004552 Yes
## 1862 100004554 No
## 1863 100004556 Yes
## 1864 100004558 Yes
## 1865 100004559 Not eligible to vote
## 1866 100004561 Yes
## 1867 100004562 Yes
## 1868 100004563 Yes
## 1869 100004564 Yes
## 1870 100004566 No
## 1871 100004568 Yes
## 1872 100004569 No
## 1873 100004576 Yes
## 1874 100004579 Yes
## 1875 100004580 No
## 1876 100004581 Yes
## 1877 100004582 Yes
## 1878 100004583 Yes
## 1879 100004585 Yes
## 1880 100004586 Yes
## 1881 100004589 Yes
## 1882 100004590 Yes
## 1883 100004595 Yes
## 1884 100004599 Yes
## 1885 100004600 Yes
## 1886 100004601 Yes
## 1887 100004605 No
## 1888 100004608 Yes
## 1889 100004612 Yes
## 1890 100004614 Yes
## 1891 100004618 No
## 1892 100004619 Not eligible to vote
## 1893 100004624 Yes
## 1894 100004625 No
## 1895 100004628 Yes
## 1896 100004629 Yes
## 1897 100004634 Yes
## 1898 100004635 Yes
## 1899 100004638 Yes
## 1900 100004640 Yes
## 1901 100004642 Yes
## 1902 100004644 Yes
## 1903 100004651 Yes
## 1904 100004652 No
## 1905 100004653 No
## 1906 100004655 Yes
## 1907 100004661 Yes
## 1908 100004667 Yes
## 1909 100004668 Yes
## 1910 100004669 Not eligible to vote
## 1911 100004671 Yes
## 1912 100004672 Yes
## 1913 100004679 Yes
## 1914 100004684 Yes
## 1915 100004685 No
## 1916 100004686 No
## 1917 100004687 Yes
## 1918 100004688 Yes
## 1919 100004689 Yes
## 1920 100004691 Yes
## 1921 100004692 Yes
## 1922 100004694 Yes
## 1923 100004698 Yes
## 1924 100004700 No
## 1925 100004701 Yes
## 1926 100004702 Yes
## 1927 100004703 Yes
## 1928 100004710 Yes
## 1929 100004713 No
## 1930 100004714 Yes
## 1931 100004715 Yes
## 1932 100004729 Yes
## 1933 100004731 Yes
## 1934 100004736 No
## 1935 100004738 Yes
## 1936 100004739 Yes
## 1937 100004742 Not eligible to vote
## 1938 100004749 No
## 1939 100004751 Yes
## 1940 100004753 No
## 1941 100004754 Yes
## 1942 100004763 Yes
## 1943 100004769 Yes
## 1944 100004771 No
## 1945 100004773 Yes
## 1946 100004776 Yes
## 1947 100004780 Yes
## 1948 100004781 No
## 1949 100004785 Yes
## 1950 100004786 Yes
## 1951 100004787 Yes
## 1952 100004788 No
## 1953 100004789 <NA>
## 1954 100004793 Yes
## 1955 100004794 No
## 1956 100004795 Yes
## 1957 100004797 No
## 1958 100004801 Yes
## 1959 100004803 Not eligible to vote
## 1960 100004809 Yes
## 1961 100004810 Not eligible to vote
## 1962 100004811 Yes
## 1963 100004817 Yes
## 1964 100004820 Yes
## 1965 100004821 Yes
## 1966 100004824 No
## 1967 100004828 Yes
## 1968 100004832 Yes
## 1969 100004834 Yes
## 1970 100004837 Yes
## 1971 100004843 Yes
## 1972 100004844 Yes
## 1973 100004846 Yes
## 1974 100004848 Yes
## 1975 100004850 Yes
## 1976 100004852 Yes
## 1977 100004854 Not eligible to vote
## 1978 100004856 Yes
## 1979 100004857 Yes
## 1980 100004867 Yes
## 1981 100004871 No
## 1982 100004872 Yes
## 1983 100004873 Yes
## 1984 100004875 No
## 1985 100004879 Yes
## 1986 100004886 Yes
## 1987 100004889 Yes
## 1988 100004896 Yes
## 1989 100004897 Yes
## 1990 100004901 Yes
## 1991 100004904 Yes
## 1992 100004905 Yes
## 1993 100004909 Yes
## 1994 100004910 Yes
## 1995 100004911 Yes
## 1996 100004912 Yes
## 1997 100004915 Yes
## 1998 100004917 Yes
## 1999 100004918 Yes
## 2000 100004919 Yes
## 2001 100004920 Yes
## 2002 100004923 Not eligible to vote
## 2003 100004924 Yes
## 2004 100004925 Yes
## 2005 100004926 Yes
## 2006 100004929 Yes
## 2007 100004932 No
## 2008 100004933 No
## 2009 100004937 No
## 2010 100004939 Yes
## 2011 100004944 No
## 2012 100004946 No
## 2013 100004947 Yes
## 2014 100004950 No
## 2015 100004951 No
## 2016 100004955 Yes
## 2017 100004956 Yes
## 2018 100004959 No
## 2019 100004960 Yes
## 2020 100004962 Yes
## 2021 100004965 No
## 2022 100004976 Yes
## 2023 100004980 Not eligible to vote
## 2024 100004982 No
## 2025 100004983 Yes
## 2026 100004987 Yes
## 2027 100004992 Yes
## 2028 100004993 Yes
## 2029 100004996 No
## 2030 100004998 No
## 2031 100005000 Yes
## 2032 100005002 No
## 2033 100005004 No
## 2034 100005006 No
## 2035 100005007 No
## 2036 100005014 Yes
## 2037 100005017 Not eligible to vote
## 2038 100005028 Yes
## 2039 100005029 Yes
## 2040 100005031 Yes
## 2041 100005035 No
## 2042 100005038 Not eligible to vote
## 2043 100005039 Yes
## 2044 100005040 No
## 2045 100005041 No
## 2046 100005043 Yes
## 2047 100005045 <NA>
## 2048 100005047 Yes
## 2049 100005049 Yes
## 2050 100005050 Yes
## 2051 100005051 No
## 2052 100005057 Yes
## 2053 100005063 No
## 2054 100005064 Not eligible to vote
## 2055 100005072 Not eligible to vote
## 2056 100005073 No
## 2057 100005079 Yes
## 2058 100005082 Yes
## 2059 100005085 Yes
## 2060 100005086 Yes
## 2061 100005089 Yes
## 2062 100005090 Yes
## 2063 100005096 No
## 2064 100005097 Yes
## 2065 100005098 No
## 2066 100005104 Yes
## 2067 100005107 Yes
## 2068 100005109 Yes
## 2069 100005110 Yes
## 2070 100005112 No
## 2071 100005113 Not eligible to vote
## 2072 100005115 Yes
## 2073 100005118 Yes
## 2074 100005119 Yes
## 2075 100005123 Yes
## 2076 100005125 Yes
## 2077 100005134 No
## 2078 100005137 Yes
## 2079 100005140 Not eligible to vote
## 2080 100005142 No
## 2081 100005144 No
## 2082 100005147 Yes
## 2083 100005152 Yes
## 2084 100005153 No
## 2085 100005156 Yes
## 2086 100005157 Yes
## 2087 100005158 Yes
## 2088 100005160 Yes
## 2089 100005161 Yes
## 2090 100005166 Yes
## 2091 100005167 Yes
## 2092 100005168 Yes
## 2093 100005169 Yes
## 2094 100005170 Yes
## 2095 100005171 Yes
## 2096 100005172 Yes
## 2097 100005175 Yes
## 2098 100005177 No
## 2099 100005179 Yes
## 2100 100005181 No
## 2101 100005182 No
## 2102 100005183 Yes
## 2103 100005187 No
## 2104 100005189 Yes
## 2105 100005190 Not eligible to vote
## 2106 100005193 Yes
## 2107 100005203 Not eligible to vote
## 2108 100005204 Yes
## 2109 100005205 Yes
## 2110 100005206 No
## 2111 100005209 Yes
## 2112 100005210 Yes
## 2113 100005212 Yes
## 2114 100005213 Yes
## 2115 100005217 Yes
## 2116 100005219 Yes
## 2117 100005223 Yes
## 2118 100005226 No
## 2119 100005227 Yes
## 2120 100005228 No
## 2121 100005230 No
## 2122 100005231 Not eligible to vote
## 2123 100005233 Yes
## 2124 100005235 Yes
## 2125 100005237 Yes
## 2126 100005238 Yes
## 2127 100005240 Yes
## 2128 100005244 Yes
## 2129 100005245 Yes
## 2130 100005246 Yes
## 2131 100005247 Yes
## 2132 100005250 Yes
## 2133 100005253 Yes
## 2134 100005258 Yes
## 2135 100005265 No
## 2136 100005267 Yes
## 2137 100005271 No
## 2138 100005274 Yes
## 2139 100005275 Yes
## 2140 100005279 Yes
## 2141 100005282 Yes
## 2142 100005283 Yes
## 2143 100005284 Yes
## 2144 100005289 Yes
## 2145 100005290 Yes
## 2146 100005294 Yes
## 2147 100005295 Yes
## 2148 100005297 Yes
## 2149 100005307 Yes
## 2150 100005308 Yes
## 2151 100005311 Yes
## 2152 100005313 Yes
## 2153 100005314 Yes
## 2154 100005316 Yes
## 2155 100005320 Yes
## 2156 100005324 Yes
## 2157 100005325 Yes
## 2158 100005334 Yes
## 2159 100005337 Yes
## 2160 100005338 Not eligible to vote
## 2161 100005343 No
## 2162 100005344 Yes
## 2163 100005348 Yes
## 2164 100005352 Yes
## 2165 100005353 Yes
## 2166 100005357 Yes
## 2167 100005358 No
## 2168 100005361 Yes
## 2169 100005363 Yes
## 2170 100005376 No
## 2171 100005377 No
## 2172 100005380 No
## 2173 100005384 Yes
## 2174 100005385 No
## 2175 100005387 Yes
## 2176 100005389 Yes
## 2177 100005394 Not eligible to vote
## 2178 100005395 Yes
## 2179 100005396 Yes
## 2180 100005398 Yes
## 2181 100005400 Yes
## 2182 100005401 Yes
## 2183 100005403 Yes
## 2184 100005405 Yes
## 2185 100005406 No
## 2186 100005407 Yes
## 2187 100005408 Yes
## 2188 100005410 Not eligible to vote
## 2189 100005413 Yes
## 2190 100005416 No
## 2191 100005418 No
## 2192 100005419 Yes
## 2193 100005420 Yes
## 2194 100005423 Yes
## 2195 100005425 No
## 2196 100005426 Yes
## 2197 100005427 Yes
## 2198 100005428 No
## 2199 100005436 No
## 2200 100005443 No
## 2201 100005446 No
## 2202 100005448 Yes
## 2203 100005450 Yes
## 2204 100005451 Yes
## 2205 100005452 Yes
## 2206 100005455 Yes
## 2207 100005456 No
## 2208 100005457 Yes
## 2209 100005459 Yes
## 2210 100005460 Yes
## 2211 100005464 No
## 2212 100005470 Yes
## 2213 100005472 Yes
## 2214 100005474 Yes
## 2215 100005475 Yes
## 2216 100005478 No
## 2217 100005480 No
## 2218 100005481 No
## 2219 100005482 Yes
## 2220 100005486 No
## 2221 100005489 No
## 2222 100005492 No
## 2223 100005494 Yes
## 2224 100005496 No
## 2225 100005500 No
## 2226 100005501 Yes
## 2227 100005502 No
## 2228 100005503 No
## 2229 100005507 Yes
## 2230 100005511 Yes
## 2231 100005514 Yes
## 2232 100005516 No
## 2233 100005519 Not eligible to vote
## 2234 100005520 Yes
## 2235 100005521 Yes
## 2236 100005527 No
## 2237 100005528 Yes
## 2238 100005535 Yes
## 2239 100005536 Yes
## 2240 100005537 Yes
## 2241 100005539 Yes
## 2242 100005540 No
## 2243 100005544 Yes
## 2244 100005547 No
## 2245 100005548 Not eligible to vote
## 2246 100005552 No
## 2247 100005553 No
## 2248 100005555 Yes
## 2249 100005557 Yes
## 2250 100005558 Yes
## 2251 100005560 No
## 2252 100005562 Yes
## 2253 100005566 Yes
## 2254 100005567 Yes
## 2255 100005569 No
## 2256 100005570 No
## 2257 100005571 Yes
## 2258 100005572 Yes
## 2259 100005590 Yes
## 2260 100005591 Yes
## 2261 100005592 Yes
## 2262 100005593 Yes
## 2263 100005594 Yes
## 2264 100005597 No
## 2265 100005599 Yes
## 2266 100000001 <NA>
## 2267 100000002 <NA>
## 2268 100000004 <NA>
## 2269 100000006 <NA>
## 2270 100000007 <NA>
## 2271 100000011 <NA>
## 2272 100000013 <NA>
## 2273 100000014 <NA>
## 2274 100000018 <NA>
## 2275 100000019 <NA>
## 2276 100000021 <NA>
## 2277 100000024 <NA>
## 2278 100000026 <NA>
## 2279 100000027 <NA>
## 2280 100000028 <NA>
## 2281 100000029 <NA>
## 2282 100000032 <NA>
## 2283 100000035 <NA>
## 2284 100000038 <NA>
## 2285 100000039 <NA>
## 2286 100000040 <NA>
## 2287 100000042 <NA>
## 2288 100000044 <NA>
## 2289 100000045 <NA>
## 2290 100000049 <NA>
## 2291 100000051 <NA>
## 2292 100000056 <NA>
## 2293 100000058 <NA>
## 2294 100000059 <NA>
## 2295 100000060 <NA>
## 2296 100000061 <NA>
## 2297 100000064 <NA>
## 2298 100000065 <NA>
## 2299 100000066 <NA>
## 2300 100000068 <NA>
## 2301 100000069 <NA>
## 2302 100000072 <NA>
## 2303 100000074 <NA>
## 2304 100000078 <NA>
## 2305 100000079 <NA>
## 2306 100000081 <NA>
## 2307 100000082 <NA>
## 2308 100000083 <NA>
## 2309 100000087 <NA>
## 2310 100000090 <NA>
## 2311 100000092 <NA>
## 2312 100000093 <NA>
## 2313 100000094 <NA>
## 2314 100000097 <NA>
## 2315 100000098 <NA>
## 2316 100000099 <NA>
## 2317 100000100 <NA>
## 2318 100000101 <NA>
## 2319 100000102 <NA>
## 2320 100000105 <NA>
## 2321 100000106 <NA>
## 2322 100000112 <NA>
## 2323 100000114 <NA>
## 2324 100000116 <NA>
## 2325 100000117 <NA>
## 2326 100000118 <NA>
## 2327 100000119 <NA>
## 2328 100000120 <NA>
## 2329 100000125 <NA>
## 2330 100000128 <NA>
## 2331 100000129 <NA>
## 2332 100000130 <NA>
## 2333 100000131 <NA>
## 2334 100000132 <NA>
## 2335 100000133 <NA>
## 2336 100000134 <NA>
## 2337 100000135 <NA>
## 2338 100000136 <NA>
## 2339 100000137 <NA>
## 2340 100000138 <NA>
## 2341 100000140 <NA>
## 2342 100000142 <NA>
## 2343 100000144 <NA>
## 2344 100000146 <NA>
## 2345 100000149 <NA>
## 2346 100000150 <NA>
## 2347 100000151 <NA>
## 2348 100000154 <NA>
## 2349 100000155 <NA>
## 2350 100000160 <NA>
## 2351 100000161 <NA>
## 2352 100000162 <NA>
## 2353 100000163 <NA>
## 2354 100000164 <NA>
## 2355 100000165 <NA>
## 2356 100000166 <NA>
## 2357 100000169 <NA>
## 2358 100000172 <NA>
## 2359 100000173 <NA>
## 2360 100000177 <NA>
## 2361 100000178 <NA>
## 2362 100000179 <NA>
## 2363 100000187 <NA>
## 2364 100000188 <NA>
## 2365 100000190 <NA>
## 2366 100000191 <NA>
## 2367 100000192 <NA>
## 2368 100000194 <NA>
## 2369 100000195 <NA>
## 2370 100000196 <NA>
## 2371 100000198 <NA>
## 2372 100000199 <NA>
## 2373 100000200 <NA>
## 2374 100000201 <NA>
## 2375 100000202 <NA>
## 2376 100000203 <NA>
## 2377 100000204 <NA>
## 2378 100000206 <NA>
## 2379 100000209 <NA>
## 2380 100000210 <NA>
## 2381 100000214 <NA>
## 2382 100000215 <NA>
## 2383 100000216 <NA>
## 2384 100000217 <NA>
## 2385 100000218 <NA>
## 2386 100000220 <NA>
## 2387 100000222 <NA>
## 2388 100000223 <NA>
## 2389 100000226 <NA>
## 2390 100000228 <NA>
## 2391 100000230 <NA>
## 2392 100000232 <NA>
## 2393 100000233 <NA>
## 2394 100000234 <NA>
## 2395 100000236 <NA>
## 2396 100000237 <NA>
## 2397 100000238 <NA>
## 2398 100000239 <NA>
## 2399 100000241 <NA>
## 2400 100000242 <NA>
## 2401 100000243 <NA>
## 2402 100000244 <NA>
## 2403 100000245 <NA>
## 2404 100000246 <NA>
## 2405 100000247 <NA>
## 2406 100000249 <NA>
## 2407 100000252 <NA>
## 2408 100000254 <NA>
## 2409 100000255 <NA>
## 2410 100000257 <NA>
## 2411 100000258 <NA>
## 2412 100000259 <NA>
## 2413 100000260 <NA>
## 2414 100000262 <NA>
## 2415 100000273 <NA>
## 2416 100000274 <NA>
## 2417 100000277 <NA>
## 2418 100000278 <NA>
## 2419 100000280 <NA>
## 2420 100000282 <NA>
## 2421 100000286 <NA>
## 2422 100000287 <NA>
## 2423 100000291 <NA>
## 2424 100000292 <NA>
## 2425 100000293 <NA>
## 2426 100000294 <NA>
## 2427 100000295 <NA>
## 2428 100000296 <NA>
## 2429 100000297 <NA>
## 2430 100000299 <NA>
## 2431 100000301 <NA>
## 2432 100000307 <NA>
## 2433 100000308 <NA>
## 2434 100000309 <NA>
## 2435 100000310 <NA>
## 2436 100000311 <NA>
## 2437 100000312 <NA>
## 2438 100000315 <NA>
## 2439 100000316 <NA>
## 2440 100000317 <NA>
## 2441 100000318 <NA>
## 2442 100000319 <NA>
## 2443 100000320 <NA>
## 2444 100000323 <NA>
## 2445 100000324 <NA>
## 2446 100000325 <NA>
## 2447 100000327 <NA>
## 2448 100000328 <NA>
## 2449 100000330 <NA>
## 2450 100000332 <NA>
## 2451 100000336 <NA>
## 2452 100000337 <NA>
## 2453 100000338 <NA>
## 2454 100000339 <NA>
## 2455 100000340 <NA>
## 2456 100000342 <NA>
## 2457 100000343 <NA>
## 2458 100000345 <NA>
## 2459 100000346 <NA>
## 2460 100000347 <NA>
## 2461 100000349 <NA>
## 2462 100000351 <NA>
## 2463 100000353 <NA>
## 2464 100000354 <NA>
## 2465 100000355 <NA>
## 2466 100000356 <NA>
## 2467 100000361 <NA>
## 2468 100000362 <NA>
## 2469 100000363 <NA>
## 2470 100000364 <NA>
## 2471 100000366 <NA>
## 2472 100000367 <NA>
## 2473 100000368 <NA>
## 2474 100000369 <NA>
## 2475 100000370 <NA>
## 2476 100000372 <NA>
## 2477 100000373 <NA>
## 2478 100000377 <NA>
## 2479 100000378 <NA>
## 2480 100000380 <NA>
## 2481 100000381 <NA>
## 2482 100000382 <NA>
## 2483 100000383 <NA>
## 2484 100000384 <NA>
## 2485 100000385 <NA>
## 2486 100000388 <NA>
## 2487 100000391 <NA>
## 2488 100000394 <NA>
## 2489 100000397 <NA>
## 2490 100000399 <NA>
## 2491 100000402 <NA>
## 2492 100000404 <NA>
## 2493 100000406 <NA>
## 2494 100000407 <NA>
## 2495 100000409 <NA>
## 2496 100000410 <NA>
## 2497 100000413 <NA>
## 2498 100000414 <NA>
## 2499 100000416 <NA>
## 2500 100000419 <NA>
## 2501 100000424 <NA>
## 2502 100000426 <NA>
## 2503 100000428 <NA>
## 2504 100000429 <NA>
## 2505 100000432 <NA>
## 2506 100000433 <NA>
## 2507 100000434 <NA>
## 2508 100000436 <NA>
## 2509 100000437 <NA>
## 2510 100000438 <NA>
## 2511 100000440 <NA>
## 2512 100000442 <NA>
## 2513 100000443 <NA>
## 2514 100000444 <NA>
## 2515 100000445 <NA>
## 2516 100000446 <NA>
## 2517 100000447 <NA>
## 2518 100000448 <NA>
## 2519 100000455 <NA>
## 2520 100000458 <NA>
## 2521 100000459 <NA>
## 2522 100000460 <NA>
## 2523 100000461 <NA>
## 2524 100000466 <NA>
## 2525 100000469 <NA>
## 2526 100000472 <NA>
## 2527 100000473 <NA>
## 2528 100000476 <NA>
## 2529 100000483 <NA>
## 2530 100000484 <NA>
## 2531 100000486 <NA>
## 2532 100000487 <NA>
## 2533 100000488 <NA>
## 2534 100000489 <NA>
## 2535 100000492 <NA>
## 2536 100000493 <NA>
## 2537 100000496 <NA>
## 2538 100000497 <NA>
## 2539 100000498 <NA>
## 2540 100000499 <NA>
## 2541 100000504 <NA>
## 2542 100000505 <NA>
## 2543 100000506 <NA>
## 2544 100000507 <NA>
## 2545 100000508 <NA>
## 2546 100000509 <NA>
## 2547 100000510 <NA>
## 2548 100000513 <NA>
## 2549 100000519 <NA>
## 2550 100000520 <NA>
## 2551 100000522 <NA>
## 2552 100000525 <NA>
## 2553 100000526 <NA>
## 2554 100000527 <NA>
## 2555 100000530 <NA>
## 2556 100000533 <NA>
## 2557 100000534 <NA>
## 2558 100000536 <NA>
## 2559 100000537 <NA>
## 2560 100000540 <NA>
## 2561 100000542 <NA>
## 2562 100000543 <NA>
## 2563 100000546 <NA>
## 2564 100000547 <NA>
## 2565 100000549 <NA>
## 2566 100000551 <NA>
## 2567 100000552 <NA>
## 2568 100000553 <NA>
## 2569 100000555 <NA>
## 2570 100000557 <NA>
## 2571 100000563 <NA>
## 2572 100000566 <NA>
## 2573 100000568 <NA>
## 2574 100000569 <NA>
## 2575 100000571 <NA>
## 2576 100000572 <NA>
## 2577 100000573 <NA>
## 2578 100000578 <NA>
## 2579 100000579 <NA>
## 2580 100000582 <NA>
## 2581 100000585 <NA>
## 2582 100000587 <NA>
## 2583 100000588 <NA>
## 2584 100000592 <NA>
## 2585 100000597 <NA>
## 2586 100000598 <NA>
## 2587 100000601 <NA>
## 2588 100000603 <NA>
## 2589 100000604 <NA>
## 2590 100000605 <NA>
## 2591 100000606 <NA>
## 2592 100000610 <NA>
## 2593 100000611 <NA>
## 2594 100000612 <NA>
## 2595 100000614 <NA>
## 2596 100000616 <NA>
## 2597 100000618 <NA>
## 2598 100000619 <NA>
## 2599 100000620 <NA>
## 2600 100000624 <NA>
## 2601 100000625 <NA>
## 2602 100000627 <NA>
## 2603 100000628 <NA>
## 2604 100000629 <NA>
## 2605 100000630 <NA>
## 2606 100000631 <NA>
## 2607 100000633 <NA>
## 2608 100000636 <NA>
## 2609 100000640 <NA>
## 2610 100000643 <NA>
## 2611 100000644 <NA>
## 2612 100000647 <NA>
## 2613 100000649 <NA>
## 2614 100000651 <NA>
## 2615 100000653 <NA>
## 2616 100000654 <NA>
## 2617 100000656 <NA>
## 2618 100000657 <NA>
## 2619 100000659 <NA>
## 2620 100000660 <NA>
## 2621 100000661 <NA>
## 2622 100000665 <NA>
## 2623 100000667 <NA>
## 2624 100000668 <NA>
## 2625 100000669 <NA>
## 2626 100000670 <NA>
## 2627 100000672 <NA>
## 2628 100000673 <NA>
## 2629 100000675 <NA>
## 2630 100000676 <NA>
## 2631 100000679 <NA>
## 2632 100000682 <NA>
## 2633 100000683 <NA>
## 2634 100000684 <NA>
## 2635 100000685 <NA>
## 2636 100000686 <NA>
## 2637 100000687 <NA>
## 2638 100000689 <NA>
## 2639 100000690 <NA>
## 2640 100000691 <NA>
## 2641 100000694 <NA>
## 2642 100000695 <NA>
## 2643 100000696 <NA>
## 2644 100000697 <NA>
## 2645 100000699 <NA>
## 2646 100000700 <NA>
## 2647 100000702 <NA>
## 2648 100000703 <NA>
## 2649 100000704 <NA>
## 2650 100000705 <NA>
## 2651 100000706 <NA>
## 2652 100000707 <NA>
## 2653 100000709 <NA>
## 2654 100000710 <NA>
## 2655 100000711 <NA>
## 2656 100000712 <NA>
## 2657 100000713 <NA>
## 2658 100000714 <NA>
## 2659 100000715 <NA>
## 2660 100000716 <NA>
## 2661 100000717 <NA>
## 2662 100000718 <NA>
## 2663 100000719 <NA>
## 2664 100000721 <NA>
## 2665 100000722 <NA>
## 2666 100000723 <NA>
## 2667 100000724 <NA>
## 2668 100000725 <NA>
## 2669 100000726 <NA>
## 2670 100000729 <NA>
## 2671 100000731 <NA>
## 2672 100000732 <NA>
## 2673 100000733 <NA>
## 2674 100000734 <NA>
## 2675 100000737 <NA>
## 2676 100000738 <NA>
## 2677 100000740 <NA>
## 2678 100000741 <NA>
## 2679 100000742 <NA>
## 2680 100000743 <NA>
## 2681 100000746 <NA>
## 2682 100000748 <NA>
## 2683 100000749 <NA>
## 2684 100000757 <NA>
## 2685 100000758 <NA>
## 2686 100000760 <NA>
## 2687 100000761 <NA>
## 2688 100000763 <NA>
## 2689 100000765 <NA>
## 2690 100000766 <NA>
## 2691 100000771 <NA>
## 2692 100000775 <NA>
## 2693 100000777 <NA>
## 2694 100000780 <NA>
## 2695 100000782 <NA>
## 2696 100000783 <NA>
## 2697 100000786 <NA>
## 2698 100000787 <NA>
## 2699 100000788 <NA>
## 2700 100000789 <NA>
## 2701 100000790 <NA>
## 2702 100000792 <NA>
## 2703 100000793 <NA>
## 2704 100000794 <NA>
## 2705 100000795 <NA>
## 2706 100000799 <NA>
## 2707 100000800 <NA>
## 2708 100000801 <NA>
## 2709 100000802 <NA>
## 2710 100000803 <NA>
## 2711 100000805 <NA>
## 2712 100000806 <NA>
## 2713 100000807 <NA>
## 2714 100000809 <NA>
## 2715 100000811 <NA>
## 2716 100000812 <NA>
## 2717 100000813 <NA>
## 2718 100000814 <NA>
## 2719 100000816 <NA>
## 2720 100000817 <NA>
## 2721 100000818 <NA>
## 2722 100000819 <NA>
## 2723 100000820 <NA>
## 2724 100000822 <NA>
## 2725 100000823 <NA>
## 2726 100000824 <NA>
## 2727 100000825 <NA>
## 2728 100000826 <NA>
## 2729 100000828 <NA>
## 2730 100000829 <NA>
## 2731 100000831 <NA>
## 2732 100000832 <NA>
## 2733 100000833 <NA>
## 2734 100000834 <NA>
## 2735 100000835 <NA>
## 2736 100000836 <NA>
## 2737 100000837 <NA>
## 2738 100000843 <NA>
## 2739 100000845 <NA>
## 2740 100000851 <NA>
## 2741 100000852 <NA>
## 2742 100000858 <NA>
## 2743 100000861 <NA>
## 2744 100000864 <NA>
## 2745 100000865 <NA>
## 2746 100000868 <NA>
## 2747 100000869 <NA>
## 2748 100000870 <NA>
## 2749 100000871 <NA>
## 2750 100000872 <NA>
## 2751 100000873 <NA>
## 2752 100000874 <NA>
## 2753 100000875 <NA>
## 2754 100000876 <NA>
## 2755 100000878 <NA>
## 2756 100000880 <NA>
## 2757 100000882 <NA>
## 2758 100000884 <NA>
## 2759 100000885 <NA>
## 2760 100000886 <NA>
## 2761 100000889 <NA>
## 2762 100000890 <NA>
## 2763 100000891 <NA>
## 2764 100000893 <NA>
## 2765 100000894 <NA>
## 2766 100000895 <NA>
## 2767 100000896 <NA>
## 2768 100000897 <NA>
## 2769 100000899 <NA>
## 2770 100000900 <NA>
## 2771 100000901 <NA>
## 2772 100000902 <NA>
## 2773 100000903 <NA>
## 2774 100000904 <NA>
## 2775 100000905 <NA>
## 2776 100000906 <NA>
## 2777 100000908 <NA>
## 2778 100000910 <NA>
## 2779 100000912 <NA>
## 2780 100000913 <NA>
## 2781 100000914 <NA>
## 2782 100000915 <NA>
## 2783 100000917 <NA>
## 2784 100000918 <NA>
## 2785 100000920 <NA>
## 2786 100000921 <NA>
## 2787 100000924 <NA>
## 2788 100000925 <NA>
## 2789 100000926 <NA>
## 2790 100000928 <NA>
## 2791 100000932 <NA>
## 2792 100000933 <NA>
## 2793 100000934 <NA>
## 2794 100000935 <NA>
## 2795 100000936 <NA>
## 2796 100000937 <NA>
## 2797 100000938 <NA>
## 2798 100000940 <NA>
## 2799 100000941 <NA>
## 2800 100000942 <NA>
## 2801 100000944 <NA>
## 2802 100000946 <NA>
## 2803 100000947 <NA>
## 2804 100000949 <NA>
## 2805 100000950 <NA>
## 2806 100000951 <NA>
## 2807 100000952 <NA>
## 2808 100000954 <NA>
## 2809 100000955 <NA>
## 2810 100000961 <NA>
## 2811 100000962 <NA>
## 2812 100000965 <NA>
## 2813 100000966 <NA>
## 2814 100000967 <NA>
## 2815 100000968 <NA>
## 2816 100000969 <NA>
## 2817 100000970 <NA>
## 2818 100000972 <NA>
## 2819 100000973 <NA>
## 2820 100000975 <NA>
## 2821 100000976 <NA>
## 2822 100000979 <NA>
## 2823 100000980 <NA>
## 2824 100000981 <NA>
## 2825 100000982 <NA>
## 2826 100000983 <NA>
## 2827 100000985 <NA>
## 2828 100000986 <NA>
## 2829 100000989 <NA>
## 2830 100000990 <NA>
## 2831 100000991 <NA>
## 2832 100000994 <NA>
## 2833 100000995 <NA>
## 2834 100000996 <NA>
## 2835 100000997 <NA>
## 2836 100000999 <NA>
## 2837 100001000 <NA>
## 2838 100001002 <NA>
## 2839 100001004 <NA>
## 2840 100001005 <NA>
## 2841 100001007 <NA>
## 2842 100001009 <NA>
## 2843 100001010 <NA>
## 2844 100001012 <NA>
## 2845 100001013 <NA>
## 2846 100001014 <NA>
## 2847 100001015 <NA>
## 2848 100001016 <NA>
## 2849 100001017 <NA>
## 2850 100001018 <NA>
## 2851 100001019 <NA>
## 2852 100001020 <NA>
## 2853 100001024 <NA>
## 2854 100001026 <NA>
## 2855 100001028 <NA>
## 2856 100001029 <NA>
## 2857 100001030 <NA>
## 2858 100001035 <NA>
## 2859 100001036 <NA>
## 2860 100001037 <NA>
## 2861 100001039 <NA>
## 2862 100001042 <NA>
## 2863 100001043 <NA>
## 2864 100001046 <NA>
## 2865 100001050 <NA>
## 2866 100001051 <NA>
## 2867 100001053 <NA>
## 2868 100001055 <NA>
## 2869 100001056 <NA>
## 2870 100001058 <NA>
## 2871 100001059 <NA>
## 2872 100001060 <NA>
## 2873 100001061 <NA>
## 2874 100001062 <NA>
## 2875 100001064 <NA>
## 2876 100001065 <NA>
## 2877 100001066 <NA>
## 2878 100001067 <NA>
## 2879 100001068 <NA>
## 2880 100001069 <NA>
## 2881 100001071 <NA>
## 2882 100001072 <NA>
## 2883 100001073 <NA>
## 2884 100001074 <NA>
## 2885 100001075 <NA>
## 2886 100001076 <NA>
## 2887 100001077 <NA>
## 2888 100001078 <NA>
## 2889 100001079 <NA>
## 2890 100001082 <NA>
## 2891 100001083 <NA>
## 2892 100001084 <NA>
## 2893 100001085 <NA>
## 2894 100001086 <NA>
## 2895 100001088 <NA>
## 2896 100001090 <NA>
## 2897 100001091 <NA>
## 2898 100001092 <NA>
## 2899 100001093 <NA>
## 2900 100001095 <NA>
## 2901 100001096 <NA>
## 2902 100001098 <NA>
## 2903 100001099 <NA>
## 2904 100001101 <NA>
## 2905 100001104 <NA>
## 2906 100001105 <NA>
## 2907 100001108 <NA>
## 2908 100001109 <NA>
## 2909 100001111 <NA>
## 2910 100001113 <NA>
## 2911 100001115 <NA>
## 2912 100001116 <NA>
## 2913 100001117 <NA>
## 2914 100001118 <NA>
## 2915 100001120 <NA>
## 2916 100001124 <NA>
## 2917 100001127 <NA>
## 2918 100001131 <NA>
## 2919 100001133 <NA>
## 2920 100001135 <NA>
## 2921 100001138 <NA>
## 2922 100001141 <NA>
## 2923 100001143 <NA>
## 2924 100001146 <NA>
## 2925 100001149 <NA>
## 2926 100001150 <NA>
## 2927 100001151 <NA>
## 2928 100001152 <NA>
## 2929 100001156 <NA>
## 2930 100001157 <NA>
## 2931 100001158 <NA>
## 2932 100001159 <NA>
## 2933 100001161 <NA>
## 2934 100001163 <NA>
## 2935 100001165 <NA>
## 2936 100001166 <NA>
## 2937 100001170 <NA>
## 2938 100001171 <NA>
## 2939 100001172 <NA>
## 2940 100001173 <NA>
## 2941 100001174 <NA>
## 2942 100001175 <NA>
## 2943 100001177 <NA>
## 2944 100001178 <NA>
## 2945 100001179 <NA>
## 2946 100001181 <NA>
## 2947 100001182 <NA>
## 2948 100001183 <NA>
## 2949 100001184 <NA>
## 2950 100001185 <NA>
## 2951 100001186 <NA>
## 2952 100001189 <NA>
## 2953 100001190 <NA>
## 2954 100001191 <NA>
## 2955 100001193 <NA>
## 2956 100001194 <NA>
## 2957 100001195 <NA>
## 2958 100001196 <NA>
## 2959 100001198 <NA>
## 2960 100001199 <NA>
## 2961 100001200 <NA>
## 2962 100001201 <NA>
## 2963 100001203 <NA>
## 2964 100001204 <NA>
## 2965 100001205 <NA>
## 2966 100001206 <NA>
## 2967 100001208 <NA>
## 2968 100001210 <NA>
## 2969 100001211 <NA>
## 2970 100001212 <NA>
## 2971 100001213 <NA>
## 2972 100001214 <NA>
## 2973 100001216 <NA>
## 2974 100001217 <NA>
## 2975 100001218 <NA>
## 2976 100001220 <NA>
## 2977 100001221 <NA>
## 2978 100001222 <NA>
## 2979 100001224 <NA>
## 2980 100001226 <NA>
## 2981 100001227 <NA>
## 2982 100001228 <NA>
## 2983 100001229 <NA>
## 2984 100001231 <NA>
## 2985 100001233 <NA>
## 2986 100001235 <NA>
## 2987 100001236 <NA>
## 2988 100001238 <NA>
## 2989 100001244 <NA>
## 2990 100001245 <NA>
## 2991 100001246 <NA>
## 2992 100001247 <NA>
## 2993 100001249 <NA>
## 2994 100001251 <NA>
## 2995 100001254 <NA>
## 2996 100001256 <NA>
## 2997 100001257 <NA>
## 2998 100001258 <NA>
## 2999 100001260 <NA>
## 3000 100001261 <NA>
## 3001 100001263 <NA>
## 3002 100001264 <NA>
## 3003 100001265 <NA>
## 3004 100001266 <NA>
## 3005 100001268 <NA>
## 3006 100001269 <NA>
## 3007 100001270 <NA>
## 3008 100001272 <NA>
## 3009 100001276 <NA>
## 3010 100001278 <NA>
## 3011 100001280 <NA>
## 3012 100001281 <NA>
## 3013 100001282 <NA>
## 3014 100001283 <NA>
## 3015 100001284 <NA>
## 3016 100001286 <NA>
## 3017 100001287 <NA>
## 3018 100001289 <NA>
## 3019 100001290 <NA>
## 3020 100001291 <NA>
## 3021 100001292 <NA>
## 3022 100001294 <NA>
## 3023 100001296 <NA>
## 3024 100001302 <NA>
## 3025 100001305 <NA>
## 3026 100001306 <NA>
## 3027 100001308 <NA>
## 3028 100001309 <NA>
## 3029 100001312 <NA>
## 3030 100001313 <NA>
## 3031 100001314 <NA>
## 3032 100001315 <NA>
## 3033 100001317 <NA>
## 3034 100001320 <NA>
## 3035 100001321 <NA>
## 3036 100001324 <NA>
## 3037 100001326 <NA>
## 3038 100001327 <NA>
## 3039 100001328 <NA>
## 3040 100001329 <NA>
## 3041 100001330 <NA>
## 3042 100001331 <NA>
## 3043 100001332 <NA>
## 3044 100001333 <NA>
## 3045 100001334 <NA>
## 3046 100001335 <NA>
## 3047 100001336 <NA>
## 3048 100001337 <NA>
## 3049 100001338 <NA>
## 3050 100001343 <NA>
## 3051 100001344 <NA>
## 3052 100001345 <NA>
## 3053 100001346 <NA>
## 3054 100001348 <NA>
## 3055 100001351 <NA>
## 3056 100001352 <NA>
## 3057 100001355 <NA>
## 3058 100001357 <NA>
## 3059 100001358 <NA>
## 3060 100001359 <NA>
## 3061 100001361 <NA>
## 3062 100001362 <NA>
## 3063 100001364 <NA>
## 3064 100001365 <NA>
## 3065 100001366 <NA>
## 3066 100001368 <NA>
## 3067 100001369 <NA>
## 3068 100001370 <NA>
## 3069 100001371 <NA>
## 3070 100001372 <NA>
## 3071 100001374 <NA>
## 3072 100001377 <NA>
## 3073 100001379 <NA>
## 3074 100001380 <NA>
## 3075 100001382 <NA>
## 3076 100001384 <NA>
## 3077 100001385 <NA>
## 3078 100001386 <NA>
## 3079 100001387 <NA>
## 3080 100001388 <NA>
## 3081 100001389 <NA>
## 3082 100001390 <NA>
## 3083 100001392 <NA>
## 3084 100001394 <NA>
## 3085 100001396 <NA>
## 3086 100001397 <NA>
## 3087 100001398 <NA>
## 3088 100001399 <NA>
## 3089 100001400 <NA>
## 3090 100001406 <NA>
## 3091 100001408 <NA>
## 3092 100001409 <NA>
## 3093 100001410 <NA>
## 3094 100001413 <NA>
## 3095 100001415 <NA>
## 3096 100001416 <NA>
## 3097 100001424 <NA>
## 3098 100001426 <NA>
## 3099 100001429 <NA>
## 3100 100001430 <NA>
## 3101 100001431 <NA>
## 3102 100001432 <NA>
## 3103 100001433 <NA>
## 3104 100001437 <NA>
## 3105 100001438 <NA>
## 3106 100001442 <NA>
## 3107 100001446 <NA>
## 3108 100001447 <NA>
## 3109 100001450 <NA>
## 3110 100001451 <NA>
## 3111 100001452 <NA>
## 3112 100001453 <NA>
## 3113 100001454 <NA>
## 3114 100001455 <NA>
## 3115 100001457 <NA>
## 3116 100001458 <NA>
## 3117 100001459 <NA>
## 3118 100001461 <NA>
## 3119 100001462 <NA>
## 3120 100001464 <NA>
## 3121 100001465 <NA>
## 3122 100001466 <NA>
## 3123 100001467 <NA>
## 3124 100001469 <NA>
## 3125 100001471 <NA>
## 3126 100001472 <NA>
## 3127 100001473 <NA>
## 3128 100001475 <NA>
## 3129 100001476 <NA>
## 3130 100001477 <NA>
## 3131 100001478 <NA>
## 3132 100001479 <NA>
## 3133 100001481 <NA>
## 3134 100001482 <NA>
## 3135 100001484 <NA>
## 3136 100001485 <NA>
## 3137 100001486 <NA>
## 3138 100001489 <NA>
## 3139 100001490 <NA>
## 3140 100001492 <NA>
## 3141 100001493 <NA>
## 3142 100001496 <NA>
## 3143 100001498 <NA>
## 3144 100001499 <NA>
## 3145 100001500 <NA>
## 3146 100001502 <NA>
## 3147 100001504 <NA>
## 3148 100001505 <NA>
## 3149 100001507 <NA>
## 3150 100001508 <NA>
## 3151 100001509 <NA>
## 3152 100001510 <NA>
## 3153 100001511 <NA>
## 3154 100001513 <NA>
## 3155 100001514 <NA>
## 3156 100001515 <NA>
## 3157 100001516 <NA>
## 3158 100001519 <NA>
## 3159 100001520 <NA>
## 3160 100001521 <NA>
## 3161 100001527 <NA>
## 3162 100001531 <NA>
## 3163 100001532 <NA>
## 3164 100001533 <NA>
## 3165 100001535 <NA>
## 3166 100001536 <NA>
## 3167 100001537 <NA>
## 3168 100001539 <NA>
## 3169 100001542 <NA>
## 3170 100001543 <NA>
## 3171 100001544 <NA>
## 3172 100001545 <NA>
## 3173 100001546 <NA>
## 3174 100001548 <NA>
## 3175 100001550 <NA>
## 3176 100001552 <NA>
## 3177 100001553 <NA>
## 3178 100001555 <NA>
## 3179 100001556 <NA>
## 3180 100001557 <NA>
## 3181 100001558 <NA>
## 3182 100001559 <NA>
## 3183 100001560 <NA>
## 3184 100001561 <NA>
## 3185 100001562 <NA>
## 3186 100001563 <NA>
## 3187 100001567 <NA>
## 3188 100001568 <NA>
## 3189 100001570 <NA>
## 3190 100001571 <NA>
## 3191 100001577 <NA>
## 3192 100001578 <NA>
## 3193 100001579 <NA>
## 3194 100001580 <NA>
## 3195 100001581 <NA>
## 3196 100001582 <NA>
## 3197 100001583 <NA>
## 3198 100001584 <NA>
## 3199 100001585 <NA>
## 3200 100001587 <NA>
## 3201 100001588 <NA>
## 3202 100001589 <NA>
## 3203 100001590 <NA>
## 3204 100001591 <NA>
## 3205 100001592 <NA>
## 3206 100001593 <NA>
## 3207 100001595 <NA>
## 3208 100001596 <NA>
## 3209 100001601 <NA>
## 3210 100001605 <NA>
## 3211 100001606 <NA>
## 3212 100001607 <NA>
## 3213 100001608 <NA>
## 3214 100001609 <NA>
## 3215 100001610 <NA>
## 3216 100001611 <NA>
## 3217 100001612 <NA>
## 3218 100001613 <NA>
## 3219 100001614 <NA>
## 3220 100001616 <NA>
## 3221 100001617 <NA>
## 3222 100001618 <NA>
## 3223 100001619 <NA>
## 3224 100001621 <NA>
## 3225 100001622 <NA>
## 3226 100001623 <NA>
## 3227 100001625 <NA>
## 3228 100001630 <NA>
## 3229 100001632 <NA>
## 3230 100001633 <NA>
## 3231 100001634 <NA>
## 3232 100001636 <NA>
## 3233 100001637 <NA>
## 3234 100001639 <NA>
## 3235 100001640 <NA>
## 3236 100001641 <NA>
## 3237 100001643 <NA>
## 3238 100001645 <NA>
## 3239 100001646 <NA>
## 3240 100001647 <NA>
## 3241 100001648 <NA>
## 3242 100001653 <NA>
## 3243 100001658 <NA>
## 3244 100001659 <NA>
## 3245 100001660 <NA>
## 3246 100001661 <NA>
## 3247 100001662 <NA>
## 3248 100001664 <NA>
## 3249 100001666 <NA>
## 3250 100001667 <NA>
## 3251 100001670 <NA>
## 3252 100001671 <NA>
## 3253 100001673 <NA>
## 3254 100001675 <NA>
## 3255 100001676 <NA>
## 3256 100001684 <NA>
## 3257 100001685 <NA>
## 3258 100001686 <NA>
## 3259 100001687 <NA>
## 3260 100001693 <NA>
## 3261 100001694 <NA>
## 3262 100001695 <NA>
## 3263 100001697 <NA>
## 3264 100001698 <NA>
## 3265 100001699 <NA>
## 3266 100001702 <NA>
## 3267 100001703 <NA>
## 3268 100001704 <NA>
## 3269 100001706 <NA>
## 3270 100001710 <NA>
## 3271 100001711 <NA>
## 3272 100001712 <NA>
## 3273 100001715 <NA>
## 3274 100001718 <NA>
## 3275 100001719 <NA>
## 3276 100001721 <NA>
## 3277 100001723 <NA>
## 3278 100001724 <NA>
## 3279 100001725 <NA>
## 3280 100001727 <NA>
## 3281 100001729 <NA>
## 3282 100001730 <NA>
## 3283 100001731 <NA>
## 3284 100001732 <NA>
## 3285 100001736 <NA>
## 3286 100001737 <NA>
## 3287 100001738 <NA>
## 3288 100001739 <NA>
## 3289 100001741 <NA>
## 3290 100001742 <NA>
## 3291 100001743 <NA>
## 3292 100001745 <NA>
## 3293 100001747 <NA>
## 3294 100001750 <NA>
## 3295 100001751 <NA>
## 3296 100001752 <NA>
## 3297 100001753 <NA>
## 3298 100001754 <NA>
## 3299 100001756 <NA>
## 3300 100001757 <NA>
## 3301 100001759 <NA>
## 3302 100001761 <NA>
## 3303 100001762 <NA>
## 3304 100001765 <NA>
## 3305 100001766 <NA>
## 3306 100001769 <NA>
## 3307 100001775 <NA>
## 3308 100001777 <NA>
## 3309 100001778 <NA>
## 3310 100001779 <NA>
## 3311 100001780 <NA>
## 3312 100001782 <NA>
## 3313 100001784 <NA>
## 3314 100001785 <NA>
## 3315 100001787 <NA>
## 3316 100001788 <NA>
## 3317 100001789 <NA>
## 3318 100001792 <NA>
## 3319 100001794 <NA>
## 3320 100001799 <NA>
## 3321 100001802 <NA>
## 3322 100001803 <NA>
## 3323 100001806 <NA>
## 3324 100001808 <NA>
## 3325 100001809 <NA>
## 3326 100001810 <NA>
## 3327 100001811 <NA>
## 3328 100001812 <NA>
## 3329 100001813 <NA>
## 3330 100001814 <NA>
## 3331 100001816 <NA>
## 3332 100001821 <NA>
## 3333 100001822 <NA>
## 3334 100001823 <NA>
## 3335 100001824 <NA>
## 3336 100001825 <NA>
## 3337 100001826 <NA>
## 3338 100001828 <NA>
## 3339 100001829 <NA>
## 3340 100001831 <NA>
## 3341 100001833 <NA>
## 3342 100001835 <NA>
## 3343 100001836 <NA>
## 3344 100001837 <NA>
## 3345 100001838 <NA>
## 3346 100001840 <NA>
## 3347 100001841 <NA>
## 3348 100001843 <NA>
## 3349 100001844 <NA>
## 3350 100001846 <NA>
## 3351 100001847 <NA>
## 3352 100001848 <NA>
## 3353 100001851 <NA>
## 3354 100001853 <NA>
## 3355 100001855 <NA>
## 3356 100001857 <NA>
## 3357 100001858 <NA>
## 3358 100001859 <NA>
## 3359 100001860 <NA>
## 3360 100001861 <NA>
## 3361 100001863 <NA>
## 3362 100001864 <NA>
## 3363 100001865 <NA>
## 3364 100001866 <NA>
## 3365 100001867 <NA>
## 3366 100001868 <NA>
## 3367 100001870 <NA>
## 3368 100001872 <NA>
## 3369 100001873 <NA>
## 3370 100001875 <NA>
## 3371 100001876 <NA>
## 3372 100001878 <NA>
## 3373 100001879 <NA>
## 3374 100001882 <NA>
## 3375 100001884 <NA>
## 3376 100001886 <NA>
## 3377 100001887 <NA>
## 3378 100001889 <NA>
## 3379 100001891 <NA>
## 3380 100001894 <NA>
## 3381 100001896 <NA>
## 3382 100001898 <NA>
## 3383 100001899 <NA>
## 3384 100001900 <NA>
## 3385 100001901 <NA>
## 3386 100001902 <NA>
## 3387 100001903 <NA>
## 3388 100001906 <NA>
## 3389 100001907 <NA>
## 3390 100001908 <NA>
## 3391 100001910 <NA>
## 3392 100001911 <NA>
## 3393 100001913 <NA>
## 3394 100001917 <NA>
## 3395 100001920 <NA>
## 3396 100001922 <NA>
## 3397 100001925 <NA>
## 3398 100001926 <NA>
## 3399 100001927 <NA>
## 3400 100001928 <NA>
## 3401 100001929 <NA>
## 3402 100001932 <NA>
## 3403 100001933 <NA>
## 3404 100001935 <NA>
## 3405 100001937 <NA>
## 3406 100001938 <NA>
## 3407 100001940 <NA>
## 3408 100001941 <NA>
## 3409 100001942 <NA>
## 3410 100001943 <NA>
## 3411 100001944 <NA>
## 3412 100001945 <NA>
## 3413 100001946 <NA>
## 3414 100001947 <NA>
## 3415 100001949 <NA>
## 3416 100001950 <NA>
## 3417 100001952 <NA>
## 3418 100001954 <NA>
## 3419 100001958 <NA>
## 3420 100001959 <NA>
## 3421 100001960 <NA>
## 3422 100001962 <NA>
## 3423 100001964 <NA>
## 3424 100001965 <NA>
## 3425 100001966 <NA>
## 3426 100001968 <NA>
## 3427 100001970 <NA>
## 3428 100001971 <NA>
## 3429 100001975 <NA>
## 3430 100001976 <NA>
## 3431 100001977 <NA>
## 3432 100001978 <NA>
## 3433 100001980 <NA>
## 3434 100001982 <NA>
## 3435 100001983 <NA>
## 3436 100001984 <NA>
## 3437 100001985 <NA>
## 3438 100001987 <NA>
## 3439 100001988 <NA>
## 3440 100001989 <NA>
## 3441 100001990 <NA>
## 3442 100001991 <NA>
## 3443 100001994 <NA>
## 3444 100001997 <NA>
## 3445 100001998 <NA>
## 3446 100002001 <NA>
## 3447 100002002 <NA>
## 3448 100002006 <NA>
## 3449 100002009 <NA>
## 3450 100002010 <NA>
## 3451 100002013 <NA>
## 3452 100002014 <NA>
## 3453 100002015 <NA>
## 3454 100002016 <NA>
## 3455 100002017 <NA>
## 3456 100002018 <NA>
## 3457 100002020 <NA>
## 3458 100002021 <NA>
## 3459 100002022 <NA>
## 3460 100002023 <NA>
## 3461 100002027 <NA>
## 3462 100002028 <NA>
## 3463 100002029 <NA>
## 3464 100002031 <NA>
## 3465 100002032 <NA>
## 3466 100002033 <NA>
## 3467 100002035 <NA>
## 3468 100002036 <NA>
## 3469 100002037 <NA>
## 3470 100002038 <NA>
## 3471 100002039 <NA>
## 3472 100002040 <NA>
## 3473 100002042 <NA>
## 3474 100002044 <NA>
## 3475 100002048 <NA>
## 3476 100002053 <NA>
## 3477 100002054 <NA>
## 3478 100002055 <NA>
## 3479 100002056 <NA>
## 3480 100002057 <NA>
## 3481 100002058 <NA>
## 3482 100002060 <NA>
## 3483 100002063 <NA>
## 3484 100002064 <NA>
## 3485 100002065 <NA>
## 3486 100002070 <NA>
## 3487 100002071 <NA>
## 3488 100002073 <NA>
## 3489 100002074 <NA>
## 3490 100002078 <NA>
## 3491 100002084 <NA>
## 3492 100002086 <NA>
## 3493 100002087 <NA>
## 3494 100002088 <NA>
## 3495 100002091 <NA>
## 3496 100002092 <NA>
## 3497 100002093 <NA>
## 3498 100002094 <NA>
## 3499 100002096 <NA>
## 3500 100002097 <NA>
## 3501 100002099 <NA>
## 3502 100002101 <NA>
## 3503 100002102 <NA>
## 3504 100002103 <NA>
## 3505 100002104 <NA>
## 3506 100002108 <NA>
## 3507 100002109 <NA>
## 3508 100002110 <NA>
## 3509 100002111 <NA>
## 3510 100002114 <NA>
## 3511 100002115 <NA>
## 3512 100002116 <NA>
## 3513 100002119 <NA>
## 3514 100002120 <NA>
## 3515 100002124 <NA>
## 3516 100002126 <NA>
## 3517 100002127 <NA>
## 3518 100002128 <NA>
## 3519 100002129 <NA>
## 3520 100002130 <NA>
## 3521 100002133 <NA>
## 3522 100002134 <NA>
## 3523 100002135 <NA>
## 3524 100002138 <NA>
## 3525 100002139 <NA>
## 3526 100002144 <NA>
## 3527 100002145 <NA>
## 3528 100002147 <NA>
## 3529 100002148 <NA>
## 3530 100002149 <NA>
## 3531 100002150 <NA>
## 3532 100002151 <NA>
## 3533 100002153 <NA>
## 3534 100002157 <NA>
## 3535 100002158 <NA>
## 3536 100002160 <NA>
## 3537 100002163 <NA>
## 3538 100002165 <NA>
## 3539 100002167 <NA>
## 3540 100002168 <NA>
## 3541 100002169 <NA>
## 3542 100002170 <NA>
## 3543 100002171 <NA>
## 3544 100002172 <NA>
## 3545 100002173 <NA>
## 3546 100002174 <NA>
## 3547 100002177 <NA>
## 3548 100002179 <NA>
## 3549 100002180 <NA>
## 3550 100002181 <NA>
## 3551 100002182 <NA>
## 3552 100002183 <NA>
## 3553 100002184 <NA>
## 3554 100002185 <NA>
## 3555 100002189 <NA>
## 3556 100002190 <NA>
## 3557 100002191 <NA>
## 3558 100002192 <NA>
## 3559 100002193 <NA>
## 3560 100002197 <NA>
## 3561 100002198 <NA>
## 3562 100002201 <NA>
## 3563 100002209 <NA>
## 3564 100002211 <NA>
## 3565 100002212 <NA>
## 3566 100002214 <NA>
## 3567 100002215 <NA>
## 3568 100002216 <NA>
## 3569 100002217 <NA>
## 3570 100002218 <NA>
## 3571 100002219 <NA>
## 3572 100002220 <NA>
## 3573 100002223 <NA>
## 3574 100002224 <NA>
## 3575 100002225 <NA>
## 3576 100002230 <NA>
## 3577 100002232 <NA>
## 3578 100002234 <NA>
## 3579 100002235 <NA>
## 3580 100002236 <NA>
## 3581 100002237 <NA>
## 3582 100002238 <NA>
## 3583 100002239 <NA>
## 3584 100002240 <NA>
## 3585 100002242 <NA>
## 3586 100002246 <NA>
## 3587 100002247 <NA>
## 3588 100002248 <NA>
## 3589 100002255 <NA>
## 3590 100002257 <NA>
## 3591 100002259 <NA>
## 3592 100002260 <NA>
## 3593 100002262 <NA>
## 3594 100002263 <NA>
## 3595 100002266 <NA>
## 3596 100002267 <NA>
## 3597 100002268 <NA>
## 3598 100002271 <NA>
## 3599 100002274 <NA>
## 3600 100002277 <NA>
## 3601 100002279 <NA>
## 3602 100002281 <NA>
## 3603 100002283 <NA>
## 3604 100002284 <NA>
## 3605 100002287 <NA>
## 3606 100002288 <NA>
## 3607 100002290 <NA>
## 3608 100002291 <NA>
## 3609 100002292 <NA>
## 3610 100002294 <NA>
## 3611 100002296 <NA>
## 3612 100002297 <NA>
## 3613 100002298 <NA>
## 3614 100002301 <NA>
## 3615 100002303 <NA>
## 3616 100002304 <NA>
## 3617 100002308 <NA>
## 3618 100002309 <NA>
## 3619 100002311 <NA>
## 3620 100002312 <NA>
## 3621 100002314 <NA>
## 3622 100002315 <NA>
## 3623 100002316 <NA>
## 3624 100002317 <NA>
## 3625 100002318 <NA>
## 3626 100002321 <NA>
## 3627 100002322 <NA>
## 3628 100002323 <NA>
## 3629 100002324 <NA>
## 3630 100002326 <NA>
## 3631 100002327 <NA>
## 3632 100002329 <NA>
## 3633 100002330 <NA>
## 3634 100002331 <NA>
## 3635 100002332 <NA>
## 3636 100002333 <NA>
## 3637 100002335 <NA>
## 3638 100002337 <NA>
## 3639 100002340 <NA>
## 3640 100002342 <NA>
## 3641 100002343 <NA>
## 3642 100002344 <NA>
## 3643 100002346 <NA>
## 3644 100002349 <NA>
## 3645 100002350 <NA>
## 3646 100002352 <NA>
## 3647 100002353 <NA>
## 3648 100002355 <NA>
## 3649 100002359 <NA>
## 3650 100002362 <NA>
## 3651 100002365 <NA>
## 3652 100002373 <NA>
## 3653 100002375 <NA>
## 3654 100002376 <NA>
## 3655 100002377 <NA>
## 3656 100002378 <NA>
## 3657 100002382 <NA>
## 3658 100002384 <NA>
## 3659 100002388 <NA>
## 3660 100002389 <NA>
## 3661 100002391 <NA>
## 3662 100002392 <NA>
## 3663 100002394 <NA>
## 3664 100002395 <NA>
## 3665 100002397 <NA>
## 3666 100002399 <NA>
## 3667 100002401 <NA>
## 3668 100002402 <NA>
## 3669 100002403 <NA>
## 3670 100002404 <NA>
## 3671 100002405 <NA>
## 3672 100002406 <NA>
## 3673 100002409 <NA>
## 3674 100002411 <NA>
## 3675 100002413 <NA>
## 3676 100002414 <NA>
## 3677 100002415 <NA>
## 3678 100002416 <NA>
## 3679 100002417 <NA>
## 3680 100002419 <NA>
## 3681 100002421 <NA>
## 3682 100002423 <NA>
## 3683 100002426 <NA>
## 3684 100002427 <NA>
## 3685 100002428 <NA>
## 3686 100002429 <NA>
## 3687 100002431 <NA>
## 3688 100002432 <NA>
## 3689 100002434 <NA>
## 3690 100002435 <NA>
## 3691 100002436 <NA>
## 3692 100002437 <NA>
## 3693 100002443 <NA>
## 3694 100002445 <NA>
## 3695 100002446 <NA>
## 3696 100002447 <NA>
## 3697 100002448 <NA>
## 3698 100002449 <NA>
## 3699 100002450 <NA>
## 3700 100002451 <NA>
## 3701 100002454 <NA>
## 3702 100002456 <NA>
## 3703 100002458 <NA>
## 3704 100002459 <NA>
## 3705 100002461 <NA>
## 3706 100002463 <NA>
## 3707 100002464 <NA>
## 3708 100002465 <NA>
## 3709 100002466 <NA>
## 3710 100002469 <NA>
## 3711 100002470 <NA>
## 3712 100002471 <NA>
## 3713 100002472 <NA>
## 3714 100002473 <NA>
## 3715 100002475 <NA>
## 3716 100002477 <NA>
## 3717 100002480 <NA>
## 3718 100002481 <NA>
## 3719 100002482 <NA>
## 3720 100002483 <NA>
## 3721 100002485 <NA>
## 3722 100002487 <NA>
## 3723 100002488 <NA>
## 3724 100002489 <NA>
## 3725 100002491 <NA>
## 3726 100002492 <NA>
## 3727 100002497 <NA>
## 3728 100002498 <NA>
## 3729 100002502 <NA>
## 3730 100002503 <NA>
## 3731 100002506 <NA>
## 3732 100002508 <NA>
## 3733 100002509 <NA>
## 3734 100002510 <NA>
## 3735 100002512 <NA>
## 3736 100002514 <NA>
## 3737 100002515 <NA>
## 3738 100002517 <NA>
## 3739 100002519 <NA>
## 3740 100002520 <NA>
## 3741 100002521 <NA>
## 3742 100002522 <NA>
## 3743 100002527 <NA>
## 3744 100002528 <NA>
## 3745 100002529 <NA>
## 3746 100002531 <NA>
## 3747 100002532 <NA>
## 3748 100002533 <NA>
## 3749 100002534 <NA>
## 3750 100002535 <NA>
## 3751 100002536 <NA>
## 3752 100002537 <NA>
## 3753 100002538 <NA>
## 3754 100002539 <NA>
## 3755 100002544 <NA>
## 3756 100002545 <NA>
## 3757 100002547 <NA>
## 3758 100002549 <NA>
## 3759 100002550 <NA>
## 3760 100002551 <NA>
## 3761 100002552 <NA>
## 3762 100002553 <NA>
## 3763 100002558 <NA>
## 3764 100002562 <NA>
## 3765 100002563 <NA>
## 3766 100002565 <NA>
## 3767 100002566 <NA>
## 3768 100002567 <NA>
## 3769 100002568 <NA>
## 3770 100002569 <NA>
## 3771 100002571 <NA>
## 3772 100002575 <NA>
## 3773 100002578 <NA>
## 3774 100002580 <NA>
## 3775 100002581 <NA>
## 3776 100002582 <NA>
## 3777 100002586 <NA>
## 3778 100002587 <NA>
## 3779 100002589 <NA>
## 3780 100002591 <NA>
## 3781 100002592 <NA>
## 3782 100002593 <NA>
## 3783 100002596 <NA>
## 3784 100002597 <NA>
## 3785 100002598 <NA>
## 3786 100002600 <NA>
## 3787 100002601 <NA>
## 3788 100002603 <NA>
## 3789 100002607 <NA>
## 3790 100002608 <NA>
## 3791 100002609 <NA>
## 3792 100002610 <NA>
## 3793 100002611 <NA>
## 3794 100002612 <NA>
## 3795 100002615 <NA>
## 3796 100002616 <NA>
## 3797 100002619 <NA>
## 3798 100002621 <NA>
## 3799 100002622 <NA>
## 3800 100002625 <NA>
## 3801 100002627 <NA>
## 3802 100002628 <NA>
## 3803 100002629 <NA>
## 3804 100002635 <NA>
## 3805 100002637 <NA>
## 3806 100002639 <NA>
## 3807 100002640 <NA>
## 3808 100002641 <NA>
## 3809 100002642 <NA>
## 3810 100002643 <NA>
## 3811 100002644 <NA>
## 3812 100002646 <NA>
## 3813 100002648 <NA>
## 3814 100002649 <NA>
## 3815 100002652 <NA>
## 3816 100002653 <NA>
## 3817 100002654 <NA>
## 3818 100002657 <NA>
## 3819 100002658 <NA>
## 3820 100002659 <NA>
## 3821 100002662 <NA>
## 3822 100002663 <NA>
## 3823 100002664 <NA>
## 3824 100002665 <NA>
## 3825 100002667 <NA>
## 3826 100002669 <NA>
## 3827 100002670 <NA>
## 3828 100002671 <NA>
## 3829 100002675 <NA>
## 3830 100002677 <NA>
## 3831 100002678 <NA>
## 3832 100002679 <NA>
## 3833 100002682 <NA>
## 3834 100002683 <NA>
## 3835 100002684 <NA>
## 3836 100002685 <NA>
## 3837 100002688 <NA>
## 3838 100002689 <NA>
## 3839 100002690 <NA>
## 3840 100002691 <NA>
## 3841 100002693 <NA>
## 3842 100002694 <NA>
## 3843 100002695 <NA>
## 3844 100002697 <NA>
## 3845 100002698 <NA>
## 3846 100002699 <NA>
## 3847 100002700 <NA>
## 3848 100002701 <NA>
## 3849 100002703 <NA>
## 3850 100002706 <NA>
## 3851 100002707 <NA>
## 3852 100002708 <NA>
## 3853 100002709 <NA>
## 3854 100002711 <NA>
## 3855 100002713 <NA>
## 3856 100002714 <NA>
## 3857 100002718 <NA>
## 3858 100002719 <NA>
## 3859 100002720 <NA>
## 3860 100002724 <NA>
## 3861 100002725 <NA>
## 3862 100002726 <NA>
## 3863 100002730 <NA>
## 3864 100002731 <NA>
## 3865 100002733 <NA>
## 3866 100002734 <NA>
## 3867 100002736 <NA>
## 3868 100002737 <NA>
## 3869 100002738 <NA>
## 3870 100002739 <NA>
## 3871 100002740 <NA>
## 3872 100002741 <NA>
## 3873 100002742 <NA>
## 3874 100002744 <NA>
## 3875 100002746 <NA>
## 3876 100002747 <NA>
## 3877 100002748 <NA>
## 3878 100002750 <NA>
## 3879 100002751 <NA>
## 3880 100002753 <NA>
## 3881 100002754 <NA>
## 3882 100002755 <NA>
## 3883 100002757 <NA>
## 3884 100002758 <NA>
## 3885 100002759 <NA>
## 3886 100002761 <NA>
## 3887 100002763 <NA>
## 3888 100002765 <NA>
## 3889 100002766 <NA>
## 3890 100002767 <NA>
## 3891 100002768 <NA>
## 3892 100002769 <NA>
## 3893 100002770 <NA>
## 3894 100002773 <NA>
## 3895 100002775 <NA>
## 3896 100002778 <NA>
## 3897 100002781 <NA>
## 3898 100002782 <NA>
## 3899 100002783 <NA>
## 3900 100002784 <NA>
## 3901 100002786 <NA>
## 3902 100002788 <NA>
## 3903 100002789 <NA>
## 3904 100002791 <NA>
## 3905 100002792 <NA>
## 3906 100002793 <NA>
## 3907 100002795 <NA>
## 3908 100002796 <NA>
## 3909 100002798 <NA>
## 3910 100002803 <NA>
## 3911 100002806 <NA>
## 3912 100002807 <NA>
## 3913 100002809 <NA>
## 3914 100002810 <NA>
## 3915 100002812 <NA>
## 3916 100002813 <NA>
## 3917 100002814 <NA>
## 3918 100002818 <NA>
## 3919 100002820 <NA>
## 3920 100002821 <NA>
## 3921 100002822 <NA>
## 3922 100002825 <NA>
## 3923 100002828 <NA>
## 3924 100002829 <NA>
## 3925 100002830 <NA>
## 3926 100002835 <NA>
## 3927 100002837 <NA>
## 3928 100002839 <NA>
## 3929 100002841 <NA>
## 3930 100002842 <NA>
## 3931 100002843 <NA>
## 3932 100002844 <NA>
## 3933 100002846 <NA>
## 3934 100002847 <NA>
## 3935 100002849 <NA>
## 3936 100002851 <NA>
## 3937 100002854 <NA>
## 3938 100002855 <NA>
## 3939 100002856 <NA>
## 3940 100002858 <NA>
## 3941 100002860 <NA>
## 3942 100002861 <NA>
## 3943 100002862 <NA>
## 3944 100002864 <NA>
## 3945 100002867 <NA>
## 3946 100002870 <NA>
## 3947 100002871 <NA>
## 3948 100002872 <NA>
## 3949 100002875 <NA>
## 3950 100002876 <NA>
## 3951 100002877 <NA>
## 3952 100002879 <NA>
## 3953 100002880 <NA>
## 3954 100002881 <NA>
## 3955 100002882 <NA>
## 3956 100002883 <NA>
## 3957 100002884 <NA>
## 3958 100002885 <NA>
## 3959 100002886 <NA>
## 3960 100002887 <NA>
## 3961 100002888 <NA>
## 3962 100002890 <NA>
## 3963 100002891 <NA>
## 3964 100002892 <NA>
## 3965 100002894 <NA>
## 3966 100002895 <NA>
## 3967 100002896 <NA>
## 3968 100002898 <NA>
## 3969 100002899 <NA>
## 3970 100002900 <NA>
## 3971 100002903 <NA>
## 3972 100002904 <NA>
## 3973 100002905 <NA>
## 3974 100002907 <NA>
## 3975 100002909 <NA>
## 3976 100002910 <NA>
## 3977 100002911 <NA>
## 3978 100002915 <NA>
## 3979 100002916 <NA>
## 3980 100002918 <NA>
## 3981 100002919 <NA>
## 3982 100002922 <NA>
## 3983 100002925 <NA>
## 3984 100002926 <NA>
## 3985 100002928 <NA>
## 3986 100002929 <NA>
## 3987 100002931 <NA>
## 3988 100002932 <NA>
## 3989 100002933 <NA>
## 3990 100002938 <NA>
## 3991 100002939 <NA>
## 3992 100002940 <NA>
## 3993 100002942 <NA>
## 3994 100002943 <NA>
## 3995 100002945 <NA>
## 3996 100002947 <NA>
## 3997 100002948 <NA>
## 3998 100002949 <NA>
## 3999 100002951 <NA>
## 4000 100002952 <NA>
## 4001 100002954 <NA>
## 4002 100002956 <NA>
## 4003 100002957 <NA>
## 4004 100002958 <NA>
## 4005 100002959 <NA>
## 4006 100002960 <NA>
## 4007 100002966 <NA>
## 4008 100002967 <NA>
## 4009 100002968 <NA>
## 4010 100002969 <NA>
## 4011 100002971 <NA>
## 4012 100002973 <NA>
## 4013 100002975 <NA>
## 4014 100002977 <NA>
## 4015 100002978 <NA>
## 4016 100002979 <NA>
## 4017 100002981 <NA>
## 4018 100002982 <NA>
## 4019 100002983 <NA>
## 4020 100002985 <NA>
## 4021 100002988 <NA>
## 4022 100002989 <NA>
## 4023 100002990 <NA>
## 4024 100002993 <NA>
## 4025 100002994 <NA>
## 4026 100002995 <NA>
## 4027 100002996 <NA>
## 4028 100002997 <NA>
## 4029 100002999 <NA>
## 4030 100003006 <NA>
## 4031 100003007 <NA>
## 4032 100003008 <NA>
## 4033 100003009 <NA>
## 4034 100003011 <NA>
## 4035 100003012 <NA>
## 4036 100003016 <NA>
## 4037 100003021 <NA>
## 4038 100003023 <NA>
## 4039 100003024 <NA>
## 4040 100003026 <NA>
## 4041 100003027 <NA>
## 4042 100003028 <NA>
## 4043 100003029 <NA>
## 4044 100003030 <NA>
## 4045 100003032 <NA>
## 4046 100003033 <NA>
## 4047 100003034 <NA>
## 4048 100003035 <NA>
## 4049 100003037 <NA>
## 4050 100003039 <NA>
## 4051 100003040 <NA>
## 4052 100003043 <NA>
## 4053 100003048 <NA>
## 4054 100003049 <NA>
## 4055 100003050 <NA>
## 4056 100003051 <NA>
## 4057 100003053 <NA>
## 4058 100003055 <NA>
## 4059 100003057 <NA>
## 4060 100003059 <NA>
## 4061 100003060 <NA>
## 4062 100003061 <NA>
## 4063 100003062 <NA>
## 4064 100003063 <NA>
## 4065 100003065 <NA>
## 4066 100003066 <NA>
## 4067 100003067 <NA>
## 4068 100003068 <NA>
## 4069 100003070 <NA>
## 4070 100003080 <NA>
## 4071 100003081 <NA>
## 4072 100003082 <NA>
## 4073 100003083 <NA>
## 4074 100003085 <NA>
## 4075 100003086 <NA>
## 4076 100003089 <NA>
## 4077 100003091 <NA>
## 4078 100003095 <NA>
## 4079 100003096 <NA>
## 4080 100003097 <NA>
## 4081 100003100 <NA>
## 4082 100003102 <NA>
## 4083 100003104 <NA>
## 4084 100003105 <NA>
## 4085 100003106 <NA>
## 4086 100003107 <NA>
## 4087 100003110 <NA>
## 4088 100003111 <NA>
## 4089 100003117 <NA>
## 4090 100003120 <NA>
## 4091 100003121 <NA>
## 4092 100003122 <NA>
## 4093 100003123 <NA>
## 4094 100003125 <NA>
## 4095 100003126 <NA>
## 4096 100003127 <NA>
## 4097 100003129 <NA>
## 4098 100003131 <NA>
## 4099 100003132 <NA>
## 4100 100003133 <NA>
## 4101 100003134 <NA>
## 4102 100003135 <NA>
## 4103 100003137 <NA>
## 4104 100003139 <NA>
## 4105 100003144 <NA>
## 4106 100003147 <NA>
## 4107 100003148 <NA>
## 4108 100003149 <NA>
## 4109 100003153 <NA>
## 4110 100003155 <NA>
## 4111 100003156 <NA>
## 4112 100003157 <NA>
## 4113 100003158 <NA>
## 4114 100003160 <NA>
## 4115 100003164 <NA>
## 4116 100003168 <NA>
## 4117 100003169 <NA>
## 4118 100003170 <NA>
## 4119 100003171 <NA>
## 4120 100003172 <NA>
## 4121 100003173 <NA>
## 4122 100003174 <NA>
## 4123 100003176 <NA>
## 4124 100003178 <NA>
## 4125 100003179 <NA>
## 4126 100003182 <NA>
## 4127 100003185 <NA>
## 4128 100003186 <NA>
## 4129 100003187 <NA>
## 4130 100003190 <NA>
## 4131 100003191 <NA>
## 4132 100003193 <NA>
## 4133 100003195 <NA>
## 4134 100003198 <NA>
## 4135 100003199 <NA>
## 4136 100003200 <NA>
## 4137 100003202 <NA>
## 4138 100003203 <NA>
## 4139 100003204 <NA>
## 4140 100003205 <NA>
## 4141 100003207 <NA>
## 4142 100003209 <NA>
## 4143 100003210 <NA>
## 4144 100003211 <NA>
## 4145 100003213 <NA>
## 4146 100003214 <NA>
## 4147 100003215 <NA>
## 4148 100003218 <NA>
## 4149 100003219 <NA>
## 4150 100003220 <NA>
## 4151 100003226 <NA>
## 4152 100003229 <NA>
## 4153 100003232 <NA>
## 4154 100003233 <NA>
## 4155 100003234 <NA>
## 4156 100003235 <NA>
## 4157 100003236 <NA>
## 4158 100003237 <NA>
## 4159 100003239 <NA>
## 4160 100003240 <NA>
## 4161 100003241 <NA>
## 4162 100003242 <NA>
## 4163 100003243 <NA>
## 4164 100003244 <NA>
## 4165 100003245 <NA>
## 4166 100003247 <NA>
## 4167 100003248 <NA>
## 4168 100003249 <NA>
## 4169 100003252 <NA>
## 4170 100003254 <NA>
## 4171 100003256 <NA>
## 4172 100003257 <NA>
## 4173 100003258 <NA>
## 4174 100003259 <NA>
## 4175 100003260 <NA>
## 4176 100003262 <NA>
## 4177 100003264 <NA>
## 4178 100003265 <NA>
## 4179 100003266 <NA>
## 4180 100003268 <NA>
## 4181 100003271 <NA>
## 4182 100003272 <NA>
## 4183 100003274 <NA>
## 4184 100003275 <NA>
## 4185 100003276 <NA>
## 4186 100003277 <NA>
## 4187 100003278 <NA>
## 4188 100003279 <NA>
## 4189 100003280 <NA>
## 4190 100003281 <NA>
## 4191 100003282 <NA>
## 4192 100003284 <NA>
## 4193 100003285 <NA>
## 4194 100003286 <NA>
## 4195 100003287 <NA>
## 4196 100003289 <NA>
## 4197 100003292 <NA>
## 4198 100003293 <NA>
## 4199 100003294 <NA>
## 4200 100003295 <NA>
## 4201 100003296 <NA>
## 4202 100003299 <NA>
## 4203 100003300 <NA>
## 4204 100003303 <NA>
## 4205 100003304 <NA>
## 4206 100003308 <NA>
## 4207 100003310 <NA>
## 4208 100003314 <NA>
## 4209 100003315 <NA>
## 4210 100003316 <NA>
## 4211 100003317 <NA>
## 4212 100003318 <NA>
## 4213 100003320 <NA>
## 4214 100003321 <NA>
## 4215 100003322 <NA>
## 4216 100003324 <NA>
## 4217 100003325 <NA>
## 4218 100003327 <NA>
## 4219 100003328 <NA>
## 4220 100003330 <NA>
## 4221 100003331 <NA>
## 4222 100003334 <NA>
## 4223 100003336 <NA>
## 4224 100003338 <NA>
## 4225 100003340 <NA>
## 4226 100003341 <NA>
## 4227 100003342 <NA>
## 4228 100003343 <NA>
## 4229 100003347 <NA>
## 4230 100003348 <NA>
## 4231 100003349 <NA>
## 4232 100003350 <NA>
## 4233 100003353 <NA>
## 4234 100003354 <NA>
## 4235 100003355 <NA>
## 4236 100003356 <NA>
## 4237 100003357 <NA>
## 4238 100003358 <NA>
## 4239 100003360 <NA>
## 4240 100003361 <NA>
## 4241 100003363 <NA>
## 4242 100003364 <NA>
## 4243 100003366 <NA>
## 4244 100003367 <NA>
## 4245 100003368 <NA>
## 4246 100003369 <NA>
## 4247 100003372 <NA>
## 4248 100003373 <NA>
## 4249 100003374 <NA>
## 4250 100003375 <NA>
## 4251 100003377 <NA>
## 4252 100003378 <NA>
## 4253 100003379 <NA>
## 4254 100003380 <NA>
## 4255 100003381 <NA>
## 4256 100003383 <NA>
## 4257 100003384 <NA>
## 4258 100003388 <NA>
## 4259 100003392 <NA>
## 4260 100003393 <NA>
## 4261 100003396 <NA>
## 4262 100003398 <NA>
## 4263 100003399 <NA>
## 4264 100003400 <NA>
## 4265 100003401 <NA>
## 4266 100003402 <NA>
## 4267 100003403 <NA>
## 4268 100003404 <NA>
## 4269 100003405 <NA>
## 4270 100003407 <NA>
## 4271 100003409 <NA>
## 4272 100003411 <NA>
## 4273 100003413 <NA>
## 4274 100003414 <NA>
## 4275 100003415 <NA>
## 4276 100003416 <NA>
## 4277 100003418 <NA>
## 4278 100003419 <NA>
## 4279 100003421 <NA>
## 4280 100003424 <NA>
## 4281 100003425 <NA>
## 4282 100003426 <NA>
## 4283 100003428 <NA>
## 4284 100003429 <NA>
## 4285 100003430 <NA>
## 4286 100003434 <NA>
## 4287 100003436 <NA>
## 4288 100003438 <NA>
## 4289 100003439 <NA>
## 4290 100003440 <NA>
## 4291 100003442 <NA>
## 4292 100003443 <NA>
## 4293 100003444 <NA>
## 4294 100003445 <NA>
## 4295 100003448 <NA>
## 4296 100003449 <NA>
## 4297 100003453 <NA>
## 4298 100003457 <NA>
## 4299 100003458 <NA>
## 4300 100003459 <NA>
## 4301 100003460 <NA>
## 4302 100003461 <NA>
## 4303 100003469 <NA>
## 4304 100003470 <NA>
## 4305 100003471 <NA>
## 4306 100003474 <NA>
## 4307 100003477 <NA>
## 4308 100003478 <NA>
## 4309 100003479 <NA>
## 4310 100003480 <NA>
## 4311 100003482 <NA>
## 4312 100003483 <NA>
## 4313 100003486 <NA>
## 4314 100003489 <NA>
## 4315 100003490 <NA>
## 4316 100003492 <NA>
## 4317 100003493 <NA>
## 4318 100003494 <NA>
## 4319 100003495 <NA>
## 4320 100003499 <NA>
## 4321 100003500 <NA>
## 4322 100003504 <NA>
## 4323 100003506 <NA>
## 4324 100003510 <NA>
## 4325 100003511 <NA>
## 4326 100003513 <NA>
## 4327 100003514 <NA>
## 4328 100003515 <NA>
## 4329 100003516 <NA>
## 4330 100003517 <NA>
## 4331 100003518 <NA>
## 4332 100003520 <NA>
## 4333 100003521 <NA>
## 4334 100003522 <NA>
## 4335 100003523 <NA>
## 4336 100003525 <NA>
## 4337 100003526 <NA>
## 4338 100003528 <NA>
## 4339 100003531 <NA>
## 4340 100003532 <NA>
## 4341 100003533 <NA>
## 4342 100003536 <NA>
## 4343 100003537 <NA>
## 4344 100003539 <NA>
## 4345 100003540 <NA>
## 4346 100003542 <NA>
## 4347 100003543 <NA>
## 4348 100003544 <NA>
## 4349 100003545 <NA>
## 4350 100003548 <NA>
## 4351 100003549 <NA>
## 4352 100003550 <NA>
## 4353 100003552 <NA>
## 4354 100003554 <NA>
## 4355 100003555 <NA>
## 4356 100003556 <NA>
## 4357 100003558 <NA>
## 4358 100003560 <NA>
## 4359 100003561 <NA>
## 4360 100003563 <NA>
## 4361 100003564 <NA>
## 4362 100003567 <NA>
## 4363 100003568 <NA>
## 4364 100003571 <NA>
## 4365 100003572 <NA>
## 4366 100003573 <NA>
## 4367 100003575 <NA>
## 4368 100003578 <NA>
## 4369 100003579 <NA>
## 4370 100003580 <NA>
## 4371 100003582 <NA>
## 4372 100003583 <NA>
## 4373 100003585 <NA>
## 4374 100003588 <NA>
## 4375 100003589 <NA>
## 4376 100003590 <NA>
## 4377 100003591 <NA>
## 4378 100003592 <NA>
## 4379 100003593 <NA>
## 4380 100003596 <NA>
## 4381 100003598 <NA>
## 4382 100003601 <NA>
## 4383 100003602 <NA>
## 4384 100003604 <NA>
## 4385 100003606 <NA>
## 4386 100003607 <NA>
## 4387 100003608 <NA>
## 4388 100003609 <NA>
## 4389 100003611 <NA>
## 4390 100003613 <NA>
## 4391 100003614 <NA>
## 4392 100003615 <NA>
## 4393 100003616 <NA>
## 4394 100003618 <NA>
## 4395 100003620 <NA>
## 4396 100003621 <NA>
## 4397 100003624 <NA>
## 4398 100003625 <NA>
## 4399 100003629 <NA>
## 4400 100003630 <NA>
## 4401 100003634 <NA>
## 4402 100003638 <NA>
## 4403 100003639 <NA>
## 4404 100003640 <NA>
## 4405 100003642 <NA>
## 4406 100003644 <NA>
## 4407 100003645 <NA>
## 4408 100003646 <NA>
## 4409 100003648 <NA>
## 4410 100003649 <NA>
## 4411 100003650 <NA>
## 4412 100003651 <NA>
## 4413 100003654 <NA>
## 4414 100003655 <NA>
## 4415 100003656 <NA>
## 4416 100003657 <NA>
## 4417 100003658 <NA>
## 4418 100003660 <NA>
## 4419 100003663 <NA>
## 4420 100003664 <NA>
## 4421 100003665 <NA>
## 4422 100003666 <NA>
## 4423 100003668 <NA>
## 4424 100003670 <NA>
## 4425 100003671 <NA>
## 4426 100003673 <NA>
## 4427 100003674 <NA>
## 4428 100003676 <NA>
## 4429 100003677 <NA>
## 4430 100003678 <NA>
## 4431 100003679 <NA>
## 4432 100003680 <NA>
## 4433 100003681 <NA>
## 4434 100003682 <NA>
## 4435 100003683 <NA>
## 4436 100003684 <NA>
## 4437 100003685 <NA>
## 4438 100003686 <NA>
## 4439 100003687 <NA>
## 4440 100003688 <NA>
## 4441 100003689 <NA>
## 4442 100003690 <NA>
## 4443 100003691 <NA>
## 4444 100003692 <NA>
## 4445 100003695 <NA>
## 4446 100003697 <NA>
## 4447 100003698 <NA>
## 4448 100003700 <NA>
## 4449 100003701 <NA>
## 4450 100003702 <NA>
## 4451 100003704 <NA>
## 4452 100003705 <NA>
## 4453 100003706 <NA>
## 4454 100003707 <NA>
## 4455 100003708 <NA>
## 4456 100003709 <NA>
## 4457 100003712 <NA>
## 4458 100003713 <NA>
## 4459 100003714 <NA>
## 4460 100003716 <NA>
## 4461 100003717 <NA>
## 4462 100003718 <NA>
## 4463 100003722 <NA>
## 4464 100003723 <NA>
## 4465 100003728 <NA>
## 4466 100003731 <NA>
## 4467 100003732 <NA>
## 4468 100003734 <NA>
## 4469 100003735 <NA>
## 4470 100003739 <NA>
## 4471 100003743 <NA>
## 4472 100003744 <NA>
## 4473 100003745 <NA>
## 4474 100003750 <NA>
## 4475 100003752 <NA>
## 4476 100003753 <NA>
## 4477 100003754 <NA>
## 4478 100003755 <NA>
## 4479 100003757 <NA>
## 4480 100003760 <NA>
## 4481 100003761 <NA>
## 4482 100003762 <NA>
## 4483 100003769 <NA>
## 4484 100003770 <NA>
## 4485 100003772 <NA>
## 4486 100003775 <NA>
## 4487 100003776 <NA>
## 4488 100003777 <NA>
## 4489 100003778 <NA>
## 4490 100003779 <NA>
## 4491 100003785 <NA>
## 4492 100003787 <NA>
## 4493 100003789 <NA>
## 4494 100003790 <NA>
## 4495 100003792 <NA>
## 4496 100003793 <NA>
## 4497 100003796 <NA>
## 4498 100003797 <NA>
## 4499 100003798 <NA>
## 4500 100003799 <NA>
## 4501 100003801 <NA>
## 4502 100003803 <NA>
## 4503 100003804 <NA>
## 4504 100003805 <NA>
## 4505 100003806 <NA>
## 4506 100003807 <NA>
## 4507 100003809 <NA>
## 4508 100003812 <NA>
## 4509 100003813 <NA>
## 4510 100003814 <NA>
## 4511 100003819 <NA>
## 4512 100003821 <NA>
## 4513 100003822 <NA>
## 4514 100003823 <NA>
## 4515 100003824 <NA>
## 4516 100003825 <NA>
## 4517 100003827 <NA>
## 4518 100003828 <NA>
## 4519 100003829 <NA>
## 4520 100003830 <NA>
## 4521 100003831 <NA>
## 4522 100003832 <NA>
## 4523 100003833 <NA>
## 4524 100003834 <NA>
## 4525 100003835 <NA>
## 4526 100003836 <NA>
## 4527 100003837 <NA>
## 4528 100003841 <NA>
## 4529 100003843 <NA>
## 4530 100003844 <NA>
## 4531 100003846 <NA>
## 4532 100003847 <NA>
## 4533 100003848 <NA>
## 4534 100003850 <NA>
## 4535 100003851 <NA>
## 4536 100003852 <NA>
## 4537 100003853 <NA>
## 4538 100003854 <NA>
## 4539 100003855 <NA>
## 4540 100003856 <NA>
## 4541 100003857 <NA>
## 4542 100003859 <NA>
## 4543 100003862 <NA>
## 4544 100003865 <NA>
## 4545 100003866 <NA>
## 4546 100003867 <NA>
## 4547 100003868 <NA>
## 4548 100003869 <NA>
## 4549 100003872 <NA>
## 4550 100003875 <NA>
## 4551 100003876 <NA>
## 4552 100003877 <NA>
## 4553 100003878 <NA>
## 4554 100003879 <NA>
## 4555 100003880 <NA>
## 4556 100003881 <NA>
## 4557 100003883 <NA>
## 4558 100003884 <NA>
## 4559 100003885 <NA>
## 4560 100003886 <NA>
## 4561 100003887 <NA>
## 4562 100003889 <NA>
## 4563 100003890 <NA>
## 4564 100003893 <NA>
## 4565 100003895 <NA>
## 4566 100003896 <NA>
## 4567 100003899 <NA>
## 4568 100003900 <NA>
## 4569 100003902 <NA>
## 4570 100003905 <NA>
## 4571 100003906 <NA>
## 4572 100003907 <NA>
## 4573 100003908 <NA>
## 4574 100003909 <NA>
## 4575 100003911 <NA>
## 4576 100003912 <NA>
## 4577 100003914 <NA>
## 4578 100003915 <NA>
## 4579 100003916 <NA>
## 4580 100003918 <NA>
## 4581 100003919 <NA>
## 4582 100003920 <NA>
## 4583 100003921 <NA>
## 4584 100003922 <NA>
## 4585 100003924 <NA>
## 4586 100003926 <NA>
## 4587 100003929 <NA>
## 4588 100003931 <NA>
## 4589 100003933 <NA>
## 4590 100003934 <NA>
## 4591 100003935 <NA>
## 4592 100003938 <NA>
## 4593 100003939 <NA>
## 4594 100003940 <NA>
## 4595 100003941 <NA>
## 4596 100003945 <NA>
## 4597 100003947 <NA>
## 4598 100003949 <NA>
## 4599 100003953 <NA>
## 4600 100003954 <NA>
## 4601 100003955 <NA>
## 4602 100003958 <NA>
## 4603 100003960 <NA>
## 4604 100003963 <NA>
## 4605 100003964 <NA>
## 4606 100003965 <NA>
## 4607 100003966 <NA>
## 4608 100003968 <NA>
## 4609 100003971 <NA>
## 4610 100003974 <NA>
## 4611 100003975 <NA>
## 4612 100003978 <NA>
## 4613 100003982 <NA>
## 4614 100003984 <NA>
## 4615 100003985 <NA>
## 4616 100003989 <NA>
## 4617 100003990 <NA>
## 4618 100003992 <NA>
## 4619 100003994 <NA>
## 4620 100003996 <NA>
## 4621 100003997 <NA>
## 4622 100003998 <NA>
## 4623 100003999 <NA>
## 4624 100004000 <NA>
## 4625 100004002 <NA>
## 4626 100004003 <NA>
## 4627 100004005 <NA>
## 4628 100004007 <NA>
## 4629 100004008 <NA>
## 4630 100004009 <NA>
## 4631 100004010 <NA>
## 4632 100004012 <NA>
## 4633 100004013 <NA>
## 4634 100004014 <NA>
## 4635 100004015 <NA>
## 4636 100004017 <NA>
## 4637 100004018 <NA>
## 4638 100004020 <NA>
## 4639 100004022 <NA>
## 4640 100004024 <NA>
## 4641 100004025 <NA>
## 4642 100004026 <NA>
## 4643 100004028 <NA>
## 4644 100004031 <NA>
## 4645 100004032 <NA>
## 4646 100004033 <NA>
## 4647 100004034 <NA>
## 4648 100004035 <NA>
## 4649 100004036 <NA>
## 4650 100004037 <NA>
## 4651 100004039 <NA>
## 4652 100004041 <NA>
## 4653 100004042 <NA>
## 4654 100004043 <NA>
## 4655 100004044 <NA>
## 4656 100004046 <NA>
## 4657 100004052 <NA>
## 4658 100004053 <NA>
## 4659 100004055 <NA>
## 4660 100004056 <NA>
## 4661 100004057 <NA>
## 4662 100004058 <NA>
## 4663 100004059 <NA>
## 4664 100004061 <NA>
## 4665 100004062 <NA>
## 4666 100004063 <NA>
## 4667 100004064 <NA>
## 4668 100004065 <NA>
## 4669 100004066 <NA>
## 4670 100004068 <NA>
## 4671 100004071 <NA>
## 4672 100004073 <NA>
## 4673 100004074 <NA>
## 4674 100004075 <NA>
## 4675 100004076 <NA>
## 4676 100004079 <NA>
## 4677 100004080 <NA>
## 4678 100004081 <NA>
## 4679 100004084 <NA>
## 4680 100004085 <NA>
## 4681 100004086 <NA>
## 4682 100004087 <NA>
## 4683 100004088 <NA>
## 4684 100004090 <NA>
## 4685 100004091 <NA>
## 4686 100004093 <NA>
## 4687 100004095 <NA>
## 4688 100004096 <NA>
## 4689 100004097 <NA>
## 4690 100004100 <NA>
## 4691 100004101 <NA>
## 4692 100004104 <NA>
## 4693 100004105 <NA>
## 4694 100004109 <NA>
## 4695 100004110 <NA>
## 4696 100004112 <NA>
## 4697 100004113 <NA>
## 4698 100004114 <NA>
## 4699 100004115 <NA>
## 4700 100004118 <NA>
## 4701 100004120 <NA>
## 4702 100004122 <NA>
## 4703 100004123 <NA>
## 4704 100004124 <NA>
## 4705 100004125 <NA>
## 4706 100004126 <NA>
## 4707 100004128 <NA>
## 4708 100004130 <NA>
## 4709 100004131 <NA>
## 4710 100004132 <NA>
## 4711 100004133 <NA>
## 4712 100004134 <NA>
## 4713 100004137 <NA>
## 4714 100004138 <NA>
## 4715 100004139 <NA>
## 4716 100004140 <NA>
## 4717 100004141 <NA>
## 4718 100004142 <NA>
## 4719 100004143 <NA>
## 4720 100004146 <NA>
## 4721 100004148 <NA>
## 4722 100004149 <NA>
## 4723 100004151 <NA>
## 4724 100004153 <NA>
## 4725 100004154 <NA>
## 4726 100004155 <NA>
## 4727 100004156 <NA>
## 4728 100004157 <NA>
## 4729 100004162 <NA>
## 4730 100004164 <NA>
## 4731 100004168 <NA>
## 4732 100004169 <NA>
## 4733 100004170 <NA>
## 4734 100004171 <NA>
## 4735 100004172 <NA>
## 4736 100004174 <NA>
## 4737 100004176 <NA>
## 4738 100004178 <NA>
## 4739 100004179 <NA>
## 4740 100004180 <NA>
## 4741 100004181 <NA>
## 4742 100004184 <NA>
## 4743 100004186 <NA>
## 4744 100004188 <NA>
## 4745 100004189 <NA>
## 4746 100004190 <NA>
## 4747 100004192 <NA>
## 4748 100004195 <NA>
## 4749 100004197 <NA>
## 4750 100004198 <NA>
## 4751 100004199 <NA>
## 4752 100004200 <NA>
## 4753 100004201 <NA>
## 4754 100004203 <NA>
## 4755 100004205 <NA>
## 4756 100004207 <NA>
## 4757 100004208 <NA>
## 4758 100004209 <NA>
## 4759 100004211 <NA>
## 4760 100004212 <NA>
## 4761 100004213 <NA>
## 4762 100004215 <NA>
## 4763 100004217 <NA>
## 4764 100004218 <NA>
## 4765 100004221 <NA>
## 4766 100004226 <NA>
## 4767 100004227 <NA>
## 4768 100004228 <NA>
## 4769 100004231 <NA>
## 4770 100004233 <NA>
## 4771 100004234 <NA>
## 4772 100004235 <NA>
## 4773 100004237 <NA>
## 4774 100004238 <NA>
## 4775 100004239 <NA>
## 4776 100004240 <NA>
## 4777 100004241 <NA>
## 4778 100004242 <NA>
## 4779 100004243 <NA>
## 4780 100004250 <NA>
## 4781 100004251 <NA>
## 4782 100004253 <NA>
## 4783 100004255 <NA>
## 4784 100004256 <NA>
## 4785 100004257 <NA>
## 4786 100004258 <NA>
## 4787 100004259 <NA>
## 4788 100004261 <NA>
## 4789 100004262 <NA>
## 4790 100004263 <NA>
## 4791 100004266 <NA>
## 4792 100004267 <NA>
## 4793 100004268 <NA>
## 4794 100004269 <NA>
## 4795 100004270 <NA>
## 4796 100004271 <NA>
## 4797 100004272 <NA>
## 4798 100004276 <NA>
## 4799 100004278 <NA>
## 4800 100004279 <NA>
## 4801 100004280 <NA>
## 4802 100004281 <NA>
## 4803 100004283 <NA>
## 4804 100004284 <NA>
## 4805 100004286 <NA>
## 4806 100004287 <NA>
## 4807 100004288 <NA>
## 4808 100004290 <NA>
## 4809 100004292 <NA>
## 4810 100004293 <NA>
## 4811 100004294 <NA>
## 4812 100004295 <NA>
## 4813 100004299 <NA>
## 4814 100004301 <NA>
## 4815 100004303 <NA>
## 4816 100004304 <NA>
## 4817 100004305 <NA>
## 4818 100004307 <NA>
## 4819 100004308 <NA>
## 4820 100004309 <NA>
## 4821 100004310 <NA>
## 4822 100004314 <NA>
## 4823 100004315 <NA>
## 4824 100004316 <NA>
## 4825 100004319 <NA>
## 4826 100004321 <NA>
## 4827 100004322 <NA>
## 4828 100004323 <NA>
## 4829 100004324 <NA>
## 4830 100004325 <NA>
## 4831 100004326 <NA>
## 4832 100004327 <NA>
## 4833 100004328 <NA>
## 4834 100004329 <NA>
## 4835 100004331 <NA>
## 4836 100004332 <NA>
## 4837 100004333 <NA>
## 4838 100004334 <NA>
## 4839 100004335 <NA>
## 4840 100004338 <NA>
## 4841 100004339 <NA>
## 4842 100004340 <NA>
## 4843 100004341 <NA>
## 4844 100004342 <NA>
## 4845 100004345 <NA>
## 4846 100004347 <NA>
## 4847 100004349 <NA>
## 4848 100004350 <NA>
## 4849 100004351 <NA>
## 4850 100004353 <NA>
## 4851 100004354 <NA>
## 4852 100004355 <NA>
## 4853 100004357 <NA>
## 4854 100004358 <NA>
## 4855 100004359 <NA>
## 4856 100004360 <NA>
## 4857 100004362 <NA>
## 4858 100004363 <NA>
## 4859 100004365 <NA>
## 4860 100004368 <NA>
## 4861 100004369 <NA>
## 4862 100004370 <NA>
## 4863 100004371 <NA>
## 4864 100004373 <NA>
## 4865 100004375 <NA>
## 4866 100004377 <NA>
## 4867 100004378 <NA>
## 4868 100004380 <NA>
## 4869 100004382 <NA>
## 4870 100004383 <NA>
## 4871 100004385 <NA>
## 4872 100004387 <NA>
## 4873 100004392 <NA>
## 4874 100004393 <NA>
## 4875 100004395 <NA>
## 4876 100004396 <NA>
## 4877 100004397 <NA>
## 4878 100004400 <NA>
## 4879 100004402 <NA>
## 4880 100004403 <NA>
## 4881 100004404 <NA>
## 4882 100004407 <NA>
## 4883 100004408 <NA>
## 4884 100004409 <NA>
## 4885 100004410 <NA>
## 4886 100004412 <NA>
## 4887 100004413 <NA>
## 4888 100004415 <NA>
## 4889 100004416 <NA>
## 4890 100004418 <NA>
## 4891 100004421 <NA>
## 4892 100004422 <NA>
## 4893 100004423 <NA>
## 4894 100004430 <NA>
## 4895 100004431 <NA>
## 4896 100004434 <NA>
## 4897 100004435 <NA>
## 4898 100004438 <NA>
## 4899 100004439 <NA>
## 4900 100004445 <NA>
## 4901 100004447 <NA>
## 4902 100004449 <NA>
## 4903 100004451 <NA>
## 4904 100004452 <NA>
## 4905 100004453 <NA>
## 4906 100004455 <NA>
## 4907 100004456 <NA>
## 4908 100004458 <NA>
## 4909 100004459 <NA>
## 4910 100004460 <NA>
## 4911 100004464 <NA>
## 4912 100004470 <NA>
## 4913 100004471 <NA>
## 4914 100004472 <NA>
## 4915 100004476 <NA>
## 4916 100004478 <NA>
## 4917 100004480 <NA>
## 4918 100004482 <NA>
## 4919 100004483 <NA>
## 4920 100004484 <NA>
## 4921 100004485 <NA>
## 4922 100004489 <NA>
## 4923 100004490 <NA>
## 4924 100004491 <NA>
## 4925 100004492 <NA>
## 4926 100004493 <NA>
## 4927 100004494 <NA>
## 4928 100004497 <NA>
## 4929 100004499 <NA>
## 4930 100004503 <NA>
## 4931 100004505 <NA>
## 4932 100004506 <NA>
## 4933 100004507 <NA>
## 4934 100004508 <NA>
## 4935 100004514 <NA>
## 4936 100004515 <NA>
## 4937 100004523 <NA>
## 4938 100004524 <NA>
## 4939 100004525 <NA>
## 4940 100004526 <NA>
## 4941 100004527 <NA>
## 4942 100004528 <NA>
## 4943 100004530 <NA>
## 4944 100004532 <NA>
## 4945 100004533 <NA>
## 4946 100004534 <NA>
## 4947 100004535 <NA>
## 4948 100004536 <NA>
## 4949 100004540 <NA>
## 4950 100004541 <NA>
## 4951 100004543 <NA>
## 4952 100004544 <NA>
## 4953 100004545 <NA>
## 4954 100004546 <NA>
## 4955 100004548 <NA>
## 4956 100004551 <NA>
## 4957 100004553 <NA>
## 4958 100004555 <NA>
## 4959 100004557 <NA>
## 4960 100004560 <NA>
## 4961 100004565 <NA>
## 4962 100004567 <NA>
## 4963 100004570 <NA>
## 4964 100004571 <NA>
## 4965 100004572 <NA>
## 4966 100004573 <NA>
## 4967 100004574 <NA>
## 4968 100004575 <NA>
## 4969 100004577 <NA>
## 4970 100004578 <NA>
## 4971 100004584 <NA>
## 4972 100004587 <NA>
## 4973 100004588 <NA>
## 4974 100004591 <NA>
## 4975 100004592 <NA>
## 4976 100004593 <NA>
## 4977 100004594 <NA>
## 4978 100004596 <NA>
## 4979 100004597 <NA>
## 4980 100004598 <NA>
## 4981 100004602 <NA>
## 4982 100004603 <NA>
## 4983 100004604 <NA>
## 4984 100004606 <NA>
## 4985 100004607 <NA>
## 4986 100004609 <NA>
## 4987 100004610 <NA>
## 4988 100004611 <NA>
## 4989 100004613 <NA>
## 4990 100004615 <NA>
## 4991 100004616 <NA>
## 4992 100004617 <NA>
## 4993 100004620 <NA>
## 4994 100004621 <NA>
## 4995 100004622 <NA>
## 4996 100004623 <NA>
## 4997 100004626 <NA>
## 4998 100004627 <NA>
## 4999 100004630 <NA>
## prtvtbgb
## 1 Liberal Democrat
## 2 Liberal Democrat
## 3 Labour
## 4 Labour
## 5 <NA>
## 6 <NA>
## 7 Conservative
## 8 <NA>
## 9 <NA>
## 10 <NA>
## 11 <NA>
## 12 Conservative
## 13 <NA>
## 14 Liberal Democrat
## 15 <NA>
## 16 Labour
## 17 Labour
## 18 UK Independence Party
## 19 <NA>
## 20 Liberal Democrat
## 21 Conservative
## 22 Scottish National Party
## 23 Labour
## 24 <NA>
## 25 Liberal Democrat
## 26 Liberal Democrat
## 27 <NA>
## 28 Conservative
## 29 Labour
## 30 <NA>
## 31 Liberal Democrat
## 32 Labour
## 33 Liberal Democrat
## 34 Conservative
## 35 Labour
## 36 <NA>
## 37 UK Independence Party
## 38 Conservative
## 39 Labour
## 40 Scottish National Party
## 41 Labour
## 42 Conservative
## 43 <NA>
## 44 Labour
## 45 UK Independence Party
## 46 Labour
## 47 Liberal Democrat
## 48 Conservative
## 49 <NA>
## 50 Labour
## 51 <NA>
## 52 <NA>
## 53 Conservative
## 54 <NA>
## 55 <NA>
## 56 <NA>
## 57 Liberal Democrat
## 58 Labour
## 59 Conservative
## 60 Conservative
## 61 Conservative
## 62 <NA>
## 63 <NA>
## 64 Conservative
## 65 Labour
## 66 Liberal Democrat
## 67 Labour
## 68 Green Party
## 69 Conservative
## 70 Liberal Democrat
## 71 Labour
## 72 Conservative
## 73 <NA>
## 74 <NA>
## 75 Conservative
## 76 <NA>
## 77 <NA>
## 78 <NA>
## 79 Conservative
## 80 <NA>
## 81 Conservative
## 82 Conservative
## 83 <NA>
## 84 Conservative
## 85 <NA>
## 86 Labour
## 87 Labour
## 88 Conservative
## 89 <NA>
## 90 <NA>
## 91 Labour
## 92 Liberal Democrat
## 93 Labour
## 94 <NA>
## 95 <NA>
## 96 <NA>
## 97 <NA>
## 98 Labour
## 99 <NA>
## 100 Green Party
## 101 Conservative
## 102 <NA>
## 103 <NA>
## 104 Conservative
## 105 <NA>
## 106 Conservative
## 107 Labour
## 108 <NA>
## 109 <NA>
## 110 Conservative
## 111 Conservative
## 112 Labour
## 113 Liberal Democrat
## 114 Labour
## 115 <NA>
## 116 Conservative
## 117 <NA>
## 118 Conservative
## 119 Labour
## 120 Conservative
## 121 Liberal Democrat
## 122 Conservative
## 123 Liberal Democrat
## 124 <NA>
## 125 Conservative
## 126 Conservative
## 127 Labour
## 128 Labour
## 129 <NA>
## 130 <NA>
## 131 <NA>
## 132 <NA>
## 133 Conservative
## 134 Conservative
## 135 Conservative
## 136 UK Independence Party
## 137 <NA>
## 138 Scottish National Party
## 139 Conservative
## 140 Conservative
## 141 Labour
## 142 <NA>
## 143 <NA>
## 144 <NA>
## 145 <NA>
## 146 <NA>
## 147 Labour
## 148 Conservative
## 149 Conservative
## 150 <NA>
## 151 Scottish National Party
## 152 <NA>
## 153 Conservative
## 154 <NA>
## 155 Liberal Democrat
## 156 Conservative
## 157 <NA>
## 158 Conservative
## 159 Labour
## 160 <NA>
## 161 Liberal Democrat
## 162 <NA>
## 163 Conservative
## 164 Conservative
## 165 <NA>
## 166 Green Party
## 167 Labour
## 168 Conservative
## 169 Conservative
## 170 <NA>
## 171 <NA>
## 172 Labour
## 173 <NA>
## 174 Conservative
## 175 Labour
## 176 <NA>
## 177 <NA>
## 178 Conservative
## 179 <NA>
## 180 Conservative
## 181 UK Independence Party
## 182 Conservative
## 183 <NA>
## 184 Conservative
## 185 <NA>
## 186 Conservative
## 187 <NA>
## 188 Social Democratic and Labour Party (nir)
## 189 Conservative
## 190 Labour
## 191 <NA>
## 192 Scottish National Party
## 193 UK Independence Party
## 194 <NA>
## 195 Labour
## 196 Labour
## 197 Conservative
## 198 Conservative
## 199 Labour
## 200 Liberal Democrat
## 201 Liberal Democrat
## 202 Labour
## 203 Labour
## 204 <NA>
## 205 Conservative
## 206 <NA>
## 207 <NA>
## 208 <NA>
## 209 Labour
## 210 <NA>
## 211 Labour
## 212 <NA>
## 213 Labour
## 214 <NA>
## 215 Liberal Democrat
## 216 <NA>
## 217 Conservative
## 218 Labour
## 219 <NA>
## 220 Conservative
## 221 <NA>
## 222 <NA>
## 223 Conservative
## 224 <NA>
## 225 Liberal Democrat
## 226 Conservative
## 227 UK Independence Party
## 228 Liberal Democrat
## 229 Conservative
## 230 Labour
## 231 Scottish National Party
## 232 Labour
## 233 <NA>
## 234 Scottish National Party
## 235 <NA>
## 236 Conservative
## 237 <NA>
## 238 Labour
## 239 Labour
## 240 <NA>
## 241 Plaid Cymru
## 242 Labour
## 243 Labour
## 244 UK Independence Party
## 245 Liberal Democrat
## 246 <NA>
## 247 UK Independence Party
## 248 <NA>
## 249 <NA>
## 250 Labour
## 251 <NA>
## 252 UK Independence Party
## 253 Conservative
## 254 Conservative
## 255 Conservative
## 256 Conservative
## 257 <NA>
## 258 <NA>
## 259 Conservative
## 260 Conservative
## 261 <NA>
## 262 Conservative
## 263 <NA>
## 264 <NA>
## 265 Conservative
## 266 <NA>
## 267 Labour
## 268 <NA>
## 269 Labour
## 270 <NA>
## 271 Labour
## 272 Alliance Party (nir)
## 273 <NA>
## 274 Liberal Democrat
## 275 <NA>
## 276 <NA>
## 277 <NA>
## 278 Liberal Democrat
## 279 <NA>
## 280 Liberal Democrat
## 281 Labour
## 282 <NA>
## 283 Labour
## 284 <NA>
## 285 Labour
## 286 <NA>
## 287 UK Independence Party
## 288 <NA>
## 289 <NA>
## 290 Liberal Democrat
## 291 Other
## 292 <NA>
## 293 Liberal Democrat
## 294 UK Independence Party
## 295 <NA>
## 296 UK Independence Party
## 297 <NA>
## 298 <NA>
## 299 Conservative
## 300 <NA>
## 301 Conservative
## 302 Labour
## 303 <NA>
## 304 Labour
## 305 <NA>
## 306 Labour
## 307 <NA>
## 308 <NA>
## 309 <NA>
## 310 Labour
## 311 Labour
## 312 <NA>
## 313 Conservative
## 314 Labour
## 315 <NA>
## 316 <NA>
## 317 Conservative
## 318 Labour
## 319 <NA>
## 320 Liberal Democrat
## 321 Labour
## 322 Liberal Democrat
## 323 <NA>
## 324 <NA>
## 325 Liberal Democrat
## 326 <NA>
## 327 <NA>
## 328 Labour
## 329 Green Party
## 330 Liberal Democrat
## 331 UK Independence Party
## 332 <NA>
## 333 Conservative
## 334 <NA>
## 335 <NA>
## 336 <NA>
## 337 Labour
## 338 Ulster Unionist Party (nir)
## 339 Labour
## 340 Conservative
## 341 <NA>
## 342 Liberal Democrat
## 343 <NA>
## 344 Conservative
## 345 <NA>
## 346 Labour
## 347 Labour
## 348 <NA>
## 349 <NA>
## 350 Liberal Democrat
## 351 <NA>
## 352 Independent(s) (nir)
## 353 <NA>
## 354 <NA>
## 355 Conservative
## 356 Liberal Democrat
## 357 <NA>
## 358 Labour
## 359 Liberal Democrat
## 360 Conservative
## 361 <NA>
## 362 Scottish National Party
## 363 <NA>
## 364 Labour
## 365 Labour
## 366 Conservative
## 367 Labour
## 368 <NA>
## 369 <NA>
## 370 Conservative
## 371 Labour
## 372 <NA>
## 373 Conservative
## 374 Conservative
## 375 <NA>
## 376 Labour
## 377 Scottish National Party
## 378 Labour
## 379 Conservative
## 380 <NA>
## 381 Labour
## 382 <NA>
## 383 Labour
## 384 Labour
## 385 Labour
## 386 Conservative
## 387 <NA>
## 388 Conservative
## 389 Conservative
## 390 Scottish National Party
## 391 <NA>
## 392 Labour
## 393 <NA>
## 394 Green Party
## 395 Liberal Democrat
## 396 Liberal Democrat
## 397 <NA>
## 398 Liberal Democrat
## 399 <NA>
## 400 Labour
## 401 Conservative
## 402 <NA>
## 403 <NA>
## 404 Conservative
## 405 Labour
## 406 Liberal Democrat
## 407 Conservative
## 408 <NA>
## 409 Liberal Democrat
## 410 <NA>
## 411 Labour
## 412 <NA>
## 413 Conservative
## 414 Conservative
## 415 Labour
## 416 Conservative
## 417 Conservative
## 418 <NA>
## 419 Labour
## 420 Labour
## 421 Scottish National Party
## 422 Conservative
## 423 Labour
## 424 Liberal Democrat
## 425 Conservative
## 426 Labour
## 427 Labour
## 428 Liberal Democrat
## 429 Scottish National Party
## 430 <NA>
## 431 Labour
## 432 <NA>
## 433 Labour
## 434 <NA>
## 435 Conservative
## 436 Labour
## 437 Conservative
## 438 Liberal Democrat
## 439 <NA>
## 440 Conservative
## 441 Labour
## 442 Labour
## 443 UK Independence Party
## 444 Conservative
## 445 Green Party
## 446 Conservative
## 447 Labour
## 448 Conservative
## 449 Social Democratic and Labour Party (nir)
## 450 <NA>
## 451 Conservative
## 452 <NA>
## 453 Conservative
## 454 <NA>
## 455 UK Independence Party
## 456 <NA>
## 457 <NA>
## 458 Conservative
## 459 Conservative
## 460 Scottish National Party
## 461 Conservative
## 462 <NA>
## 463 <NA>
## 464 <NA>
## 465 <NA>
## 466 <NA>
## 467 Scottish National Party
## 468 Scottish National Party
## 469 Labour
## 470 Conservative
## 471 Conservative
## 472 Conservative
## 473 <NA>
## 474 <NA>
## 475 Labour
## 476 <NA>
## 477 Conservative
## 478 Liberal Democrat
## 479 <NA>
## 480 <NA>
## 481 Conservative
## 482 Labour
## 483 <NA>
## 484 <NA>
## 485 <NA>
## 486 Conservative
## 487 Scottish National Party
## 488 <NA>
## 489 Conservative
## 490 Labour
## 491 Conservative
## 492 Labour
## 493 <NA>
## 494 Other (nir)
## 495 Labour
## 496 Labour
## 497 Liberal Democrat
## 498 Conservative
## 499 Other
## 500 <NA>
## 501 <NA>
## 502 Labour
## 503 Conservative
## 504 Labour
## 505 Green Party
## 506 Liberal Democrat
## 507 <NA>
## 508 <NA>
## 509 <NA>
## 510 <NA>
## 511 <NA>
## 512 Conservative
## 513 <NA>
## 514 <NA>
## 515 Labour
## 516 <NA>
## 517 Independent(s) (nir)
## 518 Ulster Unionist Party (nir)
## 519 <NA>
## 520 <NA>
## 521 Labour
## 522 Labour
## 523 Liberal Democrat
## 524 <NA>
## 525 <NA>
## 526 Liberal Democrat
## 527 Conservative
## 528 Labour
## 529 <NA>
## 530 <NA>
## 531 Liberal Democrat
## 532 Labour
## 533 UK Independence Party
## 534 Conservative
## 535 UK Independence Party
## 536 <NA>
## 537 Labour
## 538 Labour
## 539 Labour
## 540 <NA>
## 541 <NA>
## 542 Conservative
## 543 Conservative
## 544 Labour
## 545 Plaid Cymru
## 546 Conservative
## 547 Labour
## 548 <NA>
## 549 Liberal Democrat
## 550 Liberal Democrat
## 551 <NA>
## 552 Conservative
## 553 <NA>
## 554 Labour
## 555 Conservative
## 556 Conservative
## 557 Labour
## 558 UK Independence Party
## 559 Labour
## 560 Ulster Unionist Party (nir)
## 561 Labour
## 562 Conservative
## 563 <NA>
## 564 Liberal Democrat
## 565 Labour
## 566 Conservative
## 567 Conservative
## 568 <NA>
## 569 Conservative
## 570 <NA>
## 571 <NA>
## 572 Labour
## 573 UK Independence Party
## 574 Labour
## 575 <NA>
## 576 Conservative
## 577 <NA>
## 578 Labour
## 579 Conservative
## 580 Labour
## 581 Labour
## 582 Conservative
## 583 <NA>
## 584 Labour
## 585 Conservative
## 586 Conservative
## 587 Conservative
## 588 <NA>
## 589 Green Party
## 590 Liberal Democrat
## 591 Conservative
## 592 Liberal Democrat
## 593 Conservative
## 594 Conservative
## 595 Conservative
## 596 UK Independence Party
## 597 <NA>
## 598 <NA>
## 599 <NA>
## 600 Conservative
## 601 <NA>
## 602 <NA>
## 603 UK Independence Party
## 604 Conservative
## 605 <NA>
## 606 Labour
## 607 Labour
## 608 Scottish National Party
## 609 Labour
## 610 Labour
## 611 Liberal Democrat
## 612 Labour
## 613 Conservative
## 614 Conservative
## 615 Conservative
## 616 <NA>
## 617 Conservative
## 618 Labour
## 619 <NA>
## 620 <NA>
## 621 Labour
## 622 <NA>
## 623 Conservative
## 624 <NA>
## 625 Labour
## 626 Labour
## 627 Conservative
## 628 <NA>
## 629 Conservative
## 630 UK Independence Party
## 631 <NA>
## 632 Conservative
## 633 Liberal Democrat
## 634 <NA>
## 635 <NA>
## 636 Conservative
## 637 Labour
## 638 Labour
## 639 Labour
## 640 Conservative
## 641 Labour
## 642 Sinn Fein (nir)
## 643 Other
## 644 Labour
## 645 Conservative
## 646 Conservative
## 647 <NA>
## 648 <NA>
## 649 Labour
## 650 Labour
## 651 <NA>
## 652 Labour
## 653 UK Independence Party
## 654 Conservative
## 655 <NA>
## 656 <NA>
## 657 Labour
## 658 <NA>
## 659 Conservative
## 660 UK Independence Party
## 661 Labour
## 662 Conservative
## 663 Conservative
## 664 Liberal Democrat
## 665 <NA>
## 666 Labour
## 667 Labour
## 668 Labour
## 669 Conservative
## 670 Conservative
## 671 <NA>
## 672 <NA>
## 673 <NA>
## 674 <NA>
## 675 Labour
## 676 <NA>
## 677 Labour
## 678 Social Democratic and Labour Party (nir)
## 679 Other
## 680 <NA>
## 681 Labour
## 682 Labour
## 683 <NA>
## 684 Labour
## 685 <NA>
## 686 <NA>
## 687 <NA>
## 688 <NA>
## 689 Other
## 690 Conservative
## 691 Conservative
## 692 Conservative
## 693 Liberal Democrat
## 694 <NA>
## 695 Labour
## 696 Conservative
## 697 <NA>
## 698 Liberal Democrat
## 699 <NA>
## 700 <NA>
## 701 Labour
## 702 Green Party
## 703 Conservative
## 704 <NA>
## 705 Other
## 706 Liberal Democrat
## 707 Liberal Democrat
## 708 Liberal Democrat
## 709 <NA>
## 710 Labour
## 711 Conservative
## 712 Liberal Democrat
## 713 Conservative
## 714 <NA>
## 715 Green Party
## 716 <NA>
## 717 Liberal Democrat
## 718 Labour
## 719 UK Independence Party
## 720 UK Independence Party
## 721 <NA>
## 722 Liberal Democrat
## 723 <NA>
## 724 <NA>
## 725 <NA>
## 726 Conservative
## 727 <NA>
## 728 Labour
## 729 <NA>
## 730 <NA>
## 731 <NA>
## 732 Labour
## 733 Conservative
## 734 Conservative
## 735 Conservative
## 736 <NA>
## 737 Liberal Democrat
## 738 Conservative
## 739 Labour
## 740 <NA>
## 741 <NA>
## 742 Liberal Democrat
## 743 Liberal Democrat
## 744 Liberal Democrat
## 745 <NA>
## 746 UK Independence Party
## 747 <NA>
## 748 Labour
## 749 <NA>
## 750 Liberal Democrat
## 751 <NA>
## 752 Liberal Democrat
## 753 <NA>
## 754 <NA>
## 755 Conservative
## 756 Liberal Democrat
## 757 Conservative
## 758 <NA>
## 759 Liberal Democrat
## 760 <NA>
## 761 Green Party
## 762 Labour
## 763 Conservative
## 764 Democratic Unionist Party (nir)
## 765 <NA>
## 766 <NA>
## 767 Conservative
## 768 Labour
## 769 Labour
## 770 Conservative
## 771 <NA>
## 772 Social Democratic and Labour Party (nir)
## 773 Labour
## 774 <NA>
## 775 Liberal Democrat
## 776 Labour
## 777 <NA>
## 778 Conservative
## 779 <NA>
## 780 <NA>
## 781 Conservative
## 782 <NA>
## 783 Green Party
## 784 Liberal Democrat
## 785 Labour
## 786 <NA>
## 787 Green Party
## 788 Labour
## 789 Labour
## 790 Liberal Democrat
## 791 Labour
## 792 <NA>
## 793 Conservative
## 794 <NA>
## 795 <NA>
## 796 Liberal Democrat
## 797 Labour
## 798 <NA>
## 799 Labour
## 800 Liberal Democrat
## 801 Liberal Democrat
## 802 Labour
## 803 Labour
## 804 Labour
## 805 <NA>
## 806 <NA>
## 807 <NA>
## 808 Labour
## 809 <NA>
## 810 <NA>
## 811 Conservative
## 812 Liberal Democrat
## 813 <NA>
## 814 <NA>
## 815 Conservative
## 816 UK Independence Party
## 817 Conservative
## 818 Conservative
## 819 Conservative
## 820 <NA>
## 821 Conservative
## 822 <NA>
## 823 <NA>
## 824 <NA>
## 825 Conservative
## 826 <NA>
## 827 Green Party
## 828 Conservative
## 829 <NA>
## 830 Labour
## 831 <NA>
## 832 <NA>
## 833 <NA>
## 834 <NA>
## 835 UK Independence Party
## 836 Green Party
## 837 <NA>
## 838 Conservative
## 839 <NA>
## 840 <NA>
## 841 <NA>
## 842 <NA>
## 843 <NA>
## 844 UK Independence Party
## 845 Liberal Democrat
## 846 <NA>
## 847 UK Independence Party
## 848 <NA>
## 849 Conservative
## 850 Liberal Democrat
## 851 <NA>
## 852 UK Independence Party
## 853 <NA>
## 854 Conservative
## 855 <NA>
## 856 <NA>
## 857 Labour
## 858 UK Independence Party
## 859 Green Party
## 860 Scottish National Party
## 861 Labour
## 862 Conservative
## 863 Liberal Democrat
## 864 <NA>
## 865 <NA>
## 866 Liberal Democrat
## 867 <NA>
## 868 Conservative
## 869 Green Party
## 870 Conservative
## 871 <NA>
## 872 Labour
## 873 Sinn Fein (nir)
## 874 <NA>
## 875 <NA>
## 876 Conservative
## 877 Labour
## 878 <NA>
## 879 Labour
## 880 Conservative
## 881 <NA>
## 882 Labour
## 883 Conservative
## 884 <NA>
## 885 Labour
## 886 <NA>
## 887 Conservative
## 888 Ulster Unionist Party (nir)
## 889 <NA>
## 890 Democratic Unionist Party (nir)
## 891 Labour
## 892 <NA>
## 893 <NA>
## 894 <NA>
## 895 <NA>
## 896 <NA>
## 897 Labour
## 898 <NA>
## 899 <NA>
## 900 Green Party
## 901 Labour
## 902 Liberal Democrat
## 903 Labour
## 904 <NA>
## 905 <NA>
## 906 Green Party
## 907 <NA>
## 908 Conservative
## 909 Labour
## 910 Liberal Democrat
## 911 Ulster Unionist Party (nir)
## 912 Labour
## 913 Green Party
## 914 Labour
## 915 <NA>
## 916 Conservative
## 917 Conservative
## 918 Labour
## 919 Liberal Democrat
## 920 <NA>
## 921 Labour
## 922 UK Independence Party
## 923 Conservative
## 924 Conservative
## 925 <NA>
## 926 Labour
## 927 Labour
## 928 <NA>
## 929 <NA>
## 930 <NA>
## 931 Labour
## 932 Liberal Democrat
## 933 Conservative
## 934 Conservative
## 935 <NA>
## 936 <NA>
## 937 Conservative
## 938 <NA>
## 939 Liberal Democrat
## 940 <NA>
## 941 Conservative
## 942 <NA>
## 943 <NA>
## 944 Conservative
## 945 UK Independence Party
## 946 Labour
## 947 Conservative
## 948 Labour
## 949 <NA>
## 950 Green Party
## 951 <NA>
## 952 <NA>
## 953 <NA>
## 954 Liberal Democrat
## 955 Labour
## 956 <NA>
## 957 <NA>
## 958 Conservative
## 959 Conservative
## 960 <NA>
## 961 Conservative
## 962 Liberal Democrat
## 963 Conservative
## 964 <NA>
## 965 Conservative
## 966 Conservative
## 967 <NA>
## 968 Labour
## 969 Labour
## 970 Conservative
## 971 <NA>
## 972 <NA>
## 973 Conservative
## 974 Labour
## 975 <NA>
## 976 Conservative
## 977 <NA>
## 978 <NA>
## 979 Conservative
## 980 Labour
## 981 <NA>
## 982 <NA>
## 983 UK Independence Party
## 984 Liberal Democrat
## 985 Conservative
## 986 Conservative
## 987 Liberal Democrat
## 988 Conservative
## 989 UK Independence Party
## 990 Labour
## 991 Labour
## 992 <NA>
## 993 <NA>
## 994 <NA>
## 995 Labour
## 996 <NA>
## 997 Alliance Party (nir)
## 998 Conservative
## 999 Labour
## 1000 <NA>
## 1001 Labour
## 1002 <NA>
## 1003 Labour
## 1004 <NA>
## 1005 Conservative
## 1006 <NA>
## 1007 <NA>
## 1008 <NA>
## 1009 <NA>
## 1010 <NA>
## 1011 <NA>
## 1012 <NA>
## 1013 <NA>
## 1014 Labour
## 1015 Labour
## 1016 <NA>
## 1017 Conservative
## 1018 Labour
## 1019 Labour
## 1020 Labour
## 1021 <NA>
## 1022 Labour
## 1023 <NA>
## 1024 <NA>
## 1025 Labour
## 1026 Conservative
## 1027 Labour
## 1028 Liberal Democrat
## 1029 <NA>
## 1030 <NA>
## 1031 <NA>
## 1032 Liberal Democrat
## 1033 Conservative
## 1034 Conservative
## 1035 <NA>
## 1036 UK Independence Party
## 1037 Labour
## 1038 Conservative
## 1039 Green Party
## 1040 Scottish National Party
## 1041 <NA>
## 1042 Conservative
## 1043 <NA>
## 1044 Labour
## 1045 <NA>
## 1046 Labour
## 1047 Liberal Democrat
## 1048 <NA>
## 1049 <NA>
## 1050 Conservative
## 1051 <NA>
## 1052 Labour
## 1053 <NA>
## 1054 Conservative
## 1055 Green Party
## 1056 <NA>
## 1057 Labour
## 1058 Green Party
## 1059 <NA>
## 1060 <NA>
## 1061 Labour
## 1062 <NA>
## 1063 Conservative
## 1064 <NA>
## 1065 <NA>
## 1066 Labour
## 1067 <NA>
## 1068 <NA>
## 1069 Conservative
## 1070 Conservative
## 1071 <NA>
## 1072 <NA>
## 1073 Labour
## 1074 Labour
## 1075 Labour
## 1076 <NA>
## 1077 Conservative
## 1078 Green Party
## 1079 Labour
## 1080 Labour
## 1081 Conservative
## 1082 Conservative
## 1083 <NA>
## 1084 Conservative
## 1085 Conservative
## 1086 Labour
## 1087 Labour
## 1088 <NA>
## 1089 Liberal Democrat
## 1090 <NA>
## 1091 Labour
## 1092 <NA>
## 1093 <NA>
## 1094 Labour
## 1095 UK Independence Party
## 1096 Labour
## 1097 <NA>
## 1098 <NA>
## 1099 Conservative
## 1100 Scottish National Party
## 1101 Conservative
## 1102 <NA>
## 1103 <NA>
## 1104 Labour
## 1105 <NA>
## 1106 <NA>
## 1107 Conservative
## 1108 <NA>
## 1109 <NA>
## 1110 Labour
## 1111 <NA>
## 1112 Ulster Unionist Party (nir)
## 1113 Conservative
## 1114 <NA>
## 1115 Liberal Democrat
## 1116 Conservative
## 1117 <NA>
## 1118 <NA>
## 1119 <NA>
## 1120 Conservative
## 1121 Ulster Unionist Party (nir)
## 1122 Labour
## 1123 <NA>
## 1124 <NA>
## 1125 Labour
## 1126 Liberal Democrat
## 1127 <NA>
## 1128 Conservative
## 1129 Liberal Democrat
## 1130 Labour
## 1131 <NA>
## 1132 UK Independence Party
## 1133 Labour
## 1134 Liberal Democrat
## 1135 UK Independence Party
## 1136 Labour
## 1137 Conservative
## 1138 <NA>
## 1139 <NA>
## 1140 <NA>
## 1141 <NA>
## 1142 Labour
## 1143 <NA>
## 1144 Labour
## 1145 Liberal Democrat
## 1146 Conservative
## 1147 <NA>
## 1148 Labour
## 1149 UK Independence Party
## 1150 <NA>
## 1151 Labour
## 1152 Labour
## 1153 <NA>
## 1154 <NA>
## 1155 Liberal Democrat
## 1156 Labour
## 1157 Conservative
## 1158 <NA>
## 1159 <NA>
## 1160 Labour
## 1161 Conservative
## 1162 <NA>
## 1163 Liberal Democrat
## 1164 Conservative
## 1165 Labour
## 1166 Ulster Unionist Party (nir)
## 1167 Conservative
## 1168 <NA>
## 1169 <NA>
## 1170 <NA>
## 1171 <NA>
## 1172 <NA>
## 1173 <NA>
## 1174 <NA>
## 1175 Labour
## 1176 <NA>
## 1177 Conservative
## 1178 Labour
## 1179 Green Party
## 1180 <NA>
## 1181 <NA>
## 1182 <NA>
## 1183 Labour
## 1184 Conservative
## 1185 Labour
## 1186 Liberal Democrat
## 1187 Conservative
## 1188 <NA>
## 1189 <NA>
## 1190 Conservative
## 1191 <NA>
## 1192 Liberal Democrat
## 1193 Labour
## 1194 Conservative
## 1195 Alliance Party (nir)
## 1196 Liberal Democrat
## 1197 <NA>
## 1198 <NA>
## 1199 Conservative
## 1200 Liberal Democrat
## 1201 Conservative
## 1202 UK Independence Party
## 1203 Conservative
## 1204 Labour
## 1205 <NA>
## 1206 UK Independence Party
## 1207 Labour
## 1208 <NA>
## 1209 <NA>
## 1210 <NA>
## 1211 Labour
## 1212 UK Independence Party
## 1213 <NA>
## 1214 Conservative
## 1215 Liberal Democrat
## 1216 Conservative
## 1217 Liberal Democrat
## 1218 <NA>
## 1219 Labour
## 1220 Labour
## 1221 <NA>
## 1222 Conservative
## 1223 UK Independence Party
## 1224 <NA>
## 1225 Labour
## 1226 <NA>
## 1227 UK Independence Party
## 1228 <NA>
## 1229 Liberal Democrat
## 1230 Conservative
## 1231 <NA>
## 1232 Conservative
## 1233 Other
## 1234 <NA>
## 1235 Conservative
## 1236 Labour
## 1237 <NA>
## 1238 Liberal Democrat
## 1239 Labour
## 1240 Conservative
## 1241 Green Party
## 1242 Labour
## 1243 <NA>
## 1244 Conservative
## 1245 <NA>
## 1246 <NA>
## 1247 UK Independence Party
## 1248 <NA>
## 1249 <NA>
## 1250 <NA>
## 1251 Conservative
## 1252 Liberal Democrat
## 1253 Conservative
## 1254 <NA>
## 1255 <NA>
## 1256 Conservative
## 1257 <NA>
## 1258 Liberal Democrat
## 1259 <NA>
## 1260 Labour
## 1261 <NA>
## 1262 <NA>
## 1263 <NA>
## 1264 <NA>
## 1265 Labour
## 1266 UK Independence Party
## 1267 UK Independence Party
## 1268 <NA>
## 1269 <NA>
## 1270 UK Independence Party
## 1271 <NA>
## 1272 <NA>
## 1273 Labour
## 1274 Labour
## 1275 <NA>
## 1276 Labour
## 1277 <NA>
## 1278 Conservative
## 1279 <NA>
## 1280 <NA>
## 1281 Sinn Fein (nir)
## 1282 <NA>
## 1283 Labour
## 1284 Labour
## 1285 Liberal Democrat
## 1286 <NA>
## 1287 Liberal Democrat
## 1288 <NA>
## 1289 Labour
## 1290 <NA>
## 1291 Conservative
## 1292 Conservative
## 1293 <NA>
## 1294 <NA>
## 1295 <NA>
## 1296 Other
## 1297 <NA>
## 1298 <NA>
## 1299 Conservative
## 1300 UK Independence Party
## 1301 <NA>
## 1302 <NA>
## 1303 UK Independence Party
## 1304 <NA>
## 1305 Labour
## 1306 <NA>
## 1307 Scottish National Party
## 1308 <NA>
## 1309 <NA>
## 1310 Conservative
## 1311 Labour
## 1312 Labour
## 1313 Conservative
## 1314 Conservative
## 1315 Labour
## 1316 Conservative
## 1317 Labour
## 1318 Plaid Cymru
## 1319 <NA>
## 1320 Conservative
## 1321 Conservative
## 1322 Labour
## 1323 Conservative
## 1324 <NA>
## 1325 <NA>
## 1326 Liberal Democrat
## 1327 <NA>
## 1328 Labour
## 1329 UK Independence Party
## 1330 Conservative
## 1331 Social Democratic and Labour Party (nir)
## 1332 Labour
## 1333 Conservative
## 1334 Conservative
## 1335 UK Independence Party
## 1336 Labour
## 1337 UK Independence Party
## 1338 Labour
## 1339 Liberal Democrat
## 1340 Conservative
## 1341 Labour
## 1342 Conservative
## 1343 Conservative
## 1344 Conservative
## 1345 <NA>
## 1346 Conservative
## 1347 Labour
## 1348 UK Independence Party
## 1349 Labour
## 1350 <NA>
## 1351 Labour
## 1352 Liberal Democrat
## 1353 <NA>
## 1354 Liberal Democrat
## 1355 <NA>
## 1356 Labour
## 1357 Conservative
## 1358 Labour
## 1359 <NA>
## 1360 <NA>
## 1361 Conservative
## 1362 <NA>
## 1363 <NA>
## 1364 Liberal Democrat
## 1365 <NA>
## 1366 <NA>
## 1367 <NA>
## 1368 Conservative
## 1369 Conservative
## 1370 <NA>
## 1371 Liberal Democrat
## 1372 Liberal Democrat
## 1373 <NA>
## 1374 Liberal Democrat
## 1375 Conservative
## 1376 Conservative
## 1377 <NA>
## 1378 <NA>
## 1379 <NA>
## 1380 <NA>
## 1381 <NA>
## 1382 <NA>
## 1383 <NA>
## 1384 Conservative
## 1385 Conservative
## 1386 <NA>
## 1387 <NA>
## 1388 <NA>
## 1389 Labour
## 1390 Labour
## 1391 Conservative
## 1392 Conservative
## 1393 <NA>
## 1394 <NA>
## 1395 <NA>
## 1396 Conservative
## 1397 <NA>
## 1398 Liberal Democrat
## 1399 <NA>
## 1400 <NA>
## 1401 Conservative
## 1402 Alliance Party (nir)
## 1403 <NA>
## 1404 Liberal Democrat
## 1405 UK Independence Party
## 1406 UK Independence Party
## 1407 Conservative
## 1408 Conservative
## 1409 Conservative
## 1410 Labour
## 1411 Labour
## 1412 Liberal Democrat
## 1413 Conservative
## 1414 Labour
## 1415 Conservative
## 1416 Conservative
## 1417 <NA>
## 1418 Labour
## 1419 <NA>
## 1420 UK Independence Party
## 1421 <NA>
## 1422 <NA>
## 1423 Liberal Democrat
## 1424 <NA>
## 1425 Labour
## 1426 Conservative
## 1427 Conservative
## 1428 Conservative
## 1429 Labour
## 1430 <NA>
## 1431 Labour
## 1432 UK Independence Party
## 1433 UK Independence Party
## 1434 <NA>
## 1435 Labour
## 1436 Conservative
## 1437 Labour
## 1438 Labour
## 1439 <NA>
## 1440 <NA>
## 1441 Liberal Democrat
## 1442 <NA>
## 1443 Conservative
## 1444 <NA>
## 1445 <NA>
## 1446 UK Independence Party
## 1447 UK Independence Party
## 1448 <NA>
## 1449 Liberal Democrat
## 1450 <NA>
## 1451 <NA>
## 1452 <NA>
## 1453 <NA>
## 1454 Green Party
## 1455 Green Party
## 1456 <NA>
## 1457 UK Independence Party
## 1458 Labour
## 1459 <NA>
## 1460 Conservative
## 1461 Liberal Democrat
## 1462 <NA>
## 1463 <NA>
## 1464 Conservative
## 1465 Labour
## 1466 <NA>
## 1467 Labour
## 1468 Conservative
## 1469 Conservative
## 1470 Conservative
## 1471 <NA>
## 1472 Other
## 1473 <NA>
## 1474 <NA>
## 1475 <NA>
## 1476 <NA>
## 1477 <NA>
## 1478 <NA>
## 1479 Liberal Democrat
## 1480 Conservative
## 1481 <NA>
## 1482 UK Independence Party
## 1483 Conservative
## 1484 Labour
## 1485 Labour
## 1486 <NA>
## 1487 Liberal Democrat
## 1488 Conservative
## 1489 <NA>
## 1490 Conservative
## 1491 <NA>
## 1492 Scottish National Party
## 1493 Conservative
## 1494 UK Independence Party
## 1495 Labour
## 1496 Labour
## 1497 <NA>
## 1498 Labour
## 1499 <NA>
## 1500 <NA>
## 1501 Conservative
## 1502 Conservative
## 1503 Ulster Unionist Party (nir)
## 1504 Liberal Democrat
## 1505 Labour
## 1506 Labour
## 1507 Labour
## 1508 <NA>
## 1509 <NA>
## 1510 <NA>
## 1511 Liberal Democrat
## 1512 Labour
## 1513 <NA>
## 1514 <NA>
## 1515 <NA>
## 1516 Labour
## 1517 <NA>
## 1518 <NA>
## 1519 Scottish National Party
## 1520 Liberal Democrat
## 1521 <NA>
## 1522 Conservative
## 1523 <NA>
## 1524 Labour
## 1525 UK Independence Party
## 1526 <NA>
## 1527 <NA>
## 1528 Democratic Unionist Party (nir)
## 1529 Conservative
## 1530 Conservative
## 1531 <NA>
## 1532 Labour
## 1533 <NA>
## 1534 Conservative
## 1535 <NA>
## 1536 Labour
## 1537 Conservative
## 1538 Labour
## 1539 <NA>
## 1540 Conservative
## 1541 <NA>
## 1542 Scottish National Party
## 1543 Conservative
## 1544 Conservative
## 1545 Plaid Cymru
## 1546 <NA>
## 1547 <NA>
## 1548 Labour
## 1549 <NA>
## 1550 Liberal Democrat
## 1551 Conservative
## 1552 Conservative
## 1553 Labour
## 1554 <NA>
## 1555 <NA>
## 1556 UK Independence Party
## 1557 <NA>
## 1558 Labour
## 1559 Liberal Democrat
## 1560 Labour
## 1561 <NA>
## 1562 Green Party
## 1563 Scottish National Party
## 1564 Liberal Democrat
## 1565 <NA>
## 1566 <NA>
## 1567 <NA>
## 1568 Conservative
## 1569 Conservative
## 1570 Labour
## 1571 Liberal Democrat
## 1572 Labour
## 1573 <NA>
## 1574 Labour
## 1575 Labour
## 1576 <NA>
## 1577 Conservative
## 1578 Conservative
## 1579 UK Independence Party
## 1580 Labour
## 1581 Conservative
## 1582 Labour
## 1583 <NA>
## 1584 <NA>
## 1585 Labour
## 1586 UK Independence Party
## 1587 <NA>
## 1588 <NA>
## 1589 <NA>
## 1590 Liberal Democrat
## 1591 <NA>
## 1592 Labour
## 1593 Liberal Democrat
## 1594 <NA>
## 1595 Labour
## 1596 Scottish National Party
## 1597 <NA>
## 1598 Conservative
## 1599 Conservative
## 1600 Green Party
## 1601 Labour
## 1602 Liberal Democrat
## 1603 <NA>
## 1604 Conservative
## 1605 UK Independence Party
## 1606 Liberal Democrat
## 1607 <NA>
## 1608 Liberal Democrat
## 1609 Labour
## 1610 <NA>
## 1611 Conservative
## 1612 <NA>
## 1613 <NA>
## 1614 Liberal Democrat
## 1615 <NA>
## 1616 Liberal Democrat
## 1617 Labour
## 1618 <NA>
## 1619 Conservative
## 1620 Green Party
## 1621 <NA>
## 1622 Labour
## 1623 Conservative
## 1624 Conservative
## 1625 Scottish National Party
## 1626 UK Independence Party
## 1627 <NA>
## 1628 <NA>
## 1629 <NA>
## 1630 <NA>
## 1631 Conservative
## 1632 Labour
## 1633 <NA>
## 1634 <NA>
## 1635 <NA>
## 1636 <NA>
## 1637 <NA>
## 1638 Other
## 1639 Labour
## 1640 UK Independence Party
## 1641 <NA>
## 1642 Labour
## 1643 Liberal Democrat
## 1644 Labour
## 1645 Conservative
## 1646 Labour
## 1647 Labour
## 1648 Labour
## 1649 Liberal Democrat
## 1650 <NA>
## 1651 Labour
## 1652 <NA>
## 1653 <NA>
## 1654 Conservative
## 1655 <NA>
## 1656 Liberal Democrat
## 1657 Conservative
## 1658 UK Independence Party
## 1659 Conservative
## 1660 Conservative
## 1661 Conservative
## 1662 Conservative
## 1663 Other
## 1664 Conservative
## 1665 Labour
## 1666 <NA>
## 1667 Labour
## 1668 <NA>
## 1669 <NA>
## 1670 <NA>
## 1671 <NA>
## 1672 <NA>
## 1673 Conservative
## 1674 Conservative
## 1675 Liberal Democrat
## 1676 <NA>
## 1677 <NA>
## 1678 <NA>
## 1679 Liberal Democrat
## 1680 Conservative
## 1681 Conservative
## 1682 <NA>
## 1683 Conservative
## 1684 Conservative
## 1685 <NA>
## 1686 <NA>
## 1687 Other
## 1688 Conservative
## 1689 <NA>
## 1690 <NA>
## 1691 Labour
## 1692 <NA>
## 1693 Conservative
## 1694 <NA>
## 1695 <NA>
## 1696 <NA>
## 1697 Scottish National Party
## 1698 Labour
## 1699 <NA>
## 1700 Conservative
## 1701 <NA>
## 1702 <NA>
## 1703 Social Democratic and Labour Party (nir)
## 1704 Conservative
## 1705 Conservative
## 1706 <NA>
## 1707 <NA>
## 1708 Liberal Democrat
## 1709 Conservative
## 1710 UK Independence Party
## 1711 Conservative
## 1712 <NA>
## 1713 Conservative
## 1714 <NA>
## 1715 Labour
## 1716 <NA>
## 1717 Labour
## 1718 <NA>
## 1719 Conservative
## 1720 Conservative
## 1721 <NA>
## 1722 Conservative
## 1723 Conservative
## 1724 Liberal Democrat
## 1725 <NA>
## 1726 Labour
## 1727 <NA>
## 1728 Labour
## 1729 Labour
## 1730 <NA>
## 1731 Conservative
## 1732 <NA>
## 1733 Liberal Democrat
## 1734 Labour
## 1735 Conservative
## 1736 Scottish National Party
## 1737 Conservative
## 1738 UK Independence Party
## 1739 Liberal Democrat
## 1740 <NA>
## 1741 Conservative
## 1742 <NA>
## 1743 Liberal Democrat
## 1744 <NA>
## 1745 <NA>
## 1746 Conservative
## 1747 <NA>
## 1748 <NA>
## 1749 Labour
## 1750 <NA>
## 1751 Labour
## 1752 <NA>
## 1753 Conservative
## 1754 Liberal Democrat
## 1755 <NA>
## 1756 <NA>
## 1757 <NA>
## 1758 <NA>
## 1759 <NA>
## 1760 <NA>
## 1761 Conservative
## 1762 Labour
## 1763 <NA>
## 1764 Labour
## 1765 Conservative
## 1766 Labour
## 1767 Labour
## 1768 Liberal Democrat
## 1769 <NA>
## 1770 Labour
## 1771 <NA>
## 1772 Labour
## 1773 Labour
## 1774 <NA>
## 1775 <NA>
## 1776 Conservative
## 1777 Labour
## 1778 Liberal Democrat
## 1779 Labour
## 1780 Labour
## 1781 <NA>
## 1782 Conservative
## 1783 UK Independence Party
## 1784 <NA>
## 1785 UK Independence Party
## 1786 Liberal Democrat
## 1787 <NA>
## 1788 <NA>
## 1789 Liberal Democrat
## 1790 Green Party
## 1791 Conservative
## 1792 Liberal Democrat
## 1793 <NA>
## 1794 Conservative
## 1795 <NA>
## 1796 <NA>
## 1797 Conservative
## 1798 Labour
## 1799 Liberal Democrat
## 1800 <NA>
## 1801 <NA>
## 1802 Liberal Democrat
## 1803 Labour
## 1804 Conservative
## 1805 <NA>
## 1806 <NA>
## 1807 <NA>
## 1808 <NA>
## 1809 <NA>
## 1810 Plaid Cymru
## 1811 <NA>
## 1812 Labour
## 1813 <NA>
## 1814 Other
## 1815 <NA>
## 1816 Conservative
## 1817 Conservative
## 1818 Labour
## 1819 Labour
## 1820 <NA>
## 1821 Conservative
## 1822 Scottish National Party
## 1823 Conservative
## 1824 <NA>
## 1825 Labour
## 1826 Conservative
## 1827 <NA>
## 1828 Labour
## 1829 Liberal Democrat
## 1830 UK Independence Party
## 1831 Green Party
## 1832 UK Independence Party
## 1833 <NA>
## 1834 <NA>
## 1835 <NA>
## 1836 Liberal Democrat
## 1837 Conservative
## 1838 Labour
## 1839 Labour
## 1840 Labour
## 1841 Conservative
## 1842 Conservative
## 1843 <NA>
## 1844 Conservative
## 1845 Labour
## 1846 Labour
## 1847 UK Independence Party
## 1848 <NA>
## 1849 <NA>
## 1850 <NA>
## 1851 <NA>
## 1852 <NA>
## 1853 <NA>
## 1854 <NA>
## 1855 <NA>
## 1856 <NA>
## 1857 <NA>
## 1858 Labour
## 1859 Conservative
## 1860 UK Independence Party
## 1861 Conservative
## 1862 <NA>
## 1863 Labour
## 1864 <NA>
## 1865 <NA>
## 1866 Conservative
## 1867 Democratic Unionist Party (nir)
## 1868 Conservative
## 1869 Labour
## 1870 <NA>
## 1871 UK Independence Party
## 1872 <NA>
## 1873 UK Independence Party
## 1874 Labour
## 1875 <NA>
## 1876 Labour
## 1877 Conservative
## 1878 Labour
## 1879 <NA>
## 1880 Liberal Democrat
## 1881 Conservative
## 1882 Labour
## 1883 Labour
## 1884 UK Independence Party
## 1885 Conservative
## 1886 Liberal Democrat
## 1887 <NA>
## 1888 Conservative
## 1889 Conservative
## 1890 Labour
## 1891 <NA>
## 1892 <NA>
## 1893 Conservative
## 1894 <NA>
## 1895 Labour
## 1896 <NA>
## 1897 Labour
## 1898 Conservative
## 1899 Green Party
## 1900 <NA>
## 1901 Labour
## 1902 Conservative
## 1903 UK Independence Party
## 1904 <NA>
## 1905 <NA>
## 1906 Labour
## 1907 Labour
## 1908 Conservative
## 1909 Conservative
## 1910 <NA>
## 1911 Labour
## 1912 Conservative
## 1913 Labour
## 1914 Conservative
## 1915 <NA>
## 1916 <NA>
## 1917 Conservative
## 1918 Labour
## 1919 Conservative
## 1920 Conservative
## 1921 Conservative
## 1922 Liberal Democrat
## 1923 UK Independence Party
## 1924 <NA>
## 1925 Conservative
## 1926 Labour
## 1927 Conservative
## 1928 Liberal Democrat
## 1929 <NA>
## 1930 Labour
## 1931 Liberal Democrat
## 1932 Scottish National Party
## 1933 Conservative
## 1934 <NA>
## 1935 Labour
## 1936 Conservative
## 1937 <NA>
## 1938 <NA>
## 1939 Labour
## 1940 <NA>
## 1941 Liberal Democrat
## 1942 Liberal Democrat
## 1943 UK Independence Party
## 1944 <NA>
## 1945 Labour
## 1946 Liberal Democrat
## 1947 Conservative
## 1948 <NA>
## 1949 Conservative
## 1950 Conservative
## 1951 Liberal Democrat
## 1952 <NA>
## 1953 <NA>
## 1954 Conservative
## 1955 <NA>
## 1956 Labour
## 1957 <NA>
## 1958 Conservative
## 1959 <NA>
## 1960 UK Independence Party
## 1961 <NA>
## 1962 UK Independence Party
## 1963 Conservative
## 1964 Conservative
## 1965 <NA>
## 1966 <NA>
## 1967 Conservative
## 1968 Labour
## 1969 Liberal Democrat
## 1970 Labour
## 1971 <NA>
## 1972 <NA>
## 1973 Conservative
## 1974 Other
## 1975 Labour
## 1976 Conservative
## 1977 <NA>
## 1978 UK Independence Party
## 1979 <NA>
## 1980 Liberal Democrat
## 1981 <NA>
## 1982 Labour
## 1983 Conservative
## 1984 <NA>
## 1985 Conservative
## 1986 UK Independence Party
## 1987 Conservative
## 1988 Green Party
## 1989 Other
## 1990 Conservative
## 1991 Labour
## 1992 Conservative
## 1993 Labour
## 1994 Labour
## 1995 Labour
## 1996 Liberal Democrat
## 1997 Scottish National Party
## 1998 <NA>
## 1999 Conservative
## 2000 Labour
## 2001 Conservative
## 2002 <NA>
## 2003 Liberal Democrat
## 2004 Conservative
## 2005 Labour
## 2006 Labour
## 2007 <NA>
## 2008 <NA>
## 2009 <NA>
## 2010 <NA>
## 2011 <NA>
## 2012 <NA>
## 2013 Labour
## 2014 <NA>
## 2015 <NA>
## 2016 Democratic Unionist Party (nir)
## 2017 Independent(s) (nir)
## 2018 <NA>
## 2019 <NA>
## 2020 Liberal Democrat
## 2021 <NA>
## 2022 Labour
## 2023 <NA>
## 2024 <NA>
## 2025 Scottish National Party
## 2026 Labour
## 2027 Labour
## 2028 Labour
## 2029 <NA>
## 2030 <NA>
## 2031 Conservative
## 2032 <NA>
## 2033 <NA>
## 2034 <NA>
## 2035 <NA>
## 2036 Liberal Democrat
## 2037 <NA>
## 2038 Liberal Democrat
## 2039 Conservative
## 2040 Labour
## 2041 <NA>
## 2042 <NA>
## 2043 Liberal Democrat
## 2044 <NA>
## 2045 <NA>
## 2046 Labour
## 2047 <NA>
## 2048 Conservative
## 2049 Conservative
## 2050 Liberal Democrat
## 2051 <NA>
## 2052 Labour
## 2053 <NA>
## 2054 <NA>
## 2055 <NA>
## 2056 <NA>
## 2057 UK Independence Party
## 2058 Liberal Democrat
## 2059 Labour
## 2060 Labour
## 2061 Liberal Democrat
## 2062 Liberal Democrat
## 2063 <NA>
## 2064 Conservative
## 2065 <NA>
## 2066 UK Independence Party
## 2067 Labour
## 2068 Conservative
## 2069 Liberal Democrat
## 2070 <NA>
## 2071 <NA>
## 2072 Liberal Democrat
## 2073 Liberal Democrat
## 2074 <NA>
## 2075 Conservative
## 2076 Other
## 2077 <NA>
## 2078 Liberal Democrat
## 2079 <NA>
## 2080 <NA>
## 2081 <NA>
## 2082 Democratic Unionist Party (nir)
## 2083 Labour
## 2084 <NA>
## 2085 Liberal Democrat
## 2086 Liberal Democrat
## 2087 Labour
## 2088 Labour
## 2089 Liberal Democrat
## 2090 Conservative
## 2091 Conservative
## 2092 Labour
## 2093 Labour
## 2094 UK Independence Party
## 2095 UK Independence Party
## 2096 Liberal Democrat
## 2097 Labour
## 2098 <NA>
## 2099 Conservative
## 2100 <NA>
## 2101 <NA>
## 2102 Labour
## 2103 <NA>
## 2104 Liberal Democrat
## 2105 <NA>
## 2106 Labour
## 2107 <NA>
## 2108 Labour
## 2109 Green Party
## 2110 <NA>
## 2111 Labour
## 2112 <NA>
## 2113 <NA>
## 2114 Labour
## 2115 Conservative
## 2116 Liberal Democrat
## 2117 Labour
## 2118 <NA>
## 2119 Conservative
## 2120 <NA>
## 2121 <NA>
## 2122 <NA>
## 2123 <NA>
## 2124 Conservative
## 2125 Labour
## 2126 Liberal Democrat
## 2127 Conservative
## 2128 Conservative
## 2129 Conservative
## 2130 Conservative
## 2131 Labour
## 2132 Conservative
## 2133 Scottish National Party
## 2134 Liberal Democrat
## 2135 <NA>
## 2136 Conservative
## 2137 <NA>
## 2138 Democratic Unionist Party (nir)
## 2139 Conservative
## 2140 Conservative
## 2141 Conservative
## 2142 Liberal Democrat
## 2143 Conservative
## 2144 Labour
## 2145 Labour
## 2146 Liberal Democrat
## 2147 <NA>
## 2148 Conservative
## 2149 Labour
## 2150 Conservative
## 2151 Conservative
## 2152 Conservative
## 2153 Labour
## 2154 Conservative
## 2155 Scottish National Party
## 2156 <NA>
## 2157 Conservative
## 2158 Liberal Democrat
## 2159 UK Independence Party
## 2160 <NA>
## 2161 <NA>
## 2162 UK Independence Party
## 2163 Conservative
## 2164 Plaid Cymru
## 2165 Labour
## 2166 Labour
## 2167 <NA>
## 2168 Conservative
## 2169 Other
## 2170 <NA>
## 2171 <NA>
## 2172 <NA>
## 2173 Labour
## 2174 <NA>
## 2175 Plaid Cymru
## 2176 Conservative
## 2177 <NA>
## 2178 UK Independence Party
## 2179 Labour
## 2180 <NA>
## 2181 Conservative
## 2182 <NA>
## 2183 Labour
## 2184 Labour
## 2185 <NA>
## 2186 Labour
## 2187 Scottish National Party
## 2188 <NA>
## 2189 Liberal Democrat
## 2190 <NA>
## 2191 <NA>
## 2192 Other
## 2193 Labour
## 2194 Labour
## 2195 <NA>
## 2196 Labour
## 2197 Liberal Democrat
## 2198 <NA>
## 2199 <NA>
## 2200 <NA>
## 2201 <NA>
## 2202 Green Party
## 2203 UK Independence Party
## 2204 Conservative
## 2205 Conservative
## 2206 Scottish National Party
## 2207 <NA>
## 2208 Labour
## 2209 Conservative
## 2210 Conservative
## 2211 <NA>
## 2212 Liberal Democrat
## 2213 Labour
## 2214 Sinn Fein (nir)
## 2215 Conservative
## 2216 <NA>
## 2217 <NA>
## 2218 <NA>
## 2219 Other
## 2220 <NA>
## 2221 <NA>
## 2222 <NA>
## 2223 Liberal Democrat
## 2224 <NA>
## 2225 <NA>
## 2226 Conservative
## 2227 <NA>
## 2228 <NA>
## 2229 Labour
## 2230 Labour
## 2231 Conservative
## 2232 <NA>
## 2233 <NA>
## 2234 Labour
## 2235 Labour
## 2236 <NA>
## 2237 Labour
## 2238 Conservative
## 2239 Labour
## 2240 UK Independence Party
## 2241 UK Independence Party
## 2242 <NA>
## 2243 Labour
## 2244 <NA>
## 2245 <NA>
## 2246 <NA>
## 2247 <NA>
## 2248 Labour
## 2249 Other
## 2250 Conservative
## 2251 <NA>
## 2252 Conservative
## 2253 Scottish National Party
## 2254 Scottish National Party
## 2255 <NA>
## 2256 <NA>
## 2257 Conservative
## 2258 Conservative
## 2259 Conservative
## 2260 Liberal Democrat
## 2261 Labour
## 2262 Conservative
## 2263 Conservative
## 2264 <NA>
## 2265 Labour
## 2266 <NA>
## 2267 <NA>
## 2268 <NA>
## 2269 <NA>
## 2270 <NA>
## 2271 <NA>
## 2272 <NA>
## 2273 <NA>
## 2274 <NA>
## 2275 <NA>
## 2276 <NA>
## 2277 <NA>
## 2278 <NA>
## 2279 <NA>
## 2280 <NA>
## 2281 <NA>
## 2282 <NA>
## 2283 <NA>
## 2284 <NA>
## 2285 <NA>
## 2286 <NA>
## 2287 <NA>
## 2288 <NA>
## 2289 <NA>
## 2290 <NA>
## 2291 <NA>
## 2292 <NA>
## 2293 <NA>
## 2294 <NA>
## 2295 <NA>
## 2296 <NA>
## 2297 <NA>
## 2298 <NA>
## 2299 <NA>
## 2300 <NA>
## 2301 <NA>
## 2302 <NA>
## 2303 <NA>
## 2304 <NA>
## 2305 <NA>
## 2306 <NA>
## 2307 <NA>
## 2308 <NA>
## 2309 <NA>
## 2310 <NA>
## 2311 <NA>
## 2312 <NA>
## 2313 <NA>
## 2314 <NA>
## 2315 <NA>
## 2316 <NA>
## 2317 <NA>
## 2318 <NA>
## 2319 <NA>
## 2320 <NA>
## 2321 <NA>
## 2322 <NA>
## 2323 <NA>
## 2324 <NA>
## 2325 <NA>
## 2326 <NA>
## 2327 <NA>
## 2328 <NA>
## 2329 <NA>
## 2330 <NA>
## 2331 <NA>
## 2332 <NA>
## 2333 <NA>
## 2334 <NA>
## 2335 <NA>
## 2336 <NA>
## 2337 <NA>
## 2338 <NA>
## 2339 <NA>
## 2340 <NA>
## 2341 <NA>
## 2342 <NA>
## 2343 <NA>
## 2344 <NA>
## 2345 <NA>
## 2346 <NA>
## 2347 <NA>
## 2348 <NA>
## 2349 <NA>
## 2350 <NA>
## 2351 <NA>
## 2352 <NA>
## 2353 <NA>
## 2354 <NA>
## 2355 <NA>
## 2356 <NA>
## 2357 <NA>
## 2358 <NA>
## 2359 <NA>
## 2360 <NA>
## 2361 <NA>
## 2362 <NA>
## 2363 <NA>
## 2364 <NA>
## 2365 <NA>
## 2366 <NA>
## 2367 <NA>
## 2368 <NA>
## 2369 <NA>
## 2370 <NA>
## 2371 <NA>
## 2372 <NA>
## 2373 <NA>
## 2374 <NA>
## 2375 <NA>
## 2376 <NA>
## 2377 <NA>
## 2378 <NA>
## 2379 <NA>
## 2380 <NA>
## 2381 <NA>
## 2382 <NA>
## 2383 <NA>
## 2384 <NA>
## 2385 <NA>
## 2386 <NA>
## 2387 <NA>
## 2388 <NA>
## 2389 <NA>
## 2390 <NA>
## 2391 <NA>
## 2392 <NA>
## 2393 <NA>
## 2394 <NA>
## 2395 <NA>
## 2396 <NA>
## 2397 <NA>
## 2398 <NA>
## 2399 <NA>
## 2400 <NA>
## 2401 <NA>
## 2402 <NA>
## 2403 <NA>
## 2404 <NA>
## 2405 <NA>
## 2406 <NA>
## 2407 <NA>
## 2408 <NA>
## 2409 <NA>
## 2410 <NA>
## 2411 <NA>
## 2412 <NA>
## 2413 <NA>
## 2414 <NA>
## 2415 <NA>
## 2416 <NA>
## 2417 <NA>
## 2418 <NA>
## 2419 <NA>
## 2420 <NA>
## 2421 <NA>
## 2422 <NA>
## 2423 <NA>
## 2424 <NA>
## 2425 <NA>
## 2426 <NA>
## 2427 <NA>
## 2428 <NA>
## 2429 <NA>
## 2430 <NA>
## 2431 <NA>
## 2432 <NA>
## 2433 <NA>
## 2434 <NA>
## 2435 <NA>
## 2436 <NA>
## 2437 <NA>
## 2438 <NA>
## 2439 <NA>
## 2440 <NA>
## 2441 <NA>
## 2442 <NA>
## 2443 <NA>
## 2444 <NA>
## 2445 <NA>
## 2446 <NA>
## 2447 <NA>
## 2448 <NA>
## 2449 <NA>
## 2450 <NA>
## 2451 <NA>
## 2452 <NA>
## 2453 <NA>
## 2454 <NA>
## 2455 <NA>
## 2456 <NA>
## 2457 <NA>
## 2458 <NA>
## 2459 <NA>
## 2460 <NA>
## 2461 <NA>
## 2462 <NA>
## 2463 <NA>
## 2464 <NA>
## 2465 <NA>
## 2466 <NA>
## 2467 <NA>
## 2468 <NA>
## 2469 <NA>
## 2470 <NA>
## 2471 <NA>
## 2472 <NA>
## 2473 <NA>
## 2474 <NA>
## 2475 <NA>
## 2476 <NA>
## 2477 <NA>
## 2478 <NA>
## 2479 <NA>
## 2480 <NA>
## 2481 <NA>
## 2482 <NA>
## 2483 <NA>
## 2484 <NA>
## 2485 <NA>
## 2486 <NA>
## 2487 <NA>
## 2488 <NA>
## 2489 <NA>
## 2490 <NA>
## 2491 <NA>
## 2492 <NA>
## 2493 <NA>
## 2494 <NA>
## 2495 <NA>
## 2496 <NA>
## 2497 <NA>
## 2498 <NA>
## 2499 <NA>
## 2500 <NA>
## 2501 <NA>
## 2502 <NA>
## 2503 <NA>
## 2504 <NA>
## 2505 <NA>
## 2506 <NA>
## 2507 <NA>
## 2508 <NA>
## 2509 <NA>
## 2510 <NA>
## 2511 <NA>
## 2512 <NA>
## 2513 <NA>
## 2514 <NA>
## 2515 <NA>
## 2516 <NA>
## 2517 <NA>
## 2518 <NA>
## 2519 <NA>
## 2520 <NA>
## 2521 <NA>
## 2522 <NA>
## 2523 <NA>
## 2524 <NA>
## 2525 <NA>
## 2526 <NA>
## 2527 <NA>
## 2528 <NA>
## 2529 <NA>
## 2530 <NA>
## 2531 <NA>
## 2532 <NA>
## 2533 <NA>
## 2534 <NA>
## 2535 <NA>
## 2536 <NA>
## 2537 <NA>
## 2538 <NA>
## 2539 <NA>
## 2540 <NA>
## 2541 <NA>
## 2542 <NA>
## 2543 <NA>
## 2544 <NA>
## 2545 <NA>
## 2546 <NA>
## 2547 <NA>
## 2548 <NA>
## 2549 <NA>
## 2550 <NA>
## 2551 <NA>
## 2552 <NA>
## 2553 <NA>
## 2554 <NA>
## 2555 <NA>
## 2556 <NA>
## 2557 <NA>
## 2558 <NA>
## 2559 <NA>
## 2560 <NA>
## 2561 <NA>
## 2562 <NA>
## 2563 <NA>
## 2564 <NA>
## 2565 <NA>
## 2566 <NA>
## 2567 <NA>
## 2568 <NA>
## 2569 <NA>
## 2570 <NA>
## 2571 <NA>
## 2572 <NA>
## 2573 <NA>
## 2574 <NA>
## 2575 <NA>
## 2576 <NA>
## 2577 <NA>
## 2578 <NA>
## 2579 <NA>
## 2580 <NA>
## 2581 <NA>
## 2582 <NA>
## 2583 <NA>
## 2584 <NA>
## 2585 <NA>
## 2586 <NA>
## 2587 <NA>
## 2588 <NA>
## 2589 <NA>
## 2590 <NA>
## 2591 <NA>
## 2592 <NA>
## 2593 <NA>
## 2594 <NA>
## 2595 <NA>
## 2596 <NA>
## 2597 <NA>
## 2598 <NA>
## 2599 <NA>
## 2600 <NA>
## 2601 <NA>
## 2602 <NA>
## 2603 <NA>
## 2604 <NA>
## 2605 <NA>
## 2606 <NA>
## 2607 <NA>
## 2608 <NA>
## 2609 <NA>
## 2610 <NA>
## 2611 <NA>
## 2612 <NA>
## 2613 <NA>
## 2614 <NA>
## 2615 <NA>
## 2616 <NA>
## 2617 <NA>
## 2618 <NA>
## 2619 <NA>
## 2620 <NA>
## 2621 <NA>
## 2622 <NA>
## 2623 <NA>
## 2624 <NA>
## 2625 <NA>
## 2626 <NA>
## 2627 <NA>
## 2628 <NA>
## 2629 <NA>
## 2630 <NA>
## 2631 <NA>
## 2632 <NA>
## 2633 <NA>
## 2634 <NA>
## 2635 <NA>
## 2636 <NA>
## 2637 <NA>
## 2638 <NA>
## 2639 <NA>
## 2640 <NA>
## 2641 <NA>
## 2642 <NA>
## 2643 <NA>
## 2644 <NA>
## 2645 <NA>
## 2646 <NA>
## 2647 <NA>
## 2648 <NA>
## 2649 <NA>
## 2650 <NA>
## 2651 <NA>
## 2652 <NA>
## 2653 <NA>
## 2654 <NA>
## 2655 <NA>
## 2656 <NA>
## 2657 <NA>
## 2658 <NA>
## 2659 <NA>
## 2660 <NA>
## 2661 <NA>
## 2662 <NA>
## 2663 <NA>
## 2664 <NA>
## 2665 <NA>
## 2666 <NA>
## 2667 <NA>
## 2668 <NA>
## 2669 <NA>
## 2670 <NA>
## 2671 <NA>
## 2672 <NA>
## 2673 <NA>
## 2674 <NA>
## 2675 <NA>
## 2676 <NA>
## 2677 <NA>
## 2678 <NA>
## 2679 <NA>
## 2680 <NA>
## 2681 <NA>
## 2682 <NA>
## 2683 <NA>
## 2684 <NA>
## 2685 <NA>
## 2686 <NA>
## 2687 <NA>
## 2688 <NA>
## 2689 <NA>
## 2690 <NA>
## 2691 <NA>
## 2692 <NA>
## 2693 <NA>
## 2694 <NA>
## 2695 <NA>
## 2696 <NA>
## 2697 <NA>
## 2698 <NA>
## 2699 <NA>
## 2700 <NA>
## 2701 <NA>
## 2702 <NA>
## 2703 <NA>
## 2704 <NA>
## 2705 <NA>
## 2706 <NA>
## 2707 <NA>
## 2708 <NA>
## 2709 <NA>
## 2710 <NA>
## 2711 <NA>
## 2712 <NA>
## 2713 <NA>
## 2714 <NA>
## 2715 <NA>
## 2716 <NA>
## 2717 <NA>
## 2718 <NA>
## 2719 <NA>
## 2720 <NA>
## 2721 <NA>
## 2722 <NA>
## 2723 <NA>
## 2724 <NA>
## 2725 <NA>
## 2726 <NA>
## 2727 <NA>
## 2728 <NA>
## 2729 <NA>
## 2730 <NA>
## 2731 <NA>
## 2732 <NA>
## 2733 <NA>
## 2734 <NA>
## 2735 <NA>
## 2736 <NA>
## 2737 <NA>
## 2738 <NA>
## 2739 <NA>
## 2740 <NA>
## 2741 <NA>
## 2742 <NA>
## 2743 <NA>
## 2744 <NA>
## 2745 <NA>
## 2746 <NA>
## 2747 <NA>
## 2748 <NA>
## 2749 <NA>
## 2750 <NA>
## 2751 <NA>
## 2752 <NA>
## 2753 <NA>
## 2754 <NA>
## 2755 <NA>
## 2756 <NA>
## 2757 <NA>
## 2758 <NA>
## 2759 <NA>
## 2760 <NA>
## 2761 <NA>
## 2762 <NA>
## 2763 <NA>
## 2764 <NA>
## 2765 <NA>
## 2766 <NA>
## 2767 <NA>
## 2768 <NA>
## 2769 <NA>
## 2770 <NA>
## 2771 <NA>
## 2772 <NA>
## 2773 <NA>
## 2774 <NA>
## 2775 <NA>
## 2776 <NA>
## 2777 <NA>
## 2778 <NA>
## 2779 <NA>
## 2780 <NA>
## 2781 <NA>
## 2782 <NA>
## 2783 <NA>
## 2784 <NA>
## 2785 <NA>
## 2786 <NA>
## 2787 <NA>
## 2788 <NA>
## 2789 <NA>
## 2790 <NA>
## 2791 <NA>
## 2792 <NA>
## 2793 <NA>
## 2794 <NA>
## 2795 <NA>
## 2796 <NA>
## 2797 <NA>
## 2798 <NA>
## 2799 <NA>
## 2800 <NA>
## 2801 <NA>
## 2802 <NA>
## 2803 <NA>
## 2804 <NA>
## 2805 <NA>
## 2806 <NA>
## 2807 <NA>
## 2808 <NA>
## 2809 <NA>
## 2810 <NA>
## 2811 <NA>
## 2812 <NA>
## 2813 <NA>
## 2814 <NA>
## 2815 <NA>
## 2816 <NA>
## 2817 <NA>
## 2818 <NA>
## 2819 <NA>
## 2820 <NA>
## 2821 <NA>
## 2822 <NA>
## 2823 <NA>
## 2824 <NA>
## 2825 <NA>
## 2826 <NA>
## 2827 <NA>
## 2828 <NA>
## 2829 <NA>
## 2830 <NA>
## 2831 <NA>
## 2832 <NA>
## 2833 <NA>
## 2834 <NA>
## 2835 <NA>
## 2836 <NA>
## 2837 <NA>
## 2838 <NA>
## 2839 <NA>
## 2840 <NA>
## 2841 <NA>
## 2842 <NA>
## 2843 <NA>
## 2844 <NA>
## 2845 <NA>
## 2846 <NA>
## 2847 <NA>
## 2848 <NA>
## 2849 <NA>
## 2850 <NA>
## 2851 <NA>
## 2852 <NA>
## 2853 <NA>
## 2854 <NA>
## 2855 <NA>
## 2856 <NA>
## 2857 <NA>
## 2858 <NA>
## 2859 <NA>
## 2860 <NA>
## 2861 <NA>
## 2862 <NA>
## 2863 <NA>
## 2864 <NA>
## 2865 <NA>
## 2866 <NA>
## 2867 <NA>
## 2868 <NA>
## 2869 <NA>
## 2870 <NA>
## 2871 <NA>
## 2872 <NA>
## 2873 <NA>
## 2874 <NA>
## 2875 <NA>
## 2876 <NA>
## 2877 <NA>
## 2878 <NA>
## 2879 <NA>
## 2880 <NA>
## 2881 <NA>
## 2882 <NA>
## 2883 <NA>
## 2884 <NA>
## 2885 <NA>
## 2886 <NA>
## 2887 <NA>
## 2888 <NA>
## 2889 <NA>
## 2890 <NA>
## 2891 <NA>
## 2892 <NA>
## 2893 <NA>
## 2894 <NA>
## 2895 <NA>
## 2896 <NA>
## 2897 <NA>
## 2898 <NA>
## 2899 <NA>
## 2900 <NA>
## 2901 <NA>
## 2902 <NA>
## 2903 <NA>
## 2904 <NA>
## 2905 <NA>
## 2906 <NA>
## 2907 <NA>
## 2908 <NA>
## 2909 <NA>
## 2910 <NA>
## 2911 <NA>
## 2912 <NA>
## 2913 <NA>
## 2914 <NA>
## 2915 <NA>
## 2916 <NA>
## 2917 <NA>
## 2918 <NA>
## 2919 <NA>
## 2920 <NA>
## 2921 <NA>
## 2922 <NA>
## 2923 <NA>
## 2924 <NA>
## 2925 <NA>
## 2926 <NA>
## 2927 <NA>
## 2928 <NA>
## 2929 <NA>
## 2930 <NA>
## 2931 <NA>
## 2932 <NA>
## 2933 <NA>
## 2934 <NA>
## 2935 <NA>
## 2936 <NA>
## 2937 <NA>
## 2938 <NA>
## 2939 <NA>
## 2940 <NA>
## 2941 <NA>
## 2942 <NA>
## 2943 <NA>
## 2944 <NA>
## 2945 <NA>
## 2946 <NA>
## 2947 <NA>
## 2948 <NA>
## 2949 <NA>
## 2950 <NA>
## 2951 <NA>
## 2952 <NA>
## 2953 <NA>
## 2954 <NA>
## 2955 <NA>
## 2956 <NA>
## 2957 <NA>
## 2958 <NA>
## 2959 <NA>
## 2960 <NA>
## 2961 <NA>
## 2962 <NA>
## 2963 <NA>
## 2964 <NA>
## 2965 <NA>
## 2966 <NA>
## 2967 <NA>
## 2968 <NA>
## 2969 <NA>
## 2970 <NA>
## 2971 <NA>
## 2972 <NA>
## 2973 <NA>
## 2974 <NA>
## 2975 <NA>
## 2976 <NA>
## 2977 <NA>
## 2978 <NA>
## 2979 <NA>
## 2980 <NA>
## 2981 <NA>
## 2982 <NA>
## 2983 <NA>
## 2984 <NA>
## 2985 <NA>
## 2986 <NA>
## 2987 <NA>
## 2988 <NA>
## 2989 <NA>
## 2990 <NA>
## 2991 <NA>
## 2992 <NA>
## 2993 <NA>
## 2994 <NA>
## 2995 <NA>
## 2996 <NA>
## 2997 <NA>
## 2998 <NA>
## 2999 <NA>
## 3000 <NA>
## 3001 <NA>
## 3002 <NA>
## 3003 <NA>
## 3004 <NA>
## 3005 <NA>
## 3006 <NA>
## 3007 <NA>
## 3008 <NA>
## 3009 <NA>
## 3010 <NA>
## 3011 <NA>
## 3012 <NA>
## 3013 <NA>
## 3014 <NA>
## 3015 <NA>
## 3016 <NA>
## 3017 <NA>
## 3018 <NA>
## 3019 <NA>
## 3020 <NA>
## 3021 <NA>
## 3022 <NA>
## 3023 <NA>
## 3024 <NA>
## 3025 <NA>
## 3026 <NA>
## 3027 <NA>
## 3028 <NA>
## 3029 <NA>
## 3030 <NA>
## 3031 <NA>
## 3032 <NA>
## 3033 <NA>
## 3034 <NA>
## 3035 <NA>
## 3036 <NA>
## 3037 <NA>
## 3038 <NA>
## 3039 <NA>
## 3040 <NA>
## 3041 <NA>
## 3042 <NA>
## 3043 <NA>
## 3044 <NA>
## 3045 <NA>
## 3046 <NA>
## 3047 <NA>
## 3048 <NA>
## 3049 <NA>
## 3050 <NA>
## 3051 <NA>
## 3052 <NA>
## 3053 <NA>
## 3054 <NA>
## 3055 <NA>
## 3056 <NA>
## 3057 <NA>
## 3058 <NA>
## 3059 <NA>
## 3060 <NA>
## 3061 <NA>
## 3062 <NA>
## 3063 <NA>
## 3064 <NA>
## 3065 <NA>
## 3066 <NA>
## 3067 <NA>
## 3068 <NA>
## 3069 <NA>
## 3070 <NA>
## 3071 <NA>
## 3072 <NA>
## 3073 <NA>
## 3074 <NA>
## 3075 <NA>
## 3076 <NA>
## 3077 <NA>
## 3078 <NA>
## 3079 <NA>
## 3080 <NA>
## 3081 <NA>
## 3082 <NA>
## 3083 <NA>
## 3084 <NA>
## 3085 <NA>
## 3086 <NA>
## 3087 <NA>
## 3088 <NA>
## 3089 <NA>
## 3090 <NA>
## 3091 <NA>
## 3092 <NA>
## 3093 <NA>
## 3094 <NA>
## 3095 <NA>
## 3096 <NA>
## 3097 <NA>
## 3098 <NA>
## 3099 <NA>
## 3100 <NA>
## 3101 <NA>
## 3102 <NA>
## 3103 <NA>
## 3104 <NA>
## 3105 <NA>
## 3106 <NA>
## 3107 <NA>
## 3108 <NA>
## 3109 <NA>
## 3110 <NA>
## 3111 <NA>
## 3112 <NA>
## 3113 <NA>
## 3114 <NA>
## 3115 <NA>
## 3116 <NA>
## 3117 <NA>
## 3118 <NA>
## 3119 <NA>
## 3120 <NA>
## 3121 <NA>
## 3122 <NA>
## 3123 <NA>
## 3124 <NA>
## 3125 <NA>
## 3126 <NA>
## 3127 <NA>
## 3128 <NA>
## 3129 <NA>
## 3130 <NA>
## 3131 <NA>
## 3132 <NA>
## 3133 <NA>
## 3134 <NA>
## 3135 <NA>
## 3136 <NA>
## 3137 <NA>
## 3138 <NA>
## 3139 <NA>
## 3140 <NA>
## 3141 <NA>
## 3142 <NA>
## 3143 <NA>
## 3144 <NA>
## 3145 <NA>
## 3146 <NA>
## 3147 <NA>
## 3148 <NA>
## 3149 <NA>
## 3150 <NA>
## 3151 <NA>
## 3152 <NA>
## 3153 <NA>
## 3154 <NA>
## 3155 <NA>
## 3156 <NA>
## 3157 <NA>
## 3158 <NA>
## 3159 <NA>
## 3160 <NA>
## 3161 <NA>
## 3162 <NA>
## 3163 <NA>
## 3164 <NA>
## 3165 <NA>
## 3166 <NA>
## 3167 <NA>
## 3168 <NA>
## 3169 <NA>
## 3170 <NA>
## 3171 <NA>
## 3172 <NA>
## 3173 <NA>
## 3174 <NA>
## 3175 <NA>
## 3176 <NA>
## 3177 <NA>
## 3178 <NA>
## 3179 <NA>
## 3180 <NA>
## 3181 <NA>
## 3182 <NA>
## 3183 <NA>
## 3184 <NA>
## 3185 <NA>
## 3186 <NA>
## 3187 <NA>
## 3188 <NA>
## 3189 <NA>
## 3190 <NA>
## 3191 <NA>
## 3192 <NA>
## 3193 <NA>
## 3194 <NA>
## 3195 <NA>
## 3196 <NA>
## 3197 <NA>
## 3198 <NA>
## 3199 <NA>
## 3200 <NA>
## 3201 <NA>
## 3202 <NA>
## 3203 <NA>
## 3204 <NA>
## 3205 <NA>
## 3206 <NA>
## 3207 <NA>
## 3208 <NA>
## 3209 <NA>
## 3210 <NA>
## 3211 <NA>
## 3212 <NA>
## 3213 <NA>
## 3214 <NA>
## 3215 <NA>
## 3216 <NA>
## 3217 <NA>
## 3218 <NA>
## 3219 <NA>
## 3220 <NA>
## 3221 <NA>
## 3222 <NA>
## 3223 <NA>
## 3224 <NA>
## 3225 <NA>
## 3226 <NA>
## 3227 <NA>
## 3228 <NA>
## 3229 <NA>
## 3230 <NA>
## 3231 <NA>
## 3232 <NA>
## 3233 <NA>
## 3234 <NA>
## 3235 <NA>
## 3236 <NA>
## 3237 <NA>
## 3238 <NA>
## 3239 <NA>
## 3240 <NA>
## 3241 <NA>
## 3242 <NA>
## 3243 <NA>
## 3244 <NA>
## 3245 <NA>
## 3246 <NA>
## 3247 <NA>
## 3248 <NA>
## 3249 <NA>
## 3250 <NA>
## 3251 <NA>
## 3252 <NA>
## 3253 <NA>
## 3254 <NA>
## 3255 <NA>
## 3256 <NA>
## 3257 <NA>
## 3258 <NA>
## 3259 <NA>
## 3260 <NA>
## 3261 <NA>
## 3262 <NA>
## 3263 <NA>
## 3264 <NA>
## 3265 <NA>
## 3266 <NA>
## 3267 <NA>
## 3268 <NA>
## 3269 <NA>
## 3270 <NA>
## 3271 <NA>
## 3272 <NA>
## 3273 <NA>
## 3274 <NA>
## 3275 <NA>
## 3276 <NA>
## 3277 <NA>
## 3278 <NA>
## 3279 <NA>
## 3280 <NA>
## 3281 <NA>
## 3282 <NA>
## 3283 <NA>
## 3284 <NA>
## 3285 <NA>
## 3286 <NA>
## 3287 <NA>
## 3288 <NA>
## 3289 <NA>
## 3290 <NA>
## 3291 <NA>
## 3292 <NA>
## 3293 <NA>
## 3294 <NA>
## 3295 <NA>
## 3296 <NA>
## 3297 <NA>
## 3298 <NA>
## 3299 <NA>
## 3300 <NA>
## 3301 <NA>
## 3302 <NA>
## 3303 <NA>
## 3304 <NA>
## 3305 <NA>
## 3306 <NA>
## 3307 <NA>
## 3308 <NA>
## 3309 <NA>
## 3310 <NA>
## 3311 <NA>
## 3312 <NA>
## 3313 <NA>
## 3314 <NA>
## 3315 <NA>
## 3316 <NA>
## 3317 <NA>
## 3318 <NA>
## 3319 <NA>
## 3320 <NA>
## 3321 <NA>
## 3322 <NA>
## 3323 <NA>
## 3324 <NA>
## 3325 <NA>
## 3326 <NA>
## 3327 <NA>
## 3328 <NA>
## 3329 <NA>
## 3330 <NA>
## 3331 <NA>
## 3332 <NA>
## 3333 <NA>
## 3334 <NA>
## 3335 <NA>
## 3336 <NA>
## 3337 <NA>
## 3338 <NA>
## 3339 <NA>
## 3340 <NA>
## 3341 <NA>
## 3342 <NA>
## 3343 <NA>
## 3344 <NA>
## 3345 <NA>
## 3346 <NA>
## 3347 <NA>
## 3348 <NA>
## 3349 <NA>
## 3350 <NA>
## 3351 <NA>
## 3352 <NA>
## 3353 <NA>
## 3354 <NA>
## 3355 <NA>
## 3356 <NA>
## 3357 <NA>
## 3358 <NA>
## 3359 <NA>
## 3360 <NA>
## 3361 <NA>
## 3362 <NA>
## 3363 <NA>
## 3364 <NA>
## 3365 <NA>
## 3366 <NA>
## 3367 <NA>
## 3368 <NA>
## 3369 <NA>
## 3370 <NA>
## 3371 <NA>
## 3372 <NA>
## 3373 <NA>
## 3374 <NA>
## 3375 <NA>
## 3376 <NA>
## 3377 <NA>
## 3378 <NA>
## 3379 <NA>
## 3380 <NA>
## 3381 <NA>
## 3382 <NA>
## 3383 <NA>
## 3384 <NA>
## 3385 <NA>
## 3386 <NA>
## 3387 <NA>
## 3388 <NA>
## 3389 <NA>
## 3390 <NA>
## 3391 <NA>
## 3392 <NA>
## 3393 <NA>
## 3394 <NA>
## 3395 <NA>
## 3396 <NA>
## 3397 <NA>
## 3398 <NA>
## 3399 <NA>
## 3400 <NA>
## 3401 <NA>
## 3402 <NA>
## 3403 <NA>
## 3404 <NA>
## 3405 <NA>
## 3406 <NA>
## 3407 <NA>
## 3408 <NA>
## 3409 <NA>
## 3410 <NA>
## 3411 <NA>
## 3412 <NA>
## 3413 <NA>
## 3414 <NA>
## 3415 <NA>
## 3416 <NA>
## 3417 <NA>
## 3418 <NA>
## 3419 <NA>
## 3420 <NA>
## 3421 <NA>
## 3422 <NA>
## 3423 <NA>
## 3424 <NA>
## 3425 <NA>
## 3426 <NA>
## 3427 <NA>
## 3428 <NA>
## 3429 <NA>
## 3430 <NA>
## 3431 <NA>
## 3432 <NA>
## 3433 <NA>
## 3434 <NA>
## 3435 <NA>
## 3436 <NA>
## 3437 <NA>
## 3438 <NA>
## 3439 <NA>
## 3440 <NA>
## 3441 <NA>
## 3442 <NA>
## 3443 <NA>
## 3444 <NA>
## 3445 <NA>
## 3446 <NA>
## 3447 <NA>
## 3448 <NA>
## 3449 <NA>
## 3450 <NA>
## 3451 <NA>
## 3452 <NA>
## 3453 <NA>
## 3454 <NA>
## 3455 <NA>
## 3456 <NA>
## 3457 <NA>
## 3458 <NA>
## 3459 <NA>
## 3460 <NA>
## 3461 <NA>
## 3462 <NA>
## 3463 <NA>
## 3464 <NA>
## 3465 <NA>
## 3466 <NA>
## 3467 <NA>
## 3468 <NA>
## 3469 <NA>
## 3470 <NA>
## 3471 <NA>
## 3472 <NA>
## 3473 <NA>
## 3474 <NA>
## 3475 <NA>
## 3476 <NA>
## 3477 <NA>
## 3478 <NA>
## 3479 <NA>
## 3480 <NA>
## 3481 <NA>
## 3482 <NA>
## 3483 <NA>
## 3484 <NA>
## 3485 <NA>
## 3486 <NA>
## 3487 <NA>
## 3488 <NA>
## 3489 <NA>
## 3490 <NA>
## 3491 <NA>
## 3492 <NA>
## 3493 <NA>
## 3494 <NA>
## 3495 <NA>
## 3496 <NA>
## 3497 <NA>
## 3498 <NA>
## 3499 <NA>
## 3500 <NA>
## 3501 <NA>
## 3502 <NA>
## 3503 <NA>
## 3504 <NA>
## 3505 <NA>
## 3506 <NA>
## 3507 <NA>
## 3508 <NA>
## 3509 <NA>
## 3510 <NA>
## 3511 <NA>
## 3512 <NA>
## 3513 <NA>
## 3514 <NA>
## 3515 <NA>
## 3516 <NA>
## 3517 <NA>
## 3518 <NA>
## 3519 <NA>
## 3520 <NA>
## 3521 <NA>
## 3522 <NA>
## 3523 <NA>
## 3524 <NA>
## 3525 <NA>
## 3526 <NA>
## 3527 <NA>
## 3528 <NA>
## 3529 <NA>
## 3530 <NA>
## 3531 <NA>
## 3532 <NA>
## 3533 <NA>
## 3534 <NA>
## 3535 <NA>
## 3536 <NA>
## 3537 <NA>
## 3538 <NA>
## 3539 <NA>
## 3540 <NA>
## 3541 <NA>
## 3542 <NA>
## 3543 <NA>
## 3544 <NA>
## 3545 <NA>
## 3546 <NA>
## 3547 <NA>
## 3548 <NA>
## 3549 <NA>
## 3550 <NA>
## 3551 <NA>
## 3552 <NA>
## 3553 <NA>
## 3554 <NA>
## 3555 <NA>
## 3556 <NA>
## 3557 <NA>
## 3558 <NA>
## 3559 <NA>
## 3560 <NA>
## 3561 <NA>
## 3562 <NA>
## 3563 <NA>
## 3564 <NA>
## 3565 <NA>
## 3566 <NA>
## 3567 <NA>
## 3568 <NA>
## 3569 <NA>
## 3570 <NA>
## 3571 <NA>
## 3572 <NA>
## 3573 <NA>
## 3574 <NA>
## 3575 <NA>
## 3576 <NA>
## 3577 <NA>
## 3578 <NA>
## 3579 <NA>
## 3580 <NA>
## 3581 <NA>
## 3582 <NA>
## 3583 <NA>
## 3584 <NA>
## 3585 <NA>
## 3586 <NA>
## 3587 <NA>
## 3588 <NA>
## 3589 <NA>
## 3590 <NA>
## 3591 <NA>
## 3592 <NA>
## 3593 <NA>
## 3594 <NA>
## 3595 <NA>
## 3596 <NA>
## 3597 <NA>
## 3598 <NA>
## 3599 <NA>
## 3600 <NA>
## 3601 <NA>
## 3602 <NA>
## 3603 <NA>
## 3604 <NA>
## 3605 <NA>
## 3606 <NA>
## 3607 <NA>
## 3608 <NA>
## 3609 <NA>
## 3610 <NA>
## 3611 <NA>
## 3612 <NA>
## 3613 <NA>
## 3614 <NA>
## 3615 <NA>
## 3616 <NA>
## 3617 <NA>
## 3618 <NA>
## 3619 <NA>
## 3620 <NA>
## 3621 <NA>
## 3622 <NA>
## 3623 <NA>
## 3624 <NA>
## 3625 <NA>
## 3626 <NA>
## 3627 <NA>
## 3628 <NA>
## 3629 <NA>
## 3630 <NA>
## 3631 <NA>
## 3632 <NA>
## 3633 <NA>
## 3634 <NA>
## 3635 <NA>
## 3636 <NA>
## 3637 <NA>
## 3638 <NA>
## 3639 <NA>
## 3640 <NA>
## 3641 <NA>
## 3642 <NA>
## 3643 <NA>
## 3644 <NA>
## 3645 <NA>
## 3646 <NA>
## 3647 <NA>
## 3648 <NA>
## 3649 <NA>
## 3650 <NA>
## 3651 <NA>
## 3652 <NA>
## 3653 <NA>
## 3654 <NA>
## 3655 <NA>
## 3656 <NA>
## 3657 <NA>
## 3658 <NA>
## 3659 <NA>
## 3660 <NA>
## 3661 <NA>
## 3662 <NA>
## 3663 <NA>
## 3664 <NA>
## 3665 <NA>
## 3666 <NA>
## 3667 <NA>
## 3668 <NA>
## 3669 <NA>
## 3670 <NA>
## 3671 <NA>
## 3672 <NA>
## 3673 <NA>
## 3674 <NA>
## 3675 <NA>
## 3676 <NA>
## 3677 <NA>
## 3678 <NA>
## 3679 <NA>
## 3680 <NA>
## 3681 <NA>
## 3682 <NA>
## 3683 <NA>
## 3684 <NA>
## 3685 <NA>
## 3686 <NA>
## 3687 <NA>
## 3688 <NA>
## 3689 <NA>
## 3690 <NA>
## 3691 <NA>
## 3692 <NA>
## 3693 <NA>
## 3694 <NA>
## 3695 <NA>
## 3696 <NA>
## 3697 <NA>
## 3698 <NA>
## 3699 <NA>
## 3700 <NA>
## 3701 <NA>
## 3702 <NA>
## 3703 <NA>
## 3704 <NA>
## 3705 <NA>
## 3706 <NA>
## 3707 <NA>
## 3708 <NA>
## 3709 <NA>
## 3710 <NA>
## 3711 <NA>
## 3712 <NA>
## 3713 <NA>
## 3714 <NA>
## 3715 <NA>
## 3716 <NA>
## 3717 <NA>
## 3718 <NA>
## 3719 <NA>
## 3720 <NA>
## 3721 <NA>
## 3722 <NA>
## 3723 <NA>
## 3724 <NA>
## 3725 <NA>
## 3726 <NA>
## 3727 <NA>
## 3728 <NA>
## 3729 <NA>
## 3730 <NA>
## 3731 <NA>
## 3732 <NA>
## 3733 <NA>
## 3734 <NA>
## 3735 <NA>
## 3736 <NA>
## 3737 <NA>
## 3738 <NA>
## 3739 <NA>
## 3740 <NA>
## 3741 <NA>
## 3742 <NA>
## 3743 <NA>
## 3744 <NA>
## 3745 <NA>
## 3746 <NA>
## 3747 <NA>
## 3748 <NA>
## 3749 <NA>
## 3750 <NA>
## 3751 <NA>
## 3752 <NA>
## 3753 <NA>
## 3754 <NA>
## 3755 <NA>
## 3756 <NA>
## 3757 <NA>
## 3758 <NA>
## 3759 <NA>
## 3760 <NA>
## 3761 <NA>
## 3762 <NA>
## 3763 <NA>
## 3764 <NA>
## 3765 <NA>
## 3766 <NA>
## 3767 <NA>
## 3768 <NA>
## 3769 <NA>
## 3770 <NA>
## 3771 <NA>
## 3772 <NA>
## 3773 <NA>
## 3774 <NA>
## 3775 <NA>
## 3776 <NA>
## 3777 <NA>
## 3778 <NA>
## 3779 <NA>
## 3780 <NA>
## 3781 <NA>
## 3782 <NA>
## 3783 <NA>
## 3784 <NA>
## 3785 <NA>
## 3786 <NA>
## 3787 <NA>
## 3788 <NA>
## 3789 <NA>
## 3790 <NA>
## 3791 <NA>
## 3792 <NA>
## 3793 <NA>
## 3794 <NA>
## 3795 <NA>
## 3796 <NA>
## 3797 <NA>
## 3798 <NA>
## 3799 <NA>
## 3800 <NA>
## 3801 <NA>
## 3802 <NA>
## 3803 <NA>
## 3804 <NA>
## 3805 <NA>
## 3806 <NA>
## 3807 <NA>
## 3808 <NA>
## 3809 <NA>
## 3810 <NA>
## 3811 <NA>
## 3812 <NA>
## 3813 <NA>
## 3814 <NA>
## 3815 <NA>
## 3816 <NA>
## 3817 <NA>
## 3818 <NA>
## 3819 <NA>
## 3820 <NA>
## 3821 <NA>
## 3822 <NA>
## 3823 <NA>
## 3824 <NA>
## 3825 <NA>
## 3826 <NA>
## 3827 <NA>
## 3828 <NA>
## 3829 <NA>
## 3830 <NA>
## 3831 <NA>
## 3832 <NA>
## 3833 <NA>
## 3834 <NA>
## 3835 <NA>
## 3836 <NA>
## 3837 <NA>
## 3838 <NA>
## 3839 <NA>
## 3840 <NA>
## 3841 <NA>
## 3842 <NA>
## 3843 <NA>
## 3844 <NA>
## 3845 <NA>
## 3846 <NA>
## 3847 <NA>
## 3848 <NA>
## 3849 <NA>
## 3850 <NA>
## 3851 <NA>
## 3852 <NA>
## 3853 <NA>
## 3854 <NA>
## 3855 <NA>
## 3856 <NA>
## 3857 <NA>
## 3858 <NA>
## 3859 <NA>
## 3860 <NA>
## 3861 <NA>
## 3862 <NA>
## 3863 <NA>
## 3864 <NA>
## 3865 <NA>
## 3866 <NA>
## 3867 <NA>
## 3868 <NA>
## 3869 <NA>
## 3870 <NA>
## 3871 <NA>
## 3872 <NA>
## 3873 <NA>
## 3874 <NA>
## 3875 <NA>
## 3876 <NA>
## 3877 <NA>
## 3878 <NA>
## 3879 <NA>
## 3880 <NA>
## 3881 <NA>
## 3882 <NA>
## 3883 <NA>
## 3884 <NA>
## 3885 <NA>
## 3886 <NA>
## 3887 <NA>
## 3888 <NA>
## 3889 <NA>
## 3890 <NA>
## 3891 <NA>
## 3892 <NA>
## 3893 <NA>
## 3894 <NA>
## 3895 <NA>
## 3896 <NA>
## 3897 <NA>
## 3898 <NA>
## 3899 <NA>
## 3900 <NA>
## 3901 <NA>
## 3902 <NA>
## 3903 <NA>
## 3904 <NA>
## 3905 <NA>
## 3906 <NA>
## 3907 <NA>
## 3908 <NA>
## 3909 <NA>
## 3910 <NA>
## 3911 <NA>
## 3912 <NA>
## 3913 <NA>
## 3914 <NA>
## 3915 <NA>
## 3916 <NA>
## 3917 <NA>
## 3918 <NA>
## 3919 <NA>
## 3920 <NA>
## 3921 <NA>
## 3922 <NA>
## 3923 <NA>
## 3924 <NA>
## 3925 <NA>
## 3926 <NA>
## 3927 <NA>
## 3928 <NA>
## 3929 <NA>
## 3930 <NA>
## 3931 <NA>
## 3932 <NA>
## 3933 <NA>
## 3934 <NA>
## 3935 <NA>
## 3936 <NA>
## 3937 <NA>
## 3938 <NA>
## 3939 <NA>
## 3940 <NA>
## 3941 <NA>
## 3942 <NA>
## 3943 <NA>
## 3944 <NA>
## 3945 <NA>
## 3946 <NA>
## 3947 <NA>
## 3948 <NA>
## 3949 <NA>
## 3950 <NA>
## 3951 <NA>
## 3952 <NA>
## 3953 <NA>
## 3954 <NA>
## 3955 <NA>
## 3956 <NA>
## 3957 <NA>
## 3958 <NA>
## 3959 <NA>
## 3960 <NA>
## 3961 <NA>
## 3962 <NA>
## 3963 <NA>
## 3964 <NA>
## 3965 <NA>
## 3966 <NA>
## 3967 <NA>
## 3968 <NA>
## 3969 <NA>
## 3970 <NA>
## 3971 <NA>
## 3972 <NA>
## 3973 <NA>
## 3974 <NA>
## 3975 <NA>
## 3976 <NA>
## 3977 <NA>
## 3978 <NA>
## 3979 <NA>
## 3980 <NA>
## 3981 <NA>
## 3982 <NA>
## 3983 <NA>
## 3984 <NA>
## 3985 <NA>
## 3986 <NA>
## 3987 <NA>
## 3988 <NA>
## 3989 <NA>
## 3990 <NA>
## 3991 <NA>
## 3992 <NA>
## 3993 <NA>
## 3994 <NA>
## 3995 <NA>
## 3996 <NA>
## 3997 <NA>
## 3998 <NA>
## 3999 <NA>
## 4000 <NA>
## 4001 <NA>
## 4002 <NA>
## 4003 <NA>
## 4004 <NA>
## 4005 <NA>
## 4006 <NA>
## 4007 <NA>
## 4008 <NA>
## 4009 <NA>
## 4010 <NA>
## 4011 <NA>
## 4012 <NA>
## 4013 <NA>
## 4014 <NA>
## 4015 <NA>
## 4016 <NA>
## 4017 <NA>
## 4018 <NA>
## 4019 <NA>
## 4020 <NA>
## 4021 <NA>
## 4022 <NA>
## 4023 <NA>
## 4024 <NA>
## 4025 <NA>
## 4026 <NA>
## 4027 <NA>
## 4028 <NA>
## 4029 <NA>
## 4030 <NA>
## 4031 <NA>
## 4032 <NA>
## 4033 <NA>
## 4034 <NA>
## 4035 <NA>
## 4036 <NA>
## 4037 <NA>
## 4038 <NA>
## 4039 <NA>
## 4040 <NA>
## 4041 <NA>
## 4042 <NA>
## 4043 <NA>
## 4044 <NA>
## 4045 <NA>
## 4046 <NA>
## 4047 <NA>
## 4048 <NA>
## 4049 <NA>
## 4050 <NA>
## 4051 <NA>
## 4052 <NA>
## 4053 <NA>
## 4054 <NA>
## 4055 <NA>
## 4056 <NA>
## 4057 <NA>
## 4058 <NA>
## 4059 <NA>
## 4060 <NA>
## 4061 <NA>
## 4062 <NA>
## 4063 <NA>
## 4064 <NA>
## 4065 <NA>
## 4066 <NA>
## 4067 <NA>
## 4068 <NA>
## 4069 <NA>
## 4070 <NA>
## 4071 <NA>
## 4072 <NA>
## 4073 <NA>
## 4074 <NA>
## 4075 <NA>
## 4076 <NA>
## 4077 <NA>
## 4078 <NA>
## 4079 <NA>
## 4080 <NA>
## 4081 <NA>
## 4082 <NA>
## 4083 <NA>
## 4084 <NA>
## 4085 <NA>
## 4086 <NA>
## 4087 <NA>
## 4088 <NA>
## 4089 <NA>
## 4090 <NA>
## 4091 <NA>
## 4092 <NA>
## 4093 <NA>
## 4094 <NA>
## 4095 <NA>
## 4096 <NA>
## 4097 <NA>
## 4098 <NA>
## 4099 <NA>
## 4100 <NA>
## 4101 <NA>
## 4102 <NA>
## 4103 <NA>
## 4104 <NA>
## 4105 <NA>
## 4106 <NA>
## 4107 <NA>
## 4108 <NA>
## 4109 <NA>
## 4110 <NA>
## 4111 <NA>
## 4112 <NA>
## 4113 <NA>
## 4114 <NA>
## 4115 <NA>
## 4116 <NA>
## 4117 <NA>
## 4118 <NA>
## 4119 <NA>
## 4120 <NA>
## 4121 <NA>
## 4122 <NA>
## 4123 <NA>
## 4124 <NA>
## 4125 <NA>
## 4126 <NA>
## 4127 <NA>
## 4128 <NA>
## 4129 <NA>
## 4130 <NA>
## 4131 <NA>
## 4132 <NA>
## 4133 <NA>
## 4134 <NA>
## 4135 <NA>
## 4136 <NA>
## 4137 <NA>
## 4138 <NA>
## 4139 <NA>
## 4140 <NA>
## 4141 <NA>
## 4142 <NA>
## 4143 <NA>
## 4144 <NA>
## 4145 <NA>
## 4146 <NA>
## 4147 <NA>
## 4148 <NA>
## 4149 <NA>
## 4150 <NA>
## 4151 <NA>
## 4152 <NA>
## 4153 <NA>
## 4154 <NA>
## 4155 <NA>
## 4156 <NA>
## 4157 <NA>
## 4158 <NA>
## 4159 <NA>
## 4160 <NA>
## 4161 <NA>
## 4162 <NA>
## 4163 <NA>
## 4164 <NA>
## 4165 <NA>
## 4166 <NA>
## 4167 <NA>
## 4168 <NA>
## 4169 <NA>
## 4170 <NA>
## 4171 <NA>
## 4172 <NA>
## 4173 <NA>
## 4174 <NA>
## 4175 <NA>
## 4176 <NA>
## 4177 <NA>
## 4178 <NA>
## 4179 <NA>
## 4180 <NA>
## 4181 <NA>
## 4182 <NA>
## 4183 <NA>
## 4184 <NA>
## 4185 <NA>
## 4186 <NA>
## 4187 <NA>
## 4188 <NA>
## 4189 <NA>
## 4190 <NA>
## 4191 <NA>
## 4192 <NA>
## 4193 <NA>
## 4194 <NA>
## 4195 <NA>
## 4196 <NA>
## 4197 <NA>
## 4198 <NA>
## 4199 <NA>
## 4200 <NA>
## 4201 <NA>
## 4202 <NA>
## 4203 <NA>
## 4204 <NA>
## 4205 <NA>
## 4206 <NA>
## 4207 <NA>
## 4208 <NA>
## 4209 <NA>
## 4210 <NA>
## 4211 <NA>
## 4212 <NA>
## 4213 <NA>
## 4214 <NA>
## 4215 <NA>
## 4216 <NA>
## 4217 <NA>
## 4218 <NA>
## 4219 <NA>
## 4220 <NA>
## 4221 <NA>
## 4222 <NA>
## 4223 <NA>
## 4224 <NA>
## 4225 <NA>
## 4226 <NA>
## 4227 <NA>
## 4228 <NA>
## 4229 <NA>
## 4230 <NA>
## 4231 <NA>
## 4232 <NA>
## 4233 <NA>
## 4234 <NA>
## 4235 <NA>
## 4236 <NA>
## 4237 <NA>
## 4238 <NA>
## 4239 <NA>
## 4240 <NA>
## 4241 <NA>
## 4242 <NA>
## 4243 <NA>
## 4244 <NA>
## 4245 <NA>
## 4246 <NA>
## 4247 <NA>
## 4248 <NA>
## 4249 <NA>
## 4250 <NA>
## 4251 <NA>
## 4252 <NA>
## 4253 <NA>
## 4254 <NA>
## 4255 <NA>
## 4256 <NA>
## 4257 <NA>
## 4258 <NA>
## 4259 <NA>
## 4260 <NA>
## 4261 <NA>
## 4262 <NA>
## 4263 <NA>
## 4264 <NA>
## 4265 <NA>
## 4266 <NA>
## 4267 <NA>
## 4268 <NA>
## 4269 <NA>
## 4270 <NA>
## 4271 <NA>
## 4272 <NA>
## 4273 <NA>
## 4274 <NA>
## 4275 <NA>
## 4276 <NA>
## 4277 <NA>
## 4278 <NA>
## 4279 <NA>
## 4280 <NA>
## 4281 <NA>
## 4282 <NA>
## 4283 <NA>
## 4284 <NA>
## 4285 <NA>
## 4286 <NA>
## 4287 <NA>
## 4288 <NA>
## 4289 <NA>
## 4290 <NA>
## 4291 <NA>
## 4292 <NA>
## 4293 <NA>
## 4294 <NA>
## 4295 <NA>
## 4296 <NA>
## 4297 <NA>
## 4298 <NA>
## 4299 <NA>
## 4300 <NA>
## 4301 <NA>
## 4302 <NA>
## 4303 <NA>
## 4304 <NA>
## 4305 <NA>
## 4306 <NA>
## 4307 <NA>
## 4308 <NA>
## 4309 <NA>
## 4310 <NA>
## 4311 <NA>
## 4312 <NA>
## 4313 <NA>
## 4314 <NA>
## 4315 <NA>
## 4316 <NA>
## 4317 <NA>
## 4318 <NA>
## 4319 <NA>
## 4320 <NA>
## 4321 <NA>
## 4322 <NA>
## 4323 <NA>
## 4324 <NA>
## 4325 <NA>
## 4326 <NA>
## 4327 <NA>
## 4328 <NA>
## 4329 <NA>
## 4330 <NA>
## 4331 <NA>
## 4332 <NA>
## 4333 <NA>
## 4334 <NA>
## 4335 <NA>
## 4336 <NA>
## 4337 <NA>
## 4338 <NA>
## 4339 <NA>
## 4340 <NA>
## 4341 <NA>
## 4342 <NA>
## 4343 <NA>
## 4344 <NA>
## 4345 <NA>
## 4346 <NA>
## 4347 <NA>
## 4348 <NA>
## 4349 <NA>
## 4350 <NA>
## 4351 <NA>
## 4352 <NA>
## 4353 <NA>
## 4354 <NA>
## 4355 <NA>
## 4356 <NA>
## 4357 <NA>
## 4358 <NA>
## 4359 <NA>
## 4360 <NA>
## 4361 <NA>
## 4362 <NA>
## 4363 <NA>
## 4364 <NA>
## 4365 <NA>
## 4366 <NA>
## 4367 <NA>
## 4368 <NA>
## 4369 <NA>
## 4370 <NA>
## 4371 <NA>
## 4372 <NA>
## 4373 <NA>
## 4374 <NA>
## 4375 <NA>
## 4376 <NA>
## 4377 <NA>
## 4378 <NA>
## 4379 <NA>
## 4380 <NA>
## 4381 <NA>
## 4382 <NA>
## 4383 <NA>
## 4384 <NA>
## 4385 <NA>
## 4386 <NA>
## 4387 <NA>
## 4388 <NA>
## 4389 <NA>
## 4390 <NA>
## 4391 <NA>
## 4392 <NA>
## 4393 <NA>
## 4394 <NA>
## 4395 <NA>
## 4396 <NA>
## 4397 <NA>
## 4398 <NA>
## 4399 <NA>
## 4400 <NA>
## 4401 <NA>
## 4402 <NA>
## 4403 <NA>
## 4404 <NA>
## 4405 <NA>
## 4406 <NA>
## 4407 <NA>
## 4408 <NA>
## 4409 <NA>
## 4410 <NA>
## 4411 <NA>
## 4412 <NA>
## 4413 <NA>
## 4414 <NA>
## 4415 <NA>
## 4416 <NA>
## 4417 <NA>
## 4418 <NA>
## 4419 <NA>
## 4420 <NA>
## 4421 <NA>
## 4422 <NA>
## 4423 <NA>
## 4424 <NA>
## 4425 <NA>
## 4426 <NA>
## 4427 <NA>
## 4428 <NA>
## 4429 <NA>
## 4430 <NA>
## 4431 <NA>
## 4432 <NA>
## 4433 <NA>
## 4434 <NA>
## 4435 <NA>
## 4436 <NA>
## 4437 <NA>
## 4438 <NA>
## 4439 <NA>
## 4440 <NA>
## 4441 <NA>
## 4442 <NA>
## 4443 <NA>
## 4444 <NA>
## 4445 <NA>
## 4446 <NA>
## 4447 <NA>
## 4448 <NA>
## 4449 <NA>
## 4450 <NA>
## 4451 <NA>
## 4452 <NA>
## 4453 <NA>
## 4454 <NA>
## 4455 <NA>
## 4456 <NA>
## 4457 <NA>
## 4458 <NA>
## 4459 <NA>
## 4460 <NA>
## 4461 <NA>
## 4462 <NA>
## 4463 <NA>
## 4464 <NA>
## 4465 <NA>
## 4466 <NA>
## 4467 <NA>
## 4468 <NA>
## 4469 <NA>
## 4470 <NA>
## 4471 <NA>
## 4472 <NA>
## 4473 <NA>
## 4474 <NA>
## 4475 <NA>
## 4476 <NA>
## 4477 <NA>
## 4478 <NA>
## 4479 <NA>
## 4480 <NA>
## 4481 <NA>
## 4482 <NA>
## 4483 <NA>
## 4484 <NA>
## 4485 <NA>
## 4486 <NA>
## 4487 <NA>
## 4488 <NA>
## 4489 <NA>
## 4490 <NA>
## 4491 <NA>
## 4492 <NA>
## 4493 <NA>
## 4494 <NA>
## 4495 <NA>
## 4496 <NA>
## 4497 <NA>
## 4498 <NA>
## 4499 <NA>
## 4500 <NA>
## 4501 <NA>
## 4502 <NA>
## 4503 <NA>
## 4504 <NA>
## 4505 <NA>
## 4506 <NA>
## 4507 <NA>
## 4508 <NA>
## 4509 <NA>
## 4510 <NA>
## 4511 <NA>
## 4512 <NA>
## 4513 <NA>
## 4514 <NA>
## 4515 <NA>
## 4516 <NA>
## 4517 <NA>
## 4518 <NA>
## 4519 <NA>
## 4520 <NA>
## 4521 <NA>
## 4522 <NA>
## 4523 <NA>
## 4524 <NA>
## 4525 <NA>
## 4526 <NA>
## 4527 <NA>
## 4528 <NA>
## 4529 <NA>
## 4530 <NA>
## 4531 <NA>
## 4532 <NA>
## 4533 <NA>
## 4534 <NA>
## 4535 <NA>
## 4536 <NA>
## 4537 <NA>
## 4538 <NA>
## 4539 <NA>
## 4540 <NA>
## 4541 <NA>
## 4542 <NA>
## 4543 <NA>
## 4544 <NA>
## 4545 <NA>
## 4546 <NA>
## 4547 <NA>
## 4548 <NA>
## 4549 <NA>
## 4550 <NA>
## 4551 <NA>
## 4552 <NA>
## 4553 <NA>
## 4554 <NA>
## 4555 <NA>
## 4556 <NA>
## 4557 <NA>
## 4558 <NA>
## 4559 <NA>
## 4560 <NA>
## 4561 <NA>
## 4562 <NA>
## 4563 <NA>
## 4564 <NA>
## 4565 <NA>
## 4566 <NA>
## 4567 <NA>
## 4568 <NA>
## 4569 <NA>
## 4570 <NA>
## 4571 <NA>
## 4572 <NA>
## 4573 <NA>
## 4574 <NA>
## 4575 <NA>
## 4576 <NA>
## 4577 <NA>
## 4578 <NA>
## 4579 <NA>
## 4580 <NA>
## 4581 <NA>
## 4582 <NA>
## 4583 <NA>
## 4584 <NA>
## 4585 <NA>
## 4586 <NA>
## 4587 <NA>
## 4588 <NA>
## 4589 <NA>
## 4590 <NA>
## 4591 <NA>
## 4592 <NA>
## 4593 <NA>
## 4594 <NA>
## 4595 <NA>
## 4596 <NA>
## 4597 <NA>
## 4598 <NA>
## 4599 <NA>
## 4600 <NA>
## 4601 <NA>
## 4602 <NA>
## 4603 <NA>
## 4604 <NA>
## 4605 <NA>
## 4606 <NA>
## 4607 <NA>
## 4608 <NA>
## 4609 <NA>
## 4610 <NA>
## 4611 <NA>
## 4612 <NA>
## 4613 <NA>
## 4614 <NA>
## 4615 <NA>
## 4616 <NA>
## 4617 <NA>
## 4618 <NA>
## 4619 <NA>
## 4620 <NA>
## 4621 <NA>
## 4622 <NA>
## 4623 <NA>
## 4624 <NA>
## 4625 <NA>
## 4626 <NA>
## 4627 <NA>
## 4628 <NA>
## 4629 <NA>
## 4630 <NA>
## 4631 <NA>
## 4632 <NA>
## 4633 <NA>
## 4634 <NA>
## 4635 <NA>
## 4636 <NA>
## 4637 <NA>
## 4638 <NA>
## 4639 <NA>
## 4640 <NA>
## 4641 <NA>
## 4642 <NA>
## 4643 <NA>
## 4644 <NA>
## 4645 <NA>
## 4646 <NA>
## 4647 <NA>
## 4648 <NA>
## 4649 <NA>
## 4650 <NA>
## 4651 <NA>
## 4652 <NA>
## 4653 <NA>
## 4654 <NA>
## 4655 <NA>
## 4656 <NA>
## 4657 <NA>
## 4658 <NA>
## 4659 <NA>
## 4660 <NA>
## 4661 <NA>
## 4662 <NA>
## 4663 <NA>
## 4664 <NA>
## 4665 <NA>
## 4666 <NA>
## 4667 <NA>
## 4668 <NA>
## 4669 <NA>
## 4670 <NA>
## 4671 <NA>
## 4672 <NA>
## 4673 <NA>
## 4674 <NA>
## 4675 <NA>
## 4676 <NA>
## 4677 <NA>
## 4678 <NA>
## 4679 <NA>
## 4680 <NA>
## 4681 <NA>
## 4682 <NA>
## 4683 <NA>
## 4684 <NA>
## 4685 <NA>
## 4686 <NA>
## 4687 <NA>
## 4688 <NA>
## 4689 <NA>
## 4690 <NA>
## 4691 <NA>
## 4692 <NA>
## 4693 <NA>
## 4694 <NA>
## 4695 <NA>
## 4696 <NA>
## 4697 <NA>
## 4698 <NA>
## 4699 <NA>
## 4700 <NA>
## 4701 <NA>
## 4702 <NA>
## 4703 <NA>
## 4704 <NA>
## 4705 <NA>
## 4706 <NA>
## 4707 <NA>
## 4708 <NA>
## 4709 <NA>
## 4710 <NA>
## 4711 <NA>
## 4712 <NA>
## 4713 <NA>
## 4714 <NA>
## 4715 <NA>
## 4716 <NA>
## 4717 <NA>
## 4718 <NA>
## 4719 <NA>
## 4720 <NA>
## 4721 <NA>
## 4722 <NA>
## 4723 <NA>
## 4724 <NA>
## 4725 <NA>
## 4726 <NA>
## 4727 <NA>
## 4728 <NA>
## 4729 <NA>
## 4730 <NA>
## 4731 <NA>
## 4732 <NA>
## 4733 <NA>
## 4734 <NA>
## 4735 <NA>
## 4736 <NA>
## 4737 <NA>
## 4738 <NA>
## 4739 <NA>
## 4740 <NA>
## 4741 <NA>
## 4742 <NA>
## 4743 <NA>
## 4744 <NA>
## 4745 <NA>
## 4746 <NA>
## 4747 <NA>
## 4748 <NA>
## 4749 <NA>
## 4750 <NA>
## 4751 <NA>
## 4752 <NA>
## 4753 <NA>
## 4754 <NA>
## 4755 <NA>
## 4756 <NA>
## 4757 <NA>
## 4758 <NA>
## 4759 <NA>
## 4760 <NA>
## 4761 <NA>
## 4762 <NA>
## 4763 <NA>
## 4764 <NA>
## 4765 <NA>
## 4766 <NA>
## 4767 <NA>
## 4768 <NA>
## 4769 <NA>
## 4770 <NA>
## 4771 <NA>
## 4772 <NA>
## 4773 <NA>
## 4774 <NA>
## 4775 <NA>
## 4776 <NA>
## 4777 <NA>
## 4778 <NA>
## 4779 <NA>
## 4780 <NA>
## 4781 <NA>
## 4782 <NA>
## 4783 <NA>
## 4784 <NA>
## 4785 <NA>
## 4786 <NA>
## 4787 <NA>
## 4788 <NA>
## 4789 <NA>
## 4790 <NA>
## 4791 <NA>
## 4792 <NA>
## 4793 <NA>
## 4794 <NA>
## 4795 <NA>
## 4796 <NA>
## 4797 <NA>
## 4798 <NA>
## 4799 <NA>
## 4800 <NA>
## 4801 <NA>
## 4802 <NA>
## 4803 <NA>
## 4804 <NA>
## 4805 <NA>
## 4806 <NA>
## 4807 <NA>
## 4808 <NA>
## 4809 <NA>
## 4810 <NA>
## 4811 <NA>
## 4812 <NA>
## 4813 <NA>
## 4814 <NA>
## 4815 <NA>
## 4816 <NA>
## 4817 <NA>
## 4818 <NA>
## 4819 <NA>
## 4820 <NA>
## 4821 <NA>
## 4822 <NA>
## 4823 <NA>
## 4824 <NA>
## 4825 <NA>
## 4826 <NA>
## 4827 <NA>
## 4828 <NA>
## 4829 <NA>
## 4830 <NA>
## 4831 <NA>
## 4832 <NA>
## 4833 <NA>
## 4834 <NA>
## 4835 <NA>
## 4836 <NA>
## 4837 <NA>
## 4838 <NA>
## 4839 <NA>
## 4840 <NA>
## 4841 <NA>
## 4842 <NA>
## 4843 <NA>
## 4844 <NA>
## 4845 <NA>
## 4846 <NA>
## 4847 <NA>
## 4848 <NA>
## 4849 <NA>
## 4850 <NA>
## 4851 <NA>
## 4852 <NA>
## 4853 <NA>
## 4854 <NA>
## 4855 <NA>
## 4856 <NA>
## 4857 <NA>
## 4858 <NA>
## 4859 <NA>
## 4860 <NA>
## 4861 <NA>
## 4862 <NA>
## 4863 <NA>
## 4864 <NA>
## 4865 <NA>
## 4866 <NA>
## 4867 <NA>
## 4868 <NA>
## 4869 <NA>
## 4870 <NA>
## 4871 <NA>
## 4872 <NA>
## 4873 <NA>
## 4874 <NA>
## 4875 <NA>
## 4876 <NA>
## 4877 <NA>
## 4878 <NA>
## 4879 <NA>
## 4880 <NA>
## 4881 <NA>
## 4882 <NA>
## 4883 <NA>
## 4884 <NA>
## 4885 <NA>
## 4886 <NA>
## 4887 <NA>
## 4888 <NA>
## 4889 <NA>
## 4890 <NA>
## 4891 <NA>
## 4892 <NA>
## 4893 <NA>
## 4894 <NA>
## 4895 <NA>
## 4896 <NA>
## 4897 <NA>
## 4898 <NA>
## 4899 <NA>
## 4900 <NA>
## 4901 <NA>
## 4902 <NA>
## 4903 <NA>
## 4904 <NA>
## 4905 <NA>
## 4906 <NA>
## 4907 <NA>
## 4908 <NA>
## 4909 <NA>
## 4910 <NA>
## 4911 <NA>
## 4912 <NA>
## 4913 <NA>
## 4914 <NA>
## 4915 <NA>
## 4916 <NA>
## 4917 <NA>
## 4918 <NA>
## 4919 <NA>
## 4920 <NA>
## 4921 <NA>
## 4922 <NA>
## 4923 <NA>
## 4924 <NA>
## 4925 <NA>
## 4926 <NA>
## 4927 <NA>
## 4928 <NA>
## 4929 <NA>
## 4930 <NA>
## 4931 <NA>
## 4932 <NA>
## 4933 <NA>
## 4934 <NA>
## 4935 <NA>
## 4936 <NA>
## 4937 <NA>
## 4938 <NA>
## 4939 <NA>
## 4940 <NA>
## 4941 <NA>
## 4942 <NA>
## 4943 <NA>
## 4944 <NA>
## 4945 <NA>
## 4946 <NA>
## 4947 <NA>
## 4948 <NA>
## 4949 <NA>
## 4950 <NA>
## 4951 <NA>
## 4952 <NA>
## 4953 <NA>
## 4954 <NA>
## 4955 <NA>
## 4956 <NA>
## 4957 <NA>
## 4958 <NA>
## 4959 <NA>
## 4960 <NA>
## 4961 <NA>
## 4962 <NA>
## 4963 <NA>
## 4964 <NA>
## 4965 <NA>
## 4966 <NA>
## 4967 <NA>
## 4968 <NA>
## 4969 <NA>
## 4970 <NA>
## 4971 <NA>
## 4972 <NA>
## 4973 <NA>
## 4974 <NA>
## 4975 <NA>
## 4976 <NA>
## 4977 <NA>
## 4978 <NA>
## 4979 <NA>
## 4980 <NA>
## 4981 <NA>
## 4982 <NA>
## 4983 <NA>
## 4984 <NA>
## 4985 <NA>
## 4986 <NA>
## 4987 <NA>
## 4988 <NA>
## 4989 <NA>
## 4990 <NA>
## 4991 <NA>
## 4992 <NA>
## 4993 <NA>
## 4994 <NA>
## 4995 <NA>
## 4996 <NA>
## 4997 <NA>
## 4998 <NA>
## 4999 <NA>
## prtclbgb prtdgcl ctzcntr
## 1 <NA> <NA> Yes
## 2 <NA> <NA> Yes
## 3 Labour Not close Yes
## 4 <NA> <NA> Yes
## 5 <NA> <NA> Yes
## 6 <NA> <NA> Yes
## 7 Conservative Quite close Yes
## 8 <NA> <NA> Yes
## 9 Labour Very close No
## 10 <NA> <NA> Yes
## 11 Liberal Democrat Not close Yes
## 12 <NA> <NA> Yes
## 13 <NA> <NA> Yes
## 14 Liberal Democrat Not close Yes
## 15 <NA> <NA> No
## 16 Labour Quite close Yes
## 17 Labour Quite close Yes
## 18 UK Independence Party Very close Yes
## 19 <NA> <NA> No
## 20 <NA> <NA> Yes
## 21 <NA> <NA> Yes
## 22 Scottish National Party Very close Yes
## 23 <NA> <NA> Yes
## 24 Labour Quite close Yes
## 25 <NA> <NA> Yes
## 26 <NA> <NA> Yes
## 27 <NA> <NA> Yes
## 28 <NA> <NA> Yes
## 29 Labour Quite close Yes
## 30 <NA> <NA> Yes
## 31 Green Party Not close Yes
## 32 Labour Quite close Yes
## 33 UK Independence Party Quite close Yes
## 34 <NA> <NA> Yes
## 35 Labour Not close Yes
## 36 <NA> <NA> Yes
## 37 <NA> <NA> Yes
## 38 Conservative Quite close Yes
## 39 <NA> <NA> Yes
## 40 Labour Not close Yes
## 41 <NA> <NA> Yes
## 42 Conservative Not close Yes
## 43 <NA> <NA> Yes
## 44 <NA> <NA> Yes
## 45 UK Independence Party Quite close Yes
## 46 <NA> <NA> Yes
## 47 <NA> <NA> Yes
## 48 Conservative Not close Yes
## 49 <NA> <NA> Yes
## 50 Labour Not close Yes
## 51 Conservative Very close No
## 52 <NA> <NA> No
## 53 Conservative Quite close Yes
## 54 <NA> <NA> Yes
## 55 Labour Very close Yes
## 56 <NA> <NA> Yes
## 57 Liberal Democrat Quite close Yes
## 58 <NA> <NA> Yes
## 59 UK Independence Party Quite close Yes
## 60 UK Independence Party Quite close Yes
## 61 Conservative Quite close Yes
## 62 <NA> <NA> Yes
## 63 Liberal Democrat Quite close Yes
## 64 <NA> <NA> Yes
## 65 <NA> <NA> Yes
## 66 Green Party Quite close Yes
## 67 <NA> <NA> Yes
## 68 <NA> <NA> Yes
## 69 Conservative Quite close Yes
## 70 Labour Quite close Yes
## 71 <NA> <NA> Yes
## 72 Conservative Quite close Yes
## 73 <NA> <NA> Yes
## 74 UK Independence Party Not close Yes
## 75 Conservative Not close Yes
## 76 <NA> <NA> Yes
## 77 <NA> <NA> Yes
## 78 <NA> <NA> Yes
## 79 Conservative Not close Yes
## 80 UK Independence Party Quite close No
## 81 <NA> <NA> Yes
## 82 Conservative Quite close Yes
## 83 <NA> <NA> Yes
## 84 <NA> <NA> Yes
## 85 <NA> <NA> Yes
## 86 Labour Quite close Yes
## 87 <NA> <NA> Yes
## 88 Conservative Quite close Yes
## 89 <NA> <NA> No
## 90 <NA> <NA> Yes
## 91 Labour Very close Yes
## 92 Conservative Not close Yes
## 93 Labour Quite close Yes
## 94 Labour Not at all close Yes
## 95 <NA> <NA> Yes
## 96 <NA> <NA> Yes
## 97 Conservative Quite close Yes
## 98 Labour Quite close Yes
## 99 <NA> <NA> Yes
## 100 Green Party Quite close Yes
## 101 UK Independence Party Quite close Yes
## 102 <NA> <NA> Yes
## 103 <NA> <NA> Yes
## 104 <NA> <NA> Yes
## 105 <NA> <NA> Yes
## 106 <NA> <NA> Yes
## 107 Labour Quite close Yes
## 108 <NA> <NA> Yes
## 109 <NA> <NA> Yes
## 110 Conservative Not close Yes
## 111 <NA> <NA> Yes
## 112 Labour Quite close Yes
## 113 <NA> <NA> Yes
## 114 Labour Quite close Yes
## 115 <NA> <NA> Yes
## 116 Conservative Not close Yes
## 117 <NA> <NA> No
## 118 Conservative Not close Yes
## 119 UK Independence Party Not close Yes
## 120 UK Independence Party Quite close Yes
## 121 Liberal Democrat Not close Yes
## 122 <NA> <NA> Yes
## 123 Labour Quite close Yes
## 124 <NA> <NA> Yes
## 125 UK Independence Party Not close Yes
## 126 Conservative Quite close Yes
## 127 UK Independence Party Quite close Yes
## 128 <NA> <NA> Yes
## 129 <NA> <NA> Yes
## 130 <NA> <NA> Yes
## 131 <NA> <NA> Yes
## 132 <NA> <NA> Yes
## 133 Conservative Not at all close Yes
## 134 Conservative Quite close Yes
## 135 <NA> <NA> Yes
## 136 <NA> <NA> Yes
## 137 <NA> <NA> Yes
## 138 <NA> <NA> Yes
## 139 Conservative Quite close Yes
## 140 Conservative Quite close Yes
## 141 UK Independence Party Not close Yes
## 142 <NA> <NA> Yes
## 143 UK Independence Party Quite close Yes
## 144 Conservative Not close Yes
## 145 Labour Quite close Yes
## 146 <NA> <NA> Yes
## 147 <NA> <NA> Yes
## 148 Green Party Very close Yes
## 149 <NA> <NA> Yes
## 150 Conservative Quite close Yes
## 151 <NA> <NA> Yes
## 152 <NA> <NA> No
## 153 Conservative Not close Yes
## 154 Labour Quite close Yes
## 155 Labour Quite close Yes
## 156 Conservative Very close Yes
## 157 <NA> <NA> Yes
## 158 Conservative Very close Yes
## 159 Labour Very close Yes
## 160 <NA> <NA> Yes
## 161 <NA> <NA> Yes
## 162 Labour Not close Yes
## 163 Conservative Very close Yes
## 164 Conservative Quite close Yes
## 165 <NA> <NA> Yes
## 166 Green Party Not close Yes
## 167 Labour Very close Yes
## 168 Conservative Quite close Yes
## 169 <NA> <NA> Yes
## 170 <NA> <NA> Yes
## 171 Conservative Not close No
## 172 Labour Not close Yes
## 173 <NA> <NA> Yes
## 174 Conservative Quite close Yes
## 175 Labour Quite close Yes
## 176 <NA> <NA> Yes
## 177 <NA> <NA> Yes
## 178 Conservative Quite close Yes
## 179 Labour Quite close Yes
## 180 Conservative Quite close Yes
## 181 <NA> <NA> Yes
## 182 UK Independence Party Quite close Yes
## 183 <NA> <NA> Yes
## 184 <NA> <NA> Yes
## 185 <NA> <NA> Yes
## 186 <NA> <NA> Yes
## 187 <NA> <NA> Yes
## 188 Social Democratic and Labour Party (nir) <NA> Yes
## 189 Conservative Quite close Yes
## 190 <NA> <NA> Yes
## 191 <NA> <NA> Yes
## 192 Scottish National Party Quite close Yes
## 193 <NA> <NA> Yes
## 194 <NA> <NA> Yes
## 195 Labour Quite close Yes
## 196 Green Party Very close Yes
## 197 <NA> <NA> Yes
## 198 Conservative Very close Yes
## 199 <NA> <NA> Yes
## 200 <NA> <NA> Yes
## 201 Liberal Democrat Not close Yes
## 202 Labour Not close Yes
## 203 Labour Quite close Yes
## 204 Labour Quite close Yes
## 205 Conservative Quite close Yes
## 206 <NA> <NA> Yes
## 207 <NA> <NA> Yes
## 208 <NA> <NA> Yes
## 209 Labour Not close Yes
## 210 <NA> <NA> Yes
## 211 Labour Very close Yes
## 212 <NA> <NA> Yes
## 213 <NA> <NA> Yes
## 214 <NA> <NA> No
## 215 Liberal Democrat Quite close Yes
## 216 <NA> <NA> Yes
## 217 <NA> <NA> Yes
## 218 Labour Very close Yes
## 219 <NA> <NA> Yes
## 220 <NA> <NA> Yes
## 221 <NA> <NA> Yes
## 222 Labour Quite close Yes
## 223 Conservative Quite close Yes
## 224 <NA> <NA> Yes
## 225 Labour Quite close Yes
## 226 <NA> <NA> Yes
## 227 <NA> <NA> Yes
## 228 <NA> <NA> Yes
## 229 Conservative Quite close Yes
## 230 Labour Quite close Yes
## 231 Scottish National Party Quite close Yes
## 232 UK Independence Party Quite close Yes
## 233 <NA> <NA> Yes
## 234 <NA> <NA> Yes
## 235 <NA> <NA> No
## 236 Conservative Quite close Yes
## 237 <NA> <NA> Yes
## 238 Labour Quite close Yes
## 239 <NA> <NA> Yes
## 240 <NA> <NA> Yes
## 241 Plaid Cymru Quite close Yes
## 242 Labour Quite close Yes
## 243 <NA> <NA> Yes
## 244 UK Independence Party Very close Yes
## 245 <NA> <NA> Yes
## 246 <NA> <NA> Yes
## 247 UK Independence Party Quite close Yes
## 248 <NA> <NA> Yes
## 249 <NA> <NA> No
## 250 Labour Quite close Yes
## 251 <NA> <NA> Yes
## 252 <NA> <NA> Yes
## 253 <NA> <NA> Yes
## 254 UK Independence Party Quite close Yes
## 255 <NA> <NA> Yes
## 256 Conservative Quite close Yes
## 257 <NA> <NA> Yes
## 258 <NA> <NA> No
## 259 <NA> <NA> Yes
## 260 <NA> <NA> Yes
## 261 <NA> <NA> Yes
## 262 Conservative Quite close Yes
## 263 Conservative Not close Yes
## 264 <NA> <NA> Yes
## 265 Conservative Quite close Yes
## 266 UK Independence Party Quite close Yes
## 267 Labour Very close Yes
## 268 <NA> <NA> Yes
## 269 UK Independence Party Not at all close Yes
## 270 <NA> <NA> No
## 271 Labour Quite close Yes
## 272 Alliance Party (nir) <NA> Yes
## 273 Conservative Quite close No
## 274 Labour Quite close Yes
## 275 <NA> <NA> Yes
## 276 <NA> <NA> Yes
## 277 <NA> <NA> Yes
## 278 Labour Not close Yes
## 279 <NA> <NA> Yes
## 280 Liberal Democrat Not close Yes
## 281 Labour Quite close Yes
## 282 <NA> <NA> Yes
## 283 <NA> <NA> Yes
## 284 <NA> <NA> Yes
## 285 <NA> <NA> Yes
## 286 <NA> <NA> Yes
## 287 <NA> <NA> Yes
## 288 Conservative Quite close Yes
## 289 <NA> <NA> No
## 290 Liberal Democrat Not close Yes
## 291 <NA> <NA> Yes
## 292 Conservative Quite close Yes
## 293 Labour Quite close Yes
## 294 UK Independence Party Quite close Yes
## 295 <NA> <NA> Yes
## 296 <NA> <NA> Yes
## 297 <NA> <NA> Yes
## 298 <NA> <NA> Yes
## 299 Conservative Not close Yes
## 300 UK Independence Party Very close Yes
## 301 Conservative Quite close Yes
## 302 Labour Not close Yes
## 303 <NA> <NA> Yes
## 304 Labour Quite close Yes
## 305 Labour Not close Yes
## 306 Labour Very close Yes
## 307 Conservative Not close No
## 308 <NA> <NA> Yes
## 309 <NA> <NA> Yes
## 310 Labour Quite close Yes
## 311 <NA> <NA> Yes
## 312 Alliance Party (nir) <NA> No
## 313 <NA> <NA> Yes
## 314 Labour Quite close Yes
## 315 UK Independence Party Very close Yes
## 316 <NA> <NA> Yes
## 317 Conservative Quite close Yes
## 318 Labour Not close Yes
## 319 Labour Not at all close Yes
## 320 Liberal Democrat Quite close Yes
## 321 Labour Quite close Yes
## 322 Liberal Democrat Not at all close Yes
## 323 <NA> <NA> No
## 324 <NA> <NA> Yes
## 325 <NA> <NA> Yes
## 326 <NA> <NA> Yes
## 327 <NA> <NA> Yes
## 328 <NA> <NA> Yes
## 329 <NA> <NA> Yes
## 330 <NA> <NA> Yes
## 331 UK Independence Party Quite close Yes
## 332 <NA> <NA> No
## 333 Conservative Quite close Yes
## 334 <NA> <NA> Yes
## 335 <NA> <NA> Yes
## 336 <NA> <NA> No
## 337 Liberal Democrat Quite close Yes
## 338 Ulster Unionist Party (nir) <NA> Yes
## 339 Labour Quite close Yes
## 340 Conservative Not close Yes
## 341 <NA> <NA> Yes
## 342 <NA> <NA> Yes
## 343 <NA> <NA> Yes
## 344 Conservative Quite close Yes
## 345 <NA> <NA> Yes
## 346 Labour Not close Yes
## 347 Labour Not close Yes
## 348 <NA> <NA> Yes
## 349 <NA> <NA> Yes
## 350 <NA> <NA> Yes
## 351 <NA> <NA> No
## 352 Independent(s) (nir) <NA> Yes
## 353 Conservative Very close Yes
## 354 <NA> <NA> Yes
## 355 Conservative Quite close Yes
## 356 <NA> <NA> Yes
## 357 <NA> <NA> Yes
## 358 <NA> <NA> Yes
## 359 Liberal Democrat Not at all close Yes
## 360 Conservative Not close Yes
## 361 <NA> <NA> Yes
## 362 <NA> <NA> Yes
## 363 <NA> <NA> Yes
## 364 Labour Very close Yes
## 365 Labour Quite close Yes
## 366 Conservative Quite close Yes
## 367 <NA> <NA> Yes
## 368 <NA> <NA> Yes
## 369 Labour Very close Yes
## 370 <NA> <NA> Yes
## 371 <NA> <NA> Yes
## 372 Scottish National Party Quite close Yes
## 373 Conservative Not at all close Yes
## 374 <NA> <NA> Yes
## 375 <NA> <NA> Yes
## 376 Labour Not close Yes
## 377 <NA> <NA> Yes
## 378 Labour Quite close Yes
## 379 Conservative Quite close Yes
## 380 <NA> <NA> Yes
## 381 Labour Not close Yes
## 382 <NA> <NA> Yes
## 383 <NA> <NA> Yes
## 384 <NA> <NA> Yes
## 385 <NA> <NA> Yes
## 386 Conservative Not close Yes
## 387 <NA> <NA> Yes
## 388 Conservative Not at all close Yes
## 389 Conservative Very close Yes
## 390 Scottish National Party Quite close Yes
## 391 <NA> <NA> Yes
## 392 <NA> <NA> Yes
## 393 <NA> <NA> Yes
## 394 <NA> <NA> Yes
## 395 Labour Quite close Yes
## 396 <NA> <NA> Yes
## 397 UK Independence Party Not close Yes
## 398 <NA> <NA> Yes
## 399 <NA> <NA> Yes
## 400 Labour Not close Yes
## 401 Conservative Not at all close Yes
## 402 UK Independence Party Very close Yes
## 403 <NA> <NA> Yes
## 404 Conservative Not close Yes
## 405 <NA> <NA> Yes
## 406 Conservative Not at all close Yes
## 407 Conservative <NA> Yes
## 408 <NA> <NA> Yes
## 409 <NA> <NA> Yes
## 410 <NA> <NA> Yes
## 411 Labour Quite close Yes
## 412 Labour Not close Yes
## 413 Conservative Quite close Yes
## 414 <NA> <NA> Yes
## 415 Labour Quite close Yes
## 416 Conservative Quite close Yes
## 417 <NA> <NA> Yes
## 418 <NA> <NA> Yes
## 419 Labour Very close Yes
## 420 Labour Quite close Yes
## 421 Scottish National Party Very close Yes
## 422 UK Independence Party Quite close Yes
## 423 Scottish National Party Quite close Yes
## 424 <NA> <NA> Yes
## 425 Conservative Quite close Yes
## 426 Labour Not close Yes
## 427 <NA> <NA> Yes
## 428 <NA> <NA> Yes
## 429 Scottish National Party Quite close Yes
## 430 Conservative Not close Yes
## 431 <NA> <NA> Yes
## 432 <NA> <NA> Yes
## 433 Labour Quite close Yes
## 434 UK Independence Party Quite close Yes
## 435 <NA> <NA> Yes
## 436 <NA> <NA> No
## 437 Conservative Quite close Yes
## 438 <NA> <NA> Yes
## 439 <NA> <NA> Yes
## 440 Conservative Quite close Yes
## 441 <NA> <NA> Yes
## 442 <NA> <NA> Yes
## 443 UK Independence Party Quite close Yes
## 444 Conservative Quite close Yes
## 445 Green Party Quite close Yes
## 446 Conservative Quite close Yes
## 447 Labour Quite close Yes
## 448 <NA> <NA> Yes
## 449 Democratic Unionist Party (nir) <NA> Yes
## 450 <NA> <NA> Yes
## 451 Conservative Quite close Yes
## 452 <NA> <NA> Yes
## 453 <NA> <NA> Yes
## 454 <NA> <NA> Yes
## 455 <NA> <NA> Yes
## 456 <NA> <NA> No
## 457 <NA> <NA> Yes
## 458 Conservative Quite close Yes
## 459 Conservative Not close Yes
## 460 Other Very close Yes
## 461 Conservative Quite close Yes
## 462 <NA> <NA> Yes
## 463 <NA> <NA> Yes
## 464 <NA> <NA> Yes
## 465 <NA> <NA> Yes
## 466 <NA> <NA> Yes
## 467 Scottish National Party Quite close Yes
## 468 <NA> <NA> Yes
## 469 UK Independence Party Not close No
## 470 UK Independence Party Quite close Yes
## 471 Conservative Not close Yes
## 472 <NA> <NA> Yes
## 473 <NA> <NA> Yes
## 474 <NA> <NA> Yes
## 475 UK Independence Party Quite close Yes
## 476 Labour Very close Yes
## 477 Conservative Very close Yes
## 478 <NA> <NA> Yes
## 479 <NA> <NA> Yes
## 480 Conservative Quite close No
## 481 Conservative Quite close Yes
## 482 Labour Not at all close Yes
## 483 <NA> <NA> Yes
## 484 <NA> <NA> Yes
## 485 <NA> <NA> Yes
## 486 <NA> <NA> Yes
## 487 <NA> <NA> Yes
## 488 Liberal Democrat Not close Yes
## 489 Labour Quite close Yes
## 490 Labour Quite close Yes
## 491 Conservative Not close Yes
## 492 Labour Quite close Yes
## 493 <NA> <NA> Yes
## 494 <NA> <NA> Yes
## 495 Labour Quite close Yes
## 496 <NA> <NA> Yes
## 497 Labour Not close Yes
## 498 Conservative Not close Yes
## 499 <NA> <NA> Yes
## 500 <NA> <NA> Yes
## 501 <NA> <NA> Yes
## 502 Labour Quite close Yes
## 503 <NA> <NA> Yes
## 504 <NA> <NA> Yes
## 505 Green Party Quite close Yes
## 506 <NA> <NA> Yes
## 507 Conservative Not at all close Yes
## 508 <NA> <NA> Yes
## 509 Conservative Not close Yes
## 510 <NA> <NA> Yes
## 511 Green Party Quite close Yes
## 512 <NA> <NA> Yes
## 513 <NA> <NA> Yes
## 514 <NA> <NA> No
## 515 Labour Quite close Yes
## 516 <NA> <NA> Yes
## 517 <NA> <NA> Yes
## 518 <NA> <NA> Yes
## 519 Liberal Democrat Not close Yes
## 520 <NA> <NA> Yes
## 521 Labour Not at all close Yes
## 522 Labour Not close Yes
## 523 <NA> <NA> Yes
## 524 <NA> <NA> Yes
## 525 Labour Not close No
## 526 <NA> <NA> Yes
## 527 <NA> <NA> Yes
## 528 Labour Quite close Yes
## 529 Green Party Not close Yes
## 530 <NA> <NA> Yes
## 531 <NA> <NA> Yes
## 532 Labour Quite close Yes
## 533 UK Independence Party Quite close Yes
## 534 Conservative Not at all close Yes
## 535 UK Independence Party Not close Yes
## 536 <NA> <NA> Yes
## 537 <NA> <NA> Yes
## 538 Labour Not at all close Yes
## 539 Labour Quite close No
## 540 <NA> <NA> Yes
## 541 Other (nir) <NA> No
## 542 UK Independence Party Quite close Yes
## 543 Labour Quite close Yes
## 544 Scottish National Party Not close Yes
## 545 <NA> <NA> Yes
## 546 Conservative Not close Yes
## 547 <NA> <NA> Yes
## 548 <NA> <NA> Yes
## 549 Conservative Not close Yes
## 550 <NA> <NA> Yes
## 551 Conservative Quite close Yes
## 552 UK Independence Party Quite close Yes
## 553 <NA> <NA> Yes
## 554 Labour Quite close Yes
## 555 Conservative Quite close Yes
## 556 Conservative Quite close Yes
## 557 Green Party Very close Yes
## 558 UK Independence Party Very close Yes
## 559 Labour Quite close Yes
## 560 Traditional Unionist Party (nir) <NA> Yes
## 561 Labour Quite close Yes
## 562 Labour Quite close Yes
## 563 <NA> <NA> No
## 564 <NA> <NA> Yes
## 565 Labour Quite close Yes
## 566 <NA> <NA> Yes
## 567 Conservative Quite close Yes
## 568 <NA> <NA> Yes
## 569 <NA> <NA> Yes
## 570 Conservative Quite close Yes
## 571 <NA> <NA> Yes
## 572 Scottish National Party Not close Yes
## 573 Labour Not close Yes
## 574 <NA> <NA> No
## 575 <NA> <NA> Yes
## 576 Conservative Quite close Yes
## 577 <NA> <NA> Yes
## 578 Labour Not at all close Yes
## 579 <NA> <NA> Yes
## 580 Labour Quite close No
## 581 <NA> <NA> No
## 582 <NA> <NA> Yes
## 583 <NA> <NA> Yes
## 584 Labour Not close Yes
## 585 Conservative Quite close Yes
## 586 Conservative Not close Yes
## 587 Conservative Quite close Yes
## 588 <NA> <NA> Yes
## 589 Green Party Quite close Yes
## 590 UK Independence Party Quite close Yes
## 591 Conservative Quite close Yes
## 592 Conservative Not close Yes
## 593 <NA> <NA> Yes
## 594 Conservative Quite close Yes
## 595 Conservative Quite close Yes
## 596 UK Independence Party Not close Yes
## 597 <NA> <NA> Yes
## 598 <NA> <NA> Yes
## 599 <NA> <NA> Yes
## 600 Conservative Quite close Yes
## 601 <NA> <NA> Yes
## 602 <NA> <NA> Yes
## 603 <NA> <NA> Yes
## 604 Conservative Not at all close Yes
## 605 Labour Quite close Yes
## 606 Labour Quite close Yes
## 607 Labour Quite close Yes
## 608 <NA> <NA> Yes
## 609 Labour Very close Yes
## 610 Labour Very close Yes
## 611 Labour Not at all close Yes
## 612 Labour Very close Yes
## 613 <NA> <NA> Yes
## 614 Conservative Quite close Yes
## 615 <NA> <NA> Yes
## 616 <NA> <NA> Yes
## 617 Conservative Not close Yes
## 618 <NA> <NA> Yes
## 619 <NA> <NA> Yes
## 620 <NA> <NA> Yes
## 621 Labour Quite close Yes
## 622 Green Party Quite close Yes
## 623 Conservative Quite close Yes
## 624 <NA> <NA> Yes
## 625 Labour Very close Yes
## 626 <NA> <NA> Yes
## 627 Green Party Not close Yes
## 628 Labour Quite close Yes
## 629 <NA> <NA> Yes
## 630 UK Independence Party Quite close Yes
## 631 <NA> <NA> Yes
## 632 Conservative Quite close Yes
## 633 Liberal Democrat Quite close Yes
## 634 <NA> <NA> Yes
## 635 <NA> <NA> Yes
## 636 Conservative Very close Yes
## 637 <NA> <NA> Yes
## 638 <NA> <NA> Yes
## 639 <NA> <NA> Yes
## 640 Conservative Not close Yes
## 641 Labour Quite close Yes
## 642 <NA> <NA> Yes
## 643 <NA> <NA> Yes
## 644 Labour Not close Yes
## 645 <NA> <NA> Yes
## 646 Conservative Not close Yes
## 647 <NA> <NA> Yes
## 648 <NA> <NA> Yes
## 649 Labour Quite close Yes
## 650 Labour Not close Yes
## 651 <NA> <NA> Yes
## 652 Labour Quite close Yes
## 653 UK Independence Party Very close Yes
## 654 Conservative Very close Yes
## 655 Labour Not close Yes
## 656 <NA> <NA> Yes
## 657 Labour Quite close Yes
## 658 <NA> <NA> Yes
## 659 Conservative Not close Yes
## 660 UK Independence Party Quite close Yes
## 661 Scottish National Party Quite close Yes
## 662 <NA> <NA> Yes
## 663 <NA> <NA> Yes
## 664 <NA> <NA> Yes
## 665 Green Party Not close Yes
## 666 <NA> <NA> Yes
## 667 <NA> <NA> Yes
## 668 Labour Quite close Yes
## 669 Conservative Not close Yes
## 670 <NA> <NA> Yes
## 671 Conservative Not at all close Yes
## 672 <NA> <NA> Yes
## 673 Scottish National Party Not close Yes
## 674 <NA> <NA> Yes
## 675 Labour Quite close Yes
## 676 Scottish National Party Quite close Yes
## 677 Scottish National Party Not close Yes
## 678 Social Democratic and Labour Party (nir) <NA> Yes
## 679 UK Independence Party Quite close Yes
## 680 <NA> <NA> Yes
## 681 <NA> <NA> Yes
## 682 Labour Quite close Yes
## 683 <NA> <NA> Yes
## 684 Labour Quite close Yes
## 685 Green Party Not at all close Yes
## 686 <NA> <NA> Yes
## 687 <NA> <NA> Yes
## 688 <NA> <NA> Yes
## 689 Green Party Quite close Yes
## 690 UK Independence Party Quite close Yes
## 691 <NA> <NA> Yes
## 692 Conservative Quite close Yes
## 693 Labour Not close Yes
## 694 Conservative Quite close Yes
## 695 Labour Very close Yes
## 696 <NA> <NA> Yes
## 697 <NA> <NA> Yes
## 698 <NA> <NA> Yes
## 699 Labour Quite close Yes
## 700 <NA> <NA> Yes
## 701 Labour Very close Yes
## 702 <NA> <NA> Yes
## 703 <NA> <NA> Yes
## 704 <NA> <NA> No
## 705 UK Independence Party Not close Yes
## 706 Liberal Democrat Not close Yes
## 707 <NA> <NA> Yes
## 708 <NA> <NA> Yes
## 709 <NA> <NA> Yes
## 710 Labour Quite close Yes
## 711 <NA> <NA> Yes
## 712 <NA> <NA> Yes
## 713 Conservative Quite close Yes
## 714 <NA> <NA> Yes
## 715 UK Independence Party Very close Yes
## 716 UK Independence Party Quite close Yes
## 717 Liberal Democrat Not at all close Yes
## 718 Labour Quite close Yes
## 719 UK Independence Party Quite close Yes
## 720 UK Independence Party Very close Yes
## 721 <NA> <NA> Yes
## 722 <NA> <NA> Yes
## 723 Labour Quite close Yes
## 724 <NA> <NA> Yes
## 725 <NA> <NA> Yes
## 726 Conservative Not close Yes
## 727 Labour Not close Yes
## 728 Labour Quite close Yes
## 729 <NA> <NA> Yes
## 730 <NA> <NA> Yes
## 731 <NA> <NA> Yes
## 732 Labour Quite close Yes
## 733 <NA> <NA> Yes
## 734 Conservative Quite close Yes
## 735 <NA> <NA> Yes
## 736 <NA> <NA> Yes
## 737 Liberal Democrat Quite close Yes
## 738 Conservative Quite close Yes
## 739 <NA> <NA> Yes
## 740 <NA> <NA> Yes
## 741 <NA> <NA> Yes
## 742 Liberal Democrat Quite close Yes
## 743 Liberal Democrat Not close Yes
## 744 <NA> <NA> Yes
## 745 Labour Not close Yes
## 746 UK Independence Party Not close Yes
## 747 <NA> <NA> Yes
## 748 Labour Quite close Yes
## 749 Green Party Quite close Yes
## 750 <NA> <NA> Yes
## 751 <NA> <NA> Yes
## 752 Liberal Democrat Not close Yes
## 753 <NA> <NA> Yes
## 754 Liberal Democrat Not close Yes
## 755 Conservative Quite close Yes
## 756 <NA> <NA> Yes
## 757 Conservative Quite close Yes
## 758 <NA> <NA> Yes
## 759 <NA> <NA> Yes
## 760 <NA> <NA> Yes
## 761 Green Party Quite close Yes
## 762 Other Quite close Yes
## 763 <NA> <NA> Yes
## 764 Ulster Unionist Party (nir) <NA> Yes
## 765 Labour Not close Yes
## 766 Conservative Quite close Yes
## 767 Conservative Not close Yes
## 768 Labour Not close Yes
## 769 Labour Quite close Yes
## 770 Conservative Quite close Yes
## 771 Conservative Quite close Yes
## 772 Social Democratic and Labour Party (nir) <NA> Yes
## 773 Labour Quite close Yes
## 774 <NA> <NA> Yes
## 775 <NA> <NA> Yes
## 776 <NA> <NA> Yes
## 777 <NA> <NA> Yes
## 778 Conservative Not close Yes
## 779 UK Independence Party Quite close Yes
## 780 <NA> <NA> Yes
## 781 <NA> <NA> Yes
## 782 <NA> <NA> Yes
## 783 Green Party Quite close Yes
## 784 Scottish National Party Quite close Yes
## 785 Labour Quite close Yes
## 786 <NA> <NA> No
## 787 <NA> <NA> Yes
## 788 Labour Quite close Yes
## 789 Labour Quite close Yes
## 790 <NA> <NA> Yes
## 791 Labour Very close Yes
## 792 <NA> <NA> Yes
## 793 Conservative Not close Yes
## 794 <NA> <NA> Yes
## 795 <NA> <NA> Yes
## 796 <NA> <NA> Yes
## 797 Labour Not close Yes
## 798 <NA> <NA> Yes
## 799 <NA> <NA> Yes
## 800 Labour Quite close Yes
## 801 <NA> <NA> Yes
## 802 <NA> <NA> Yes
## 803 Labour Quite close Yes
## 804 Labour Quite close Yes
## 805 <NA> <NA> Yes
## 806 <NA> <NA> Yes
## 807 <NA> <NA> No
## 808 Labour Not close Yes
## 809 <NA> <NA> Yes
## 810 <NA> <NA> Yes
## 811 Conservative Quite close Yes
## 812 Labour Quite close Yes
## 813 <NA> <NA> Yes
## 814 Labour Quite close Yes
## 815 UK Independence Party Very close Yes
## 816 <NA> <NA> Yes
## 817 <NA> <NA> Yes
## 818 <NA> <NA> Yes
## 819 Conservative Quite close Yes
## 820 <NA> <NA> No
## 821 Conservative Quite close Yes
## 822 <NA> <NA> Yes
## 823 Green Party Not close Yes
## 824 UK Independence Party Quite close Yes
## 825 UK Independence Party Quite close Yes
## 826 <NA> <NA> No
## 827 <NA> <NA> Yes
## 828 Conservative Quite close Yes
## 829 Labour Quite close Yes
## 830 Labour Not close Yes
## 831 <NA> <NA> Yes
## 832 <NA> <NA> Yes
## 833 UK Independence Party Not close Yes
## 834 <NA> <NA> Yes
## 835 <NA> <NA> Yes
## 836 Green Party Quite close Yes
## 837 <NA> <NA> Yes
## 838 <NA> <NA> Yes
## 839 <NA> <NA> Yes
## 840 Scottish National Party Quite close Yes
## 841 <NA> <NA> Yes
## 842 <NA> <NA> Yes
## 843 <NA> <NA> Yes
## 844 UK Independence Party Not close Yes
## 845 Liberal Democrat Not close Yes
## 846 Democratic Unionist Party (nir) <NA> Yes
## 847 UK Independence Party Quite close Yes
## 848 <NA> <NA> No
## 849 <NA> <NA> Yes
## 850 Conservative Quite close Yes
## 851 Labour Quite close Yes
## 852 UK Independence Party Quite close Yes
## 853 <NA> <NA> Yes
## 854 <NA> <NA> Yes
## 855 UK Independence Party Very close Yes
## 856 Conservative Not close Yes
## 857 Labour Very close Yes
## 858 <NA> <NA> Yes
## 859 Green Party Not close Yes
## 860 Scottish National Party Quite close Yes
## 861 Labour Quite close Yes
## 862 <NA> <NA> Yes
## 863 Liberal Democrat Quite close Yes
## 864 <NA> <NA> Yes
## 865 <NA> <NA> Yes
## 866 <NA> <NA> Yes
## 867 <NA> <NA> Yes
## 868 <NA> <NA> Yes
## 869 <NA> <NA> Yes
## 870 Conservative Very close Yes
## 871 <NA> <NA> Yes
## 872 Green Party Quite close Yes
## 873 Sinn Fein (nir) <NA> Yes
## 874 <NA> <NA> No
## 875 Labour Not close Yes
## 876 <NA> <NA> Yes
## 877 Labour Not close Yes
## 878 Conservative Quite close Yes
## 879 Green Party Quite close Yes
## 880 Conservative Very close Yes
## 881 <NA> <NA> Yes
## 882 UK Independence Party Quite close Yes
## 883 Conservative Very close Yes
## 884 <NA> <NA> Yes
## 885 <NA> <NA> Yes
## 886 <NA> <NA> Yes
## 887 <NA> <NA> Yes
## 888 <NA> <NA> Yes
## 889 <NA> <NA> No
## 890 <NA> <NA> Yes
## 891 Labour Quite close Yes
## 892 Labour Not close Yes
## 893 <NA> <NA> Yes
## 894 <NA> <NA> Yes
## 895 <NA> <NA> Yes
## 896 Labour Quite close Yes
## 897 <NA> <NA> Yes
## 898 Labour Quite close Yes
## 899 <NA> <NA> Yes
## 900 Green Party Very close Yes
## 901 <NA> <NA> Yes
## 902 Liberal Democrat Not close Yes
## 903 Labour Quite close Yes
## 904 Conservative Quite close Yes
## 905 Labour Not close Yes
## 906 Green Party Quite close Yes
## 907 Scottish National Party Very close Yes
## 908 Conservative Quite close Yes
## 909 Labour Very close Yes
## 910 Liberal Democrat Very close Yes
## 911 <NA> <NA> Yes
## 912 <NA> <NA> Yes
## 913 <NA> <NA> Yes
## 914 Labour Not close Yes
## 915 Conservative Quite close Yes
## 916 Conservative Not close Yes
## 917 <NA> <NA> Yes
## 918 <NA> <NA> Yes
## 919 <NA> <NA> Yes
## 920 <NA> <NA> Yes
## 921 Labour Not close Yes
## 922 <NA> <NA> Yes
## 923 Conservative Quite close Yes
## 924 Conservative Quite close Yes
## 925 Conservative Quite close Yes
## 926 Labour Quite close Yes
## 927 Labour Quite close Yes
## 928 <NA> <NA> Yes
## 929 Conservative Not close Yes
## 930 <NA> <NA> Yes
## 931 Labour Not close Yes
## 932 <NA> <NA> Yes
## 933 Conservative Quite close Yes
## 934 Conservative Quite close Yes
## 935 <NA> <NA> Yes
## 936 Labour Not at all close Yes
## 937 <NA> <NA> Yes
## 938 UK Independence Party Quite close Yes
## 939 <NA> <NA> Yes
## 940 <NA> <NA> Yes
## 941 <NA> <NA> Yes
## 942 <NA> <NA> Yes
## 943 <NA> <NA> Yes
## 944 UK Independence Party Quite close Yes
## 945 UK Independence Party Quite close Yes
## 946 <NA> <NA> Yes
## 947 Conservative Not close Yes
## 948 <NA> <NA> Yes
## 949 <NA> <NA> Yes
## 950 <NA> <NA> Yes
## 951 Conservative Very close Yes
## 952 <NA> <NA> Yes
## 953 <NA> <NA> Yes
## 954 <NA> <NA> Yes
## 955 Labour Not close Yes
## 956 UK Independence Party Quite close Yes
## 957 Conservative Not close Yes
## 958 Conservative Quite close Yes
## 959 UK Independence Party Not close Yes
## 960 <NA> <NA> Yes
## 961 <NA> <NA> Yes
## 962 <NA> <NA> Yes
## 963 UK Independence Party Not close Yes
## 964 <NA> <NA> Yes
## 965 Conservative Not close Yes
## 966 UK Independence Party Not at all close Yes
## 967 Conservative Quite close Yes
## 968 <NA> <NA> Yes
## 969 Labour Quite close Yes
## 970 <NA> <NA> Yes
## 971 Other Very close Yes
## 972 <NA> <NA> Yes
## 973 Conservative Not close Yes
## 974 <NA> <NA> Yes
## 975 <NA> <NA> Yes
## 976 <NA> <NA> Yes
## 977 <NA> <NA> Yes
## 978 Conservative Quite close Yes
## 979 Conservative Quite close Yes
## 980 Labour Quite close Yes
## 981 <NA> <NA> Yes
## 982 <NA> <NA> Yes
## 983 <NA> <NA> Yes
## 984 <NA> <NA> Yes
## 985 <NA> <NA> Yes
## 986 <NA> <NA> Yes
## 987 <NA> <NA> Yes
## 988 Conservative Not close Yes
## 989 UK Independence Party Quite close Yes
## 990 Labour Quite close Yes
## 991 Labour Quite close Yes
## 992 Labour Quite close Yes
## 993 Democratic Unionist Party (nir) <NA> Yes
## 994 <NA> <NA> Yes
## 995 Labour Quite close Yes
## 996 <NA> <NA> Yes
## 997 Alliance Party (nir) <NA> Yes
## 998 Conservative Quite close Yes
## 999 Labour Quite close No
## 1000 Labour Not close Yes
## 1001 Labour Very close Yes
## 1002 UK Independence Party Not close Yes
## 1003 <NA> <NA> Yes
## 1004 Social Democratic and Labour Party (nir) <NA> Yes
## 1005 Conservative Quite close Yes
## 1006 <NA> <NA> Yes
## 1007 <NA> <NA> Yes
## 1008 Green Party Quite close Yes
## 1009 Conservative Not close Yes
## 1010 <NA> <NA> Yes
## 1011 <NA> <NA> Yes
## 1012 <NA> <NA> Yes
## 1013 <NA> <NA> Yes
## 1014 Labour Quite close Yes
## 1015 Labour Not close Yes
## 1016 Green Party Not close Yes
## 1017 Conservative Quite close Yes
## 1018 Labour Not close Yes
## 1019 UK Independence Party Quite close Yes
## 1020 Labour Not close Yes
## 1021 <NA> <NA> Yes
## 1022 Labour Very close Yes
## 1023 <NA> <NA> Yes
## 1024 Conservative Quite close Yes
## 1025 Conservative Not close Yes
## 1026 Conservative Quite close Yes
## 1027 Labour Quite close Yes
## 1028 <NA> <NA> Yes
## 1029 <NA> <NA> No
## 1030 Labour Quite close Yes
## 1031 Green Party Not close Yes
## 1032 <NA> <NA> Yes
## 1033 Conservative Quite close No
## 1034 Conservative Quite close Yes
## 1035 <NA> <NA> Yes
## 1036 UK Independence Party Quite close Yes
## 1037 <NA> <NA> Yes
## 1038 Conservative Not at all close Yes
## 1039 <NA> <NA> Yes
## 1040 Other Very close Yes
## 1041 Other Quite close Yes
## 1042 <NA> <NA> Yes
## 1043 <NA> <NA> Yes
## 1044 Labour Very close Yes
## 1045 <NA> <NA> Yes
## 1046 Labour Quite close Yes
## 1047 <NA> <NA> Yes
## 1048 <NA> <NA> Yes
## 1049 Labour Not close Yes
## 1050 Conservative Quite close Yes
## 1051 <NA> <NA> Yes
## 1052 Labour Quite close Yes
## 1053 <NA> <NA> Yes
## 1054 Conservative Quite close Yes
## 1055 <NA> <NA> Yes
## 1056 <NA> <NA> Yes
## 1057 Labour Quite close Yes
## 1058 <NA> <NA> Yes
## 1059 Conservative Not close Yes
## 1060 UK Independence Party Quite close Yes
## 1061 Labour Not close Yes
## 1062 <NA> <NA> Yes
## 1063 Conservative Quite close Yes
## 1064 <NA> <NA> Yes
## 1065 <NA> <NA> No
## 1066 Labour Quite close Yes
## 1067 Labour Not at all close Yes
## 1068 <NA> <NA> Yes
## 1069 Conservative Quite close Yes
## 1070 Conservative Quite close Yes
## 1071 <NA> <NA> Yes
## 1072 <NA> <NA> Yes
## 1073 <NA> <NA> Yes
## 1074 Labour Not at all close Yes
## 1075 Labour Quite close Yes
## 1076 <NA> <NA> Yes
## 1077 <NA> <NA> Yes
## 1078 Green Party Quite close Yes
## 1079 <NA> <NA> Yes
## 1080 <NA> <NA> Yes
## 1081 Conservative Not close Yes
## 1082 Conservative Quite close Yes
## 1083 Green Party Quite close Yes
## 1084 Conservative Quite close Yes
## 1085 Conservative Not close Yes
## 1086 Labour Quite close Yes
## 1087 Labour Quite close Yes
## 1088 Labour Quite close Yes
## 1089 <NA> <NA> Yes
## 1090 <NA> <NA> Yes
## 1091 Labour Not close Yes
## 1092 <NA> <NA> No
## 1093 <NA> <NA> Yes
## 1094 Labour Very close Yes
## 1095 UK Independence Party Quite close Yes
## 1096 Conservative Not close Yes
## 1097 Conservative Not close Yes
## 1098 <NA> <NA> Yes
## 1099 Conservative Quite close Yes
## 1100 Scottish National Party Quite close Yes
## 1101 <NA> <NA> Yes
## 1102 <NA> <NA> Yes
## 1103 <NA> <NA> Yes
## 1104 Labour Not close Yes
## 1105 <NA> <NA> Yes
## 1106 <NA> <NA> Yes
## 1107 Conservative Quite close Yes
## 1108 <NA> <NA> Yes
## 1109 <NA> <NA> Yes
## 1110 <NA> <NA> Yes
## 1111 <NA> <NA> No
## 1112 Ulster Unionist Party (nir) <NA> Yes
## 1113 <NA> <NA> Yes
## 1114 Conservative Very close Yes
## 1115 Liberal Democrat Quite close Yes
## 1116 Conservative Quite close Yes
## 1117 Labour Quite close Yes
## 1118 <NA> <NA> Yes
## 1119 UK Independence Party Very close Yes
## 1120 UK Independence Party Very close Yes
## 1121 Ulster Unionist Party (nir) <NA> Yes
## 1122 Labour Quite close Yes
## 1123 <NA> <NA> Yes
## 1124 <NA> <NA> Yes
## 1125 Labour Not close Yes
## 1126 Labour Not close Yes
## 1127 <NA> <NA> Yes
## 1128 Conservative Quite close Yes
## 1129 Liberal Democrat Quite close Yes
## 1130 Labour Quite close Yes
## 1131 <NA> <NA> No
## 1132 UK Independence Party Quite close Yes
## 1133 Labour Quite close Yes
## 1134 Labour Very close Yes
## 1135 <NA> <NA> Yes
## 1136 UK Independence Party Quite close Yes
## 1137 <NA> <NA> Yes
## 1138 Labour Not close Yes
## 1139 <NA> <NA> Yes
## 1140 <NA> <NA> Yes
## 1141 <NA> <NA> Yes
## 1142 <NA> <NA> Yes
## 1143 <NA> <NA> Yes
## 1144 Labour Quite close Yes
## 1145 UK Independence Party Quite close Yes
## 1146 Conservative Quite close Yes
## 1147 UK Independence Party Very close Yes
## 1148 Labour Not close Yes
## 1149 <NA> <NA> No
## 1150 Labour Not close No
## 1151 <NA> <NA> Yes
## 1152 <NA> <NA> Yes
## 1153 <NA> <NA> Yes
## 1154 Sinn Fein (nir) <NA> Yes
## 1155 <NA> <NA> Yes
## 1156 <NA> <NA> Yes
## 1157 <NA> <NA> Yes
## 1158 <NA> <NA> Yes
## 1159 <NA> <NA> Yes
## 1160 Scottish National Party Quite close Yes
## 1161 Conservative Quite close Yes
## 1162 <NA> <NA> No
## 1163 Labour Quite close Yes
## 1164 Liberal Democrat Quite close Yes
## 1165 <NA> <NA> Yes
## 1166 Ulster Unionist Party (nir) <NA> Yes
## 1167 <NA> <NA> Yes
## 1168 <NA> <NA> Yes
## 1169 Labour Quite close Yes
## 1170 <NA> <NA> Yes
## 1171 <NA> <NA> Yes
## 1172 <NA> <NA> Yes
## 1173 <NA> <NA> Yes
## 1174 <NA> <NA> No
## 1175 <NA> <NA> Yes
## 1176 Conservative Quite close Yes
## 1177 Conservative Quite close Yes
## 1178 Labour Quite close Yes
## 1179 Green Party Quite close Yes
## 1180 <NA> <NA> Yes
## 1181 <NA> <NA> Yes
## 1182 <NA> <NA> Yes
## 1183 Labour Quite close Yes
## 1184 Conservative Quite close Yes
## 1185 <NA> <NA> Yes
## 1186 Liberal Democrat Not close Yes
## 1187 Conservative Quite close Yes
## 1188 Labour Not close Yes
## 1189 UK Independence Party Quite close Yes
## 1190 <NA> <NA> Yes
## 1191 <NA> <NA> Yes
## 1192 Liberal Democrat Not close Yes
## 1193 Labour Quite close Yes
## 1194 <NA> <NA> Yes
## 1195 <NA> <NA> Yes
## 1196 Liberal Democrat Very close Yes
## 1197 <NA> <NA> Yes
## 1198 Conservative Quite close No
## 1199 Conservative Not close Yes
## 1200 <NA> <NA> Yes
## 1201 <NA> <NA> Yes
## 1202 UK Independence Party Quite close Yes
## 1203 Conservative Very close Yes
## 1204 <NA> <NA> Yes
## 1205 <NA> <NA> No
## 1206 UK Independence Party Quite close Yes
## 1207 Labour Quite close Yes
## 1208 <NA> <NA> Yes
## 1209 <NA> <NA> Yes
## 1210 <NA> <NA> Yes
## 1211 Labour Quite close Yes
## 1212 UK Independence Party Quite close Yes
## 1213 <NA> <NA> Yes
## 1214 <NA> <NA> Yes
## 1215 Conservative Not close Yes
## 1216 Conservative Quite close Yes
## 1217 Liberal Democrat Very close Yes
## 1218 Conservative Quite close Yes
## 1219 Labour Quite close Yes
## 1220 <NA> <NA> Yes
## 1221 <NA> <NA> Yes
## 1222 Conservative Quite close Yes
## 1223 UK Independence Party Not close Yes
## 1224 <NA> <NA> No
## 1225 Labour Very close Yes
## 1226 <NA> <NA> Yes
## 1227 UK Independence Party Not close Yes
## 1228 <NA> <NA> Yes
## 1229 <NA> <NA> Yes
## 1230 Labour Quite close Yes
## 1231 <NA> <NA> Yes
## 1232 <NA> <NA> Yes
## 1233 <NA> <NA> Yes
## 1234 UK Independence Party Quite close Yes
## 1235 <NA> <NA> Yes
## 1236 <NA> <NA> Yes
## 1237 Conservative Not close No
## 1238 <NA> <NA> Yes
## 1239 Scottish National Party Quite close Yes
## 1240 Conservative Quite close Yes
## 1241 UK Independence Party Not close Yes
## 1242 Labour Very close Yes
## 1243 <NA> <NA> Yes
## 1244 Conservative Not close Yes
## 1245 <NA> <NA> Yes
## 1246 Green Party Quite close Yes
## 1247 <NA> <NA> Yes
## 1248 Labour Quite close Yes
## 1249 <NA> <NA> Yes
## 1250 <NA> <NA> Yes
## 1251 Conservative Not close Yes
## 1252 <NA> <NA> Yes
## 1253 Conservative Not close Yes
## 1254 Conservative Quite close Yes
## 1255 <NA> <NA> Yes
## 1256 Conservative Very close Yes
## 1257 Labour Quite close Yes
## 1258 <NA> <NA> Yes
## 1259 Conservative Quite close Yes
## 1260 Labour Quite close No
## 1261 <NA> <NA> No
## 1262 Green Party Quite close Yes
## 1263 <NA> <NA> Yes
## 1264 Conservative Quite close Yes
## 1265 Labour Very close Yes
## 1266 UK Independence Party Not close Yes
## 1267 <NA> <NA> Yes
## 1268 <NA> <NA> Yes
## 1269 <NA> <NA> Yes
## 1270 <NA> <NA> Yes
## 1271 <NA> <NA> Yes
## 1272 <NA> <NA> Yes
## 1273 <NA> <NA> Yes
## 1274 Labour Quite close Yes
## 1275 Labour Very close Yes
## 1276 <NA> <NA> Yes
## 1277 <NA> <NA> Yes
## 1278 Conservative Quite close Yes
## 1279 <NA> <NA> No
## 1280 <NA> <NA> Yes
## 1281 Sinn Fein (nir) <NA> Yes
## 1282 Labour Quite close Yes
## 1283 Labour Quite close Yes
## 1284 <NA> <NA> Yes
## 1285 <NA> <NA> Yes
## 1286 <NA> <NA> No
## 1287 <NA> <NA> Yes
## 1288 Labour Not close Yes
## 1289 <NA> <NA> Yes
## 1290 Labour Not close Yes
## 1291 Conservative Quite close Yes
## 1292 UK Independence Party Quite close Yes
## 1293 Labour Not close Yes
## 1294 Labour Not close Yes
## 1295 <NA> <NA> Yes
## 1296 <NA> <NA> Yes
## 1297 <NA> <NA> No
## 1298 <NA> <NA> Yes
## 1299 Conservative Quite close Yes
## 1300 UK Independence Party Quite close Yes
## 1301 <NA> <NA> Yes
## 1302 <NA> <NA> Yes
## 1303 UK Independence Party Quite close Yes
## 1304 Conservative Quite close Yes
## 1305 Labour Quite close Yes
## 1306 Labour Quite close Yes
## 1307 <NA> <NA> Yes
## 1308 <NA> <NA> No
## 1309 <NA> <NA> Yes
## 1310 Conservative Quite close Yes
## 1311 <NA> <NA> Yes
## 1312 <NA> <NA> Yes
## 1313 <NA> <NA> Yes
## 1314 <NA> <NA> Yes
## 1315 Labour Quite close Yes
## 1316 Conservative Quite close No
## 1317 Labour Not close Yes
## 1318 Plaid Cymru Very close No
## 1319 Conservative Not close Yes
## 1320 <NA> <NA> Yes
## 1321 Conservative Not close Yes
## 1322 <NA> <NA> Yes
## 1323 <NA> <NA> Yes
## 1324 <NA> <NA> Yes
## 1325 Labour Not close Yes
## 1326 <NA> <NA> Yes
## 1327 <NA> <NA> Yes
## 1328 Labour Very close Yes
## 1329 <NA> <NA> Yes
## 1330 Conservative Quite close Yes
## 1331 Social Democratic and Labour Party (nir) <NA> No
## 1332 <NA> <NA> Yes
## 1333 Conservative Quite close Yes
## 1334 Conservative Quite close Yes
## 1335 Conservative Quite close Yes
## 1336 Labour Quite close No
## 1337 UK Independence Party Quite close Yes
## 1338 <NA> <NA> Yes
## 1339 <NA> <NA> Yes
## 1340 UK Independence Party Quite close Yes
## 1341 Labour Not at all close Yes
## 1342 Conservative Quite close Yes
## 1343 Conservative Quite close Yes
## 1344 Conservative Not close Yes
## 1345 <NA> <NA> Yes
## 1346 <NA> <NA> Yes
## 1347 Labour Quite close Yes
## 1348 UK Independence Party Quite close Yes
## 1349 Labour Not close Yes
## 1350 <NA> <NA> Yes
## 1351 Labour Quite close Yes
## 1352 Liberal Democrat Very close Yes
## 1353 UK Independence Party Not close Yes
## 1354 Labour Quite close Yes
## 1355 <NA> <NA> Yes
## 1356 Labour Very close Yes
## 1357 Conservative Very close Yes
## 1358 Labour Not close Yes
## 1359 <NA> <NA> Yes
## 1360 <NA> <NA> Yes
## 1361 <NA> <NA> Yes
## 1362 <NA> <NA> Yes
## 1363 <NA> <NA> Yes
## 1364 <NA> <NA> Yes
## 1365 <NA> <NA> Yes
## 1366 Conservative Quite close Yes
## 1367 <NA> <NA> Yes
## 1368 Conservative Very close Yes
## 1369 Conservative Not at all close Yes
## 1370 <NA> <NA> Yes
## 1371 Labour Very close Yes
## 1372 Labour Quite close Yes
## 1373 <NA> <NA> Yes
## 1374 UK Independence Party Not close Yes
## 1375 Conservative Quite close Yes
## 1376 UK Independence Party Quite close Yes
## 1377 <NA> <NA> Yes
## 1378 <NA> <NA> Yes
## 1379 UK Independence Party <NA> Yes
## 1380 <NA> <NA> Yes
## 1381 Liberal Democrat Not close Yes
## 1382 <NA> <NA> Yes
## 1383 <NA> <NA> Yes
## 1384 Conservative Quite close Yes
## 1385 Conservative Quite close Yes
## 1386 Labour Quite close Yes
## 1387 <NA> <NA> Yes
## 1388 Conservative Quite close Yes
## 1389 <NA> <NA> Yes
## 1390 Labour Not close Yes
## 1391 <NA> <NA> Yes
## 1392 Conservative Quite close Yes
## 1393 <NA> <NA> Yes
## 1394 <NA> <NA> Yes
## 1395 Conservative Quite close Yes
## 1396 Conservative Quite close Yes
## 1397 <NA> <NA> Yes
## 1398 Labour Not close Yes
## 1399 UK Independence Party Quite close Yes
## 1400 Conservative Quite close Yes
## 1401 <NA> <NA> Yes
## 1402 <NA> <NA> Yes
## 1403 <NA> <NA> Yes
## 1404 <NA> <NA> Yes
## 1405 <NA> <NA> Yes
## 1406 UK Independence Party Quite close Yes
## 1407 <NA> <NA> Yes
## 1408 Conservative Not close Yes
## 1409 Conservative Very close Yes
## 1410 Labour Not close Yes
## 1411 Labour Not close Yes
## 1412 <NA> <NA> Yes
## 1413 Conservative Quite close Yes
## 1414 Labour Quite close Yes
## 1415 <NA> <NA> Yes
## 1416 <NA> <NA> Yes
## 1417 <NA> <NA> Yes
## 1418 Labour Not close Yes
## 1419 <NA> <NA> Yes
## 1420 Conservative Quite close Yes
## 1421 <NA> <NA> Yes
## 1422 <NA> <NA> Yes
## 1423 <NA> <NA> Yes
## 1424 Green Party Not close No
## 1425 Labour Not close Yes
## 1426 <NA> <NA> Yes
## 1427 <NA> <NA> Yes
## 1428 Conservative Quite close Yes
## 1429 Labour Quite close Yes
## 1430 <NA> <NA> Yes
## 1431 <NA> <NA> Yes
## 1432 <NA> <NA> Yes
## 1433 <NA> <NA> Yes
## 1434 <NA> <NA> Yes
## 1435 <NA> <NA> No
## 1436 Conservative Quite close Yes
## 1437 <NA> <NA> No
## 1438 <NA> <NA> Yes
## 1439 <NA> <NA> Yes
## 1440 <NA> <NA> Yes
## 1441 <NA> <NA> Yes
## 1442 <NA> <NA> Yes
## 1443 UK Independence Party Quite close Yes
## 1444 UK Independence Party Quite close Yes
## 1445 <NA> <NA> Yes
## 1446 <NA> <NA> Yes
## 1447 Conservative Quite close Yes
## 1448 Conservative Quite close Yes
## 1449 Labour Quite close Yes
## 1450 <NA> <NA> Yes
## 1451 <NA> <NA> Yes
## 1452 <NA> <NA> Yes
## 1453 <NA> <NA> Yes
## 1454 <NA> <NA> Yes
## 1455 <NA> <NA> Yes
## 1456 <NA> <NA> Yes
## 1457 <NA> <NA> Yes
## 1458 Labour Quite close Yes
## 1459 <NA> <NA> Yes
## 1460 Conservative Quite close Yes
## 1461 <NA> <NA> Yes
## 1462 <NA> <NA> Yes
## 1463 <NA> <NA> No
## 1464 Conservative Quite close Yes
## 1465 Labour Quite close Yes
## 1466 Liberal Democrat Quite close No
## 1467 <NA> <NA> Yes
## 1468 <NA> <NA> Yes
## 1469 Conservative Quite close Yes
## 1470 Conservative Quite close Yes
## 1471 <NA> <NA> Yes
## 1472 <NA> <NA> Yes
## 1473 <NA> <NA> Yes
## 1474 <NA> <NA> Yes
## 1475 <NA> <NA> Yes
## 1476 <NA> <NA> No
## 1477 Labour Quite close Yes
## 1478 <NA> <NA> Yes
## 1479 Scottish National Party Very close Yes
## 1480 UK Independence Party Very close Yes
## 1481 <NA> <NA> Yes
## 1482 UK Independence Party Quite close Yes
## 1483 Conservative Quite close Yes
## 1484 Labour Very close Yes
## 1485 Labour Not close Yes
## 1486 <NA> <NA> Yes
## 1487 <NA> <NA> Yes
## 1488 Conservative Not close Yes
## 1489 Labour Not close Yes
## 1490 Conservative Quite close Yes
## 1491 <NA> <NA> Yes
## 1492 Scottish National Party Quite close Yes
## 1493 Conservative Quite close Yes
## 1494 UK Independence Party Quite close Yes
## 1495 Labour Quite close Yes
## 1496 Labour Quite close Yes
## 1497 <NA> <NA> Yes
## 1498 Labour Not at all close Yes
## 1499 <NA> <NA> Yes
## 1500 <NA> <NA> Yes
## 1501 Conservative Quite close Yes
## 1502 Conservative Quite close Yes
## 1503 <NA> <NA> No
## 1504 Liberal Democrat Very close Yes
## 1505 Labour Quite close Yes
## 1506 Labour Not close Yes
## 1507 Labour Quite close Yes
## 1508 <NA> <NA> Yes
## 1509 UK Independence Party Quite close Yes
## 1510 <NA> <NA> No
## 1511 Labour Not close Yes
## 1512 Labour Very close Yes
## 1513 <NA> <NA> Yes
## 1514 <NA> <NA> No
## 1515 UK Independence Party Quite close Yes
## 1516 Labour Quite close Yes
## 1517 <NA> <NA> Yes
## 1518 <NA> <NA> Yes
## 1519 Scottish National Party Quite close Yes
## 1520 Scottish National Party Very close Yes
## 1521 <NA> <NA> Yes
## 1522 Conservative Quite close Yes
## 1523 Liberal Democrat Quite close No
## 1524 Labour Not close Yes
## 1525 UK Independence Party Quite close Yes
## 1526 <NA> <NA> Yes
## 1527 <NA> <NA> Yes
## 1528 Ulster Unionist Party (nir) <NA> Yes
## 1529 UK Independence Party Not at all close Yes
## 1530 Conservative Not close Yes
## 1531 <NA> <NA> Yes
## 1532 Labour Not close Yes
## 1533 <NA> <NA> No
## 1534 Conservative Quite close Yes
## 1535 <NA> <NA> No
## 1536 <NA> <NA> Yes
## 1537 Conservative Not close Yes
## 1538 Labour Quite close Yes
## 1539 Labour Quite close No
## 1540 Conservative Quite close Yes
## 1541 Liberal Democrat Quite close Yes
## 1542 Scottish National Party Not close Yes
## 1543 <NA> <NA> Yes
## 1544 Conservative Not close Yes
## 1545 Plaid Cymru Quite close Yes
## 1546 <NA> <NA> Yes
## 1547 <NA> <NA> Yes
## 1548 <NA> <NA> Yes
## 1549 <NA> <NA> Yes
## 1550 <NA> <NA> Yes
## 1551 Labour Very close Yes
## 1552 Labour Quite close Yes
## 1553 Labour Quite close Yes
## 1554 Scottish National Party Not close Yes
## 1555 <NA> <NA> Yes
## 1556 UK Independence Party Quite close Yes
## 1557 <NA> <NA> No
## 1558 Labour Quite close Yes
## 1559 <NA> <NA> Yes
## 1560 <NA> <NA> Yes
## 1561 <NA> <NA> Yes
## 1562 Green Party Very close Yes
## 1563 Scottish National Party Quite close Yes
## 1564 Labour Quite close Yes
## 1565 <NA> <NA> Yes
## 1566 Conservative Quite close Yes
## 1567 <NA> <NA> Yes
## 1568 UK Independence Party Quite close Yes
## 1569 Conservative Not close Yes
## 1570 Labour Quite close No
## 1571 Liberal Democrat Quite close Yes
## 1572 Labour Quite close Yes
## 1573 <NA> <NA> Yes
## 1574 Labour Quite close Yes
## 1575 Conservative Very close Yes
## 1576 <NA> <NA> Yes
## 1577 <NA> <NA> Yes
## 1578 Conservative Quite close Yes
## 1579 <NA> <NA> Yes
## 1580 Labour Not close Yes
## 1581 Conservative Quite close Yes
## 1582 Labour Quite close Yes
## 1583 <NA> <NA> Yes
## 1584 <NA> <NA> Yes
## 1585 Labour Quite close Yes
## 1586 <NA> <NA> Yes
## 1587 <NA> <NA> Yes
## 1588 Labour Not at all close Yes
## 1589 Labour Quite close Yes
## 1590 Liberal Democrat Quite close Yes
## 1591 <NA> <NA> Yes
## 1592 Labour Quite close Yes
## 1593 <NA> <NA> Yes
## 1594 <NA> <NA> Yes
## 1595 <NA> <NA> Yes
## 1596 <NA> <NA> Yes
## 1597 Liberal Democrat Not close Yes
## 1598 Conservative Not close Yes
## 1599 Conservative Quite close Yes
## 1600 <NA> <NA> Yes
## 1601 Labour Very close Yes
## 1602 Conservative Quite close Yes
## 1603 Labour Very close Yes
## 1604 Conservative Quite close Yes
## 1605 <NA> <NA> Yes
## 1606 <NA> <NA> Yes
## 1607 <NA> <NA> Yes
## 1608 Liberal Democrat Not close Yes
## 1609 <NA> <NA> Yes
## 1610 Labour Not at all close Yes
## 1611 <NA> <NA> Yes
## 1612 Labour Quite close Yes
## 1613 <NA> <NA> Yes
## 1614 UK Independence Party Very close Yes
## 1615 <NA> <NA> Yes
## 1616 Liberal Democrat Quite close Yes
## 1617 Labour Quite close Yes
## 1618 Scottish National Party Quite close Yes
## 1619 UK Independence Party Quite close Yes
## 1620 Green Party Quite close Yes
## 1621 Conservative Not at all close Yes
## 1622 <NA> <NA> Yes
## 1623 <NA> <NA> Yes
## 1624 Conservative Quite close Yes
## 1625 Scottish National Party Quite close Yes
## 1626 <NA> <NA> Yes
## 1627 Scottish National Party Quite close Yes
## 1628 <NA> <NA> Yes
## 1629 <NA> <NA> Yes
## 1630 <NA> <NA> No
## 1631 <NA> <NA> Yes
## 1632 Labour Quite close Yes
## 1633 Ulster Unionist Party (nir) <NA> Yes
## 1634 Labour Quite close Yes
## 1635 UK Independence Party Quite close Yes
## 1636 <NA> <NA> No
## 1637 <NA> <NA> Yes
## 1638 <NA> <NA> Yes
## 1639 <NA> <NA> Yes
## 1640 UK Independence Party Quite close Yes
## 1641 Conservative Quite close No
## 1642 <NA> <NA> Yes
## 1643 <NA> <NA> Yes
## 1644 <NA> <NA> Yes
## 1645 Conservative Quite close Yes
## 1646 <NA> <NA> Yes
## 1647 <NA> <NA> Yes
## 1648 <NA> <NA> Yes
## 1649 <NA> <NA> Yes
## 1650 <NA> <NA> Yes
## 1651 Labour Quite close Yes
## 1652 <NA> <NA> Yes
## 1653 <NA> <NA> Yes
## 1654 <NA> <NA> Yes
## 1655 Conservative Not close Yes
## 1656 <NA> <NA> Yes
## 1657 <NA> <NA> Yes
## 1658 UK Independence Party Very close Yes
## 1659 Conservative Quite close Yes
## 1660 <NA> <NA> Yes
## 1661 Conservative Quite close Yes
## 1662 <NA> <NA> Yes
## 1663 Other Not close Yes
## 1664 <NA> <NA> Yes
## 1665 <NA> <NA> Yes
## 1666 <NA> <NA> No
## 1667 <NA> <NA> Yes
## 1668 Labour Quite close Yes
## 1669 <NA> <NA> Yes
## 1670 <NA> <NA> Yes
## 1671 UK Independence Party Quite close Yes
## 1672 <NA> <NA> Yes
## 1673 Conservative Quite close Yes
## 1674 <NA> <NA> Yes
## 1675 Liberal Democrat Not close Yes
## 1676 <NA> <NA> Yes
## 1677 <NA> <NA> Yes
## 1678 <NA> <NA> Yes
## 1679 <NA> <NA> Yes
## 1680 <NA> <NA> Yes
## 1681 <NA> <NA> Yes
## 1682 Conservative Quite close Yes
## 1683 <NA> <NA> Yes
## 1684 <NA> <NA> Yes
## 1685 <NA> <NA> Yes
## 1686 <NA> <NA> Yes
## 1687 Green Party Not close Yes
## 1688 <NA> <NA> Yes
## 1689 Labour Not close No
## 1690 <NA> <NA> No
## 1691 <NA> <NA> Yes
## 1692 <NA> <NA> Yes
## 1693 Conservative Quite close Yes
## 1694 <NA> <NA> Yes
## 1695 Green Party Not close Yes
## 1696 <NA> <NA> No
## 1697 <NA> <NA> Yes
## 1698 UK Independence Party Very close No
## 1699 <NA> <NA> Yes
## 1700 <NA> <NA> Yes
## 1701 Other Not at all close Yes
## 1702 <NA> <NA> No
## 1703 Social Democratic and Labour Party (nir) <NA> Yes
## 1704 <NA> <NA> Yes
## 1705 <NA> <NA> Yes
## 1706 Scottish National Party Quite close No
## 1707 <NA> <NA> Yes
## 1708 Green Party Quite close Yes
## 1709 Conservative Quite close Yes
## 1710 Labour Quite close Yes
## 1711 Labour Not close Yes
## 1712 <NA> <NA> Yes
## 1713 Conservative Not close Yes
## 1714 UK Independence Party Not close Yes
## 1715 Labour Quite close Yes
## 1716 <NA> <NA> Yes
## 1717 Labour Not close Yes
## 1718 <NA> <NA> Yes
## 1719 Conservative Quite close Yes
## 1720 <NA> <NA> Yes
## 1721 <NA> <NA> Yes
## 1722 Other Not close Yes
## 1723 Conservative Very close No
## 1724 Scottish National Party Quite close Yes
## 1725 <NA> <NA> No
## 1726 Other Quite close Yes
## 1727 <NA> <NA> Yes
## 1728 Labour Not close Yes
## 1729 Labour Not close Yes
## 1730 <NA> <NA> Yes
## 1731 Conservative Quite close Yes
## 1732 Scottish National Party Not at all close No
## 1733 Liberal Democrat Not close Yes
## 1734 Labour Quite close Yes
## 1735 Conservative Not at all close Yes
## 1736 Scottish National Party Quite close Yes
## 1737 Conservative Not close Yes
## 1738 UK Independence Party Quite close Yes
## 1739 Liberal Democrat Not close Yes
## 1740 UK Independence Party Quite close Yes
## 1741 Conservative Quite close Yes
## 1742 Green Party Quite close Yes
## 1743 <NA> <NA> Yes
## 1744 <NA> <NA> Yes
## 1745 <NA> <NA> Yes
## 1746 Conservative Quite close Yes
## 1747 <NA> <NA> Yes
## 1748 <NA> <NA> No
## 1749 Labour Quite close Yes
## 1750 <NA> <NA> Yes
## 1751 Labour Not close Yes
## 1752 <NA> <NA> Yes
## 1753 <NA> <NA> Yes
## 1754 Liberal Democrat Quite close Yes
## 1755 Labour Quite close Yes
## 1756 <NA> <NA> Yes
## 1757 <NA> <NA> No
## 1758 Labour Quite close Yes
## 1759 UK Independence Party Quite close Yes
## 1760 UK Independence Party Quite close Yes
## 1761 Conservative Quite close Yes
## 1762 Labour Quite close Yes
## 1763 <NA> <NA> Yes
## 1764 <NA> <NA> Yes
## 1765 Conservative Not close Yes
## 1766 UK Independence Party Very close Yes
## 1767 Labour Quite close Yes
## 1768 Green Party Quite close Yes
## 1769 <NA> <NA> Yes
## 1770 <NA> <NA> Yes
## 1771 Labour Quite close Yes
## 1772 UK Independence Party Quite close Yes
## 1773 Labour Quite close Yes
## 1774 <NA> <NA> No
## 1775 <NA> <NA> Yes
## 1776 <NA> <NA> Yes
## 1777 Labour Quite close Yes
## 1778 Labour Quite close Yes
## 1779 Green Party Quite close Yes
## 1780 Labour Not at all close No
## 1781 <NA> <NA> Yes
## 1782 Conservative Not close Yes
## 1783 UK Independence Party Quite close Yes
## 1784 Conservative Not at all close Yes
## 1785 UK Independence Party Quite close Yes
## 1786 Liberal Democrat Quite close Yes
## 1787 <NA> <NA> Yes
## 1788 <NA> <NA> Yes
## 1789 Liberal Democrat Not close Yes
## 1790 <NA> <NA> Yes
## 1791 Conservative Not close Yes
## 1792 Liberal Democrat Not close Yes
## 1793 <NA> <NA> No
## 1794 Conservative Very close Yes
## 1795 <NA> <NA> Yes
## 1796 <NA> <NA> Yes
## 1797 Conservative Quite close Yes
## 1798 <NA> <NA> Yes
## 1799 <NA> <NA> Yes
## 1800 <NA> <NA> Yes
## 1801 <NA> <NA> Yes
## 1802 Labour Quite close Yes
## 1803 UK Independence Party Quite close Yes
## 1804 <NA> <NA> Yes
## 1805 UK Independence Party Quite close Yes
## 1806 Conservative Not close Yes
## 1807 <NA> <NA> Yes
## 1808 Green Party Quite close Yes
## 1809 Labour Not close Yes
## 1810 Plaid Cymru Quite close Yes
## 1811 Conservative Not close No
## 1812 Labour Quite close Yes
## 1813 <NA> <NA> Yes
## 1814 <NA> <NA> Yes
## 1815 Labour Very close Yes
## 1816 Conservative Not close Yes
## 1817 Conservative Quite close Yes
## 1818 <NA> <NA> Yes
## 1819 <NA> <NA> Yes
## 1820 <NA> <NA> No
## 1821 Conservative Quite close Yes
## 1822 Scottish National Party Quite close Yes
## 1823 <NA> <NA> Yes
## 1824 <NA> <NA> Yes
## 1825 Labour Not close Yes
## 1826 Conservative Quite close Yes
## 1827 Conservative Quite close Yes
## 1828 <NA> <NA> Yes
## 1829 UK Independence Party Not close Yes
## 1830 <NA> <NA> Yes
## 1831 Green Party Quite close Yes
## 1832 UK Independence Party Very close Yes
## 1833 <NA> <NA> No
## 1834 Labour Not close Yes
## 1835 <NA> <NA> Yes
## 1836 <NA> <NA> Yes
## 1837 Conservative Quite close Yes
## 1838 Scottish National Party Very close Yes
## 1839 Labour Quite close Yes
## 1840 <NA> <NA> Yes
## 1841 Conservative Quite close Yes
## 1842 Conservative Not close Yes
## 1843 UK Independence Party Quite close Yes
## 1844 Conservative Not close Yes
## 1845 Labour Not at all close Yes
## 1846 UK Independence Party Not close Yes
## 1847 UK Independence Party Very close Yes
## 1848 Labour Very close Yes
## 1849 <NA> <NA> Yes
## 1850 <NA> <NA> Yes
## 1851 <NA> <NA> Yes
## 1852 <NA> <NA> Yes
## 1853 Labour Quite close Yes
## 1854 <NA> <NA> Yes
## 1855 <NA> <NA> Yes
## 1856 <NA> <NA> Yes
## 1857 <NA> <NA> Yes
## 1858 Labour Not close Yes
## 1859 Conservative Quite close Yes
## 1860 UK Independence Party Quite close Yes
## 1861 Conservative Not close Yes
## 1862 <NA> <NA> Yes
## 1863 <NA> <NA> Yes
## 1864 <NA> <NA> Yes
## 1865 Conservative Quite close Yes
## 1866 UK Independence Party Quite close Yes
## 1867 <NA> <NA> Yes
## 1868 Conservative Quite close Yes
## 1869 <NA> <NA> Yes
## 1870 <NA> <NA> Yes
## 1871 UK Independence Party Quite close Yes
## 1872 <NA> <NA> No
## 1873 UK Independence Party Very close Yes
## 1874 <NA> <NA> Yes
## 1875 <NA> <NA> Yes
## 1876 Labour Not close Yes
## 1877 Conservative Quite close Yes
## 1878 <NA> <NA> Yes
## 1879 <NA> <NA> Yes
## 1880 Liberal Democrat Not close Yes
## 1881 <NA> <NA> Yes
## 1882 <NA> <NA> Yes
## 1883 Labour Quite close Yes
## 1884 <NA> <NA> Yes
## 1885 Conservative Not close Yes
## 1886 Green Party Quite close Yes
## 1887 <NA> <NA> Yes
## 1888 UK Independence Party Quite close Yes
## 1889 Conservative Quite close Yes
## 1890 <NA> <NA> Yes
## 1891 <NA> <NA> Yes
## 1892 <NA> <NA> Yes
## 1893 Conservative Very close Yes
## 1894 Labour Quite close Yes
## 1895 Labour Quite close No
## 1896 <NA> <NA> Yes
## 1897 Labour Quite close Yes
## 1898 <NA> <NA> Yes
## 1899 Green Party Quite close Yes
## 1900 <NA> <NA> Yes
## 1901 Labour Very close Yes
## 1902 <NA> <NA> Yes
## 1903 UK Independence Party Quite close Yes
## 1904 <NA> <NA> Yes
## 1905 <NA> <NA> Yes
## 1906 Labour Not close Yes
## 1907 Green Party Quite close Yes
## 1908 Conservative Very close Yes
## 1909 <NA> <NA> Yes
## 1910 <NA> <NA> Yes
## 1911 Labour Not close Yes
## 1912 Conservative Not close Yes
## 1913 Labour Not at all close Yes
## 1914 Conservative Not close Yes
## 1915 Labour Not close Yes
## 1916 <NA> <NA> Yes
## 1917 Conservative Quite close Yes
## 1918 UK Independence Party Quite close Yes
## 1919 <NA> <NA> Yes
## 1920 <NA> <NA> Yes
## 1921 <NA> <NA> Yes
## 1922 <NA> <NA> Yes
## 1923 UK Independence Party Not close Yes
## 1924 <NA> <NA> Yes
## 1925 <NA> <NA> Yes
## 1926 Labour Quite close Yes
## 1927 Conservative Not close Yes
## 1928 <NA> <NA> Yes
## 1929 <NA> <NA> Yes
## 1930 Labour Not close Yes
## 1931 <NA> <NA> Yes
## 1932 Conservative Not close Yes
## 1933 Conservative Quite close Yes
## 1934 <NA> <NA> Yes
## 1935 Labour Quite close Yes
## 1936 <NA> <NA> Yes
## 1937 <NA> <NA> No
## 1938 UK Independence Party Not at all close Yes
## 1939 Labour Very close Yes
## 1940 <NA> <NA> Yes
## 1941 <NA> <NA> Yes
## 1942 <NA> <NA> Yes
## 1943 UK Independence Party Quite close Yes
## 1944 Conservative Quite close Yes
## 1945 <NA> <NA> Yes
## 1946 Conservative Quite close Yes
## 1947 Conservative Quite close No
## 1948 <NA> <NA> Yes
## 1949 Conservative Quite close Yes
## 1950 Conservative Quite close Yes
## 1951 <NA> <NA> Yes
## 1952 <NA> <NA> Yes
## 1953 <NA> <NA> <NA>
## 1954 Conservative Very close Yes
## 1955 Liberal Democrat Quite close Yes
## 1956 Labour Quite close Yes
## 1957 <NA> <NA> Yes
## 1958 Conservative Very close Yes
## 1959 <NA> <NA> Yes
## 1960 UK Independence Party Not at all close Yes
## 1961 <NA> <NA> No
## 1962 UK Independence Party Not close Yes
## 1963 <NA> <NA> Yes
## 1964 UK Independence Party Quite close Yes
## 1965 Conservative Not close Yes
## 1966 <NA> <NA> Yes
## 1967 Conservative Quite close Yes
## 1968 Labour Not close Yes
## 1969 Liberal Democrat Not close Yes
## 1970 UK Independence Party Quite close Yes
## 1971 <NA> <NA> Yes
## 1972 Scottish National Party Not close Yes
## 1973 Conservative Not close Yes
## 1974 UK Independence Party Quite close Yes
## 1975 Labour Quite close Yes
## 1976 Conservative Not close Yes
## 1977 <NA> <NA> Yes
## 1978 <NA> <NA> Yes
## 1979 <NA> <NA> Yes
## 1980 Labour Quite close Yes
## 1981 <NA> <NA> Yes
## 1982 <NA> <NA> Yes
## 1983 <NA> <NA> Yes
## 1984 <NA> <NA> Yes
## 1985 <NA> <NA> Yes
## 1986 UK Independence Party Quite close Yes
## 1987 <NA> <NA> Yes
## 1988 Green Party Quite close No
## 1989 UK Independence Party Quite close Yes
## 1990 <NA> <NA> Yes
## 1991 Labour Very close Yes
## 1992 Conservative Quite close Yes
## 1993 Labour Quite close Yes
## 1994 Labour Quite close Yes
## 1995 Green Party Quite close Yes
## 1996 <NA> <NA> Yes
## 1997 Scottish National Party Quite close Yes
## 1998 <NA> <NA> Yes
## 1999 <NA> <NA> No
## 2000 Labour Quite close Yes
## 2001 <NA> <NA> Yes
## 2002 <NA> <NA> Yes
## 2003 UK Independence Party Quite close Yes
## 2004 Conservative Quite close Yes
## 2005 Labour Not close Yes
## 2006 Labour Not close Yes
## 2007 UK Independence Party Quite close Yes
## 2008 Labour Quite close No
## 2009 <NA> <NA> Yes
## 2010 <NA> <NA> Yes
## 2011 Sinn Fein (nir) <NA> Yes
## 2012 Labour Not close Yes
## 2013 <NA> <NA> Yes
## 2014 <NA> <NA> Yes
## 2015 <NA> <NA> Yes
## 2016 Democratic Unionist Party (nir) <NA> Yes
## 2017 <NA> <NA> Yes
## 2018 <NA> <NA> Yes
## 2019 <NA> <NA> No
## 2020 Labour Not close Yes
## 2021 Labour Not at all close Yes
## 2022 Labour Quite close No
## 2023 <NA> <NA> Yes
## 2024 Labour Not close Yes
## 2025 Conservative Not close Yes
## 2026 <NA> <NA> Yes
## 2027 Labour Not close Yes
## 2028 Labour Quite close Yes
## 2029 <NA> <NA> Yes
## 2030 <NA> <NA> Yes
## 2031 Conservative Quite close Yes
## 2032 <NA> <NA> Yes
## 2033 <NA> <NA> Yes
## 2034 <NA> <NA> No
## 2035 <NA> <NA> Yes
## 2036 Labour Quite close Yes
## 2037 Labour Quite close No
## 2038 Labour Quite close Yes
## 2039 <NA> <NA> Yes
## 2040 Conservative Quite close Yes
## 2041 <NA> <NA> Yes
## 2042 <NA> <NA> Yes
## 2043 Liberal Democrat Quite close Yes
## 2044 <NA> <NA> Yes
## 2045 <NA> <NA> Yes
## 2046 Labour Quite close Yes
## 2047 Labour Not close Yes
## 2048 Conservative Quite close Yes
## 2049 Conservative Very close Yes
## 2050 UK Independence Party Quite close Yes
## 2051 Scottish National Party Quite close Yes
## 2052 Labour Very close Yes
## 2053 <NA> <NA> Yes
## 2054 <NA> <NA> No
## 2055 Labour Not at all close Yes
## 2056 <NA> <NA> Yes
## 2057 <NA> <NA> Yes
## 2058 <NA> <NA> Yes
## 2059 Labour Quite close Yes
## 2060 Labour Very close Yes
## 2061 <NA> <NA> Yes
## 2062 Labour Quite close Yes
## 2063 <NA> <NA> Yes
## 2064 <NA> <NA> Yes
## 2065 <NA> <NA> Yes
## 2066 Labour Quite close Yes
## 2067 <NA> <NA> Yes
## 2068 <NA> <NA> Yes
## 2069 Conservative Quite close Yes
## 2070 <NA> <NA> Yes
## 2071 <NA> <NA> No
## 2072 Labour Quite close Yes
## 2073 UK Independence Party Quite close Yes
## 2074 <NA> <NA> Yes
## 2075 Conservative Not close Yes
## 2076 Conservative Not close Yes
## 2077 <NA> <NA> Yes
## 2078 Liberal Democrat Not close Yes
## 2079 <NA> <NA> Yes
## 2080 <NA> <NA> Yes
## 2081 <NA> <NA> Yes
## 2082 Democratic Unionist Party (nir) <NA> Yes
## 2083 Labour Quite close Yes
## 2084 <NA> <NA> No
## 2085 <NA> <NA> Yes
## 2086 Liberal Democrat Quite close Yes
## 2087 <NA> <NA> Yes
## 2088 Labour Quite close Yes
## 2089 <NA> <NA> Yes
## 2090 <NA> <NA> Yes
## 2091 <NA> <NA> Yes
## 2092 Labour Quite close Yes
## 2093 Labour Quite close Yes
## 2094 UK Independence Party Quite close Yes
## 2095 <NA> <NA> Yes
## 2096 <NA> <NA> Yes
## 2097 <NA> <NA> Yes
## 2098 <NA> <NA> Yes
## 2099 UK Independence Party Quite close Yes
## 2100 <NA> <NA> Yes
## 2101 <NA> <NA> No
## 2102 Labour Quite close Yes
## 2103 Labour Quite close Yes
## 2104 Liberal Democrat Not close Yes
## 2105 <NA> <NA> Yes
## 2106 <NA> <NA> Yes
## 2107 <NA> <NA> No
## 2108 <NA> <NA> Yes
## 2109 <NA> <NA> Yes
## 2110 UK Independence Party Quite close Yes
## 2111 <NA> <NA> Yes
## 2112 <NA> <NA> Yes
## 2113 <NA> <NA> Yes
## 2114 Labour Very close Yes
## 2115 <NA> <NA> Yes
## 2116 Labour Quite close Yes
## 2117 <NA> <NA> Yes
## 2118 <NA> <NA> No
## 2119 Labour Quite close Yes
## 2120 <NA> <NA> Yes
## 2121 Liberal Democrat Quite close No
## 2122 <NA> <NA> No
## 2123 <NA> <NA> Yes
## 2124 Conservative Very close Yes
## 2125 Labour Quite close Yes
## 2126 <NA> <NA> Yes
## 2127 Conservative Quite close Yes
## 2128 <NA> <NA> Yes
## 2129 Conservative Quite close Yes
## 2130 Conservative Not close Yes
## 2131 Labour Quite close Yes
## 2132 <NA> <NA> Yes
## 2133 Scottish National Party Very close Yes
## 2134 Labour Quite close Yes
## 2135 Labour Quite close No
## 2136 Conservative Not close Yes
## 2137 <NA> <NA> Yes
## 2138 <NA> <NA> Yes
## 2139 Conservative Quite close Yes
## 2140 <NA> <NA> Yes
## 2141 Conservative Quite close Yes
## 2142 <NA> <NA> Yes
## 2143 Conservative Quite close Yes
## 2144 Labour Very close Yes
## 2145 Liberal Democrat Not close Yes
## 2146 Liberal Democrat Not close Yes
## 2147 UK Independence Party Quite close Yes
## 2148 Conservative Not close Yes
## 2149 Labour Quite close Yes
## 2150 <NA> <NA> Yes
## 2151 Conservative Not close Yes
## 2152 Conservative Quite close Yes
## 2153 <NA> <NA> Yes
## 2154 <NA> <NA> Yes
## 2155 Scottish National Party Very close Yes
## 2156 UK Independence Party Not close Yes
## 2157 Conservative Quite close Yes
## 2158 <NA> <NA> Yes
## 2159 Conservative Not close Yes
## 2160 Conservative Not close Yes
## 2161 <NA> <NA> Yes
## 2162 UK Independence Party Not close Yes
## 2163 <NA> <NA> Yes
## 2164 <NA> <NA> Yes
## 2165 <NA> <NA> Yes
## 2166 Labour Not close Yes
## 2167 <NA> <NA> Yes
## 2168 Conservative Very close Yes
## 2169 <NA> <NA> Yes
## 2170 <NA> <NA> Yes
## 2171 Labour Quite close Yes
## 2172 <NA> <NA> Yes
## 2173 Labour Quite close Yes
## 2174 Labour Quite close Yes
## 2175 <NA> <NA> Yes
## 2176 Conservative Quite close Yes
## 2177 Green Party Quite close Yes
## 2178 <NA> <NA> Yes
## 2179 Green Party Quite close Yes
## 2180 <NA> <NA> Yes
## 2181 Conservative Very close Yes
## 2182 <NA> <NA> Yes
## 2183 <NA> <NA> Yes
## 2184 Labour Quite close Yes
## 2185 <NA> <NA> Yes
## 2186 Labour Quite close Yes
## 2187 Scottish National Party Quite close Yes
## 2188 <NA> <NA> Yes
## 2189 Conservative Quite close Yes
## 2190 <NA> <NA> Yes
## 2191 <NA> <NA> Yes
## 2192 <NA> <NA> Yes
## 2193 Labour Not close Yes
## 2194 <NA> <NA> Yes
## 2195 <NA> <NA> Yes
## 2196 Labour Quite close Yes
## 2197 Liberal Democrat Quite close Yes
## 2198 <NA> <NA> Yes
## 2199 <NA> <NA> Yes
## 2200 <NA> <NA> Yes
## 2201 <NA> <NA> Yes
## 2202 Green Party Quite close Yes
## 2203 <NA> <NA> Yes
## 2204 UK Independence Party Quite close Yes
## 2205 <NA> <NA> Yes
## 2206 Scottish National Party Quite close Yes
## 2207 Conservative Not close Yes
## 2208 Labour Quite close Yes
## 2209 Conservative Very close Yes
## 2210 Conservative Quite close Yes
## 2211 <NA> <NA> Yes
## 2212 <NA> <NA> Yes
## 2213 <NA> <NA> Yes
## 2214 Sinn Fein (nir) <NA> Yes
## 2215 Conservative Not close Yes
## 2216 <NA> <NA> Yes
## 2217 <NA> <NA> Yes
## 2218 Green Party Quite close No
## 2219 Other Quite close Yes
## 2220 Labour Quite close Yes
## 2221 Conservative Quite close Yes
## 2222 Conservative Very close Yes
## 2223 <NA> <NA> Yes
## 2224 <NA> <NA> Yes
## 2225 Labour Quite close No
## 2226 Conservative Not close Yes
## 2227 <NA> <NA> Yes
## 2228 Labour Not close Yes
## 2229 Labour Very close Yes
## 2230 Labour Quite close Yes
## 2231 Conservative Quite close Yes
## 2232 <NA> <NA> Yes
## 2233 <NA> <NA> Yes
## 2234 <NA> <NA> Yes
## 2235 <NA> <NA> Yes
## 2236 <NA> <NA> No
## 2237 Labour Not close Yes
## 2238 <NA> <NA> Yes
## 2239 <NA> <NA> Yes
## 2240 UK Independence Party Quite close Yes
## 2241 UK Independence Party Very close Yes
## 2242 <NA> <NA> Yes
## 2243 Liberal Democrat Quite close Yes
## 2244 <NA> <NA> Yes
## 2245 <NA> <NA> No
## 2246 <NA> <NA> Yes
## 2247 Scottish National Party Very close Yes
## 2248 Labour Not close Yes
## 2249 <NA> <NA> Yes
## 2250 Conservative Quite close Yes
## 2251 UK Independence Party Not close Yes
## 2252 <NA> <NA> Yes
## 2253 Scottish National Party Quite close Yes
## 2254 Scottish National Party Very close Yes
## 2255 <NA> <NA> Yes
## 2256 Labour Not close Yes
## 2257 Conservative Quite close Yes
## 2258 Conservative Very close Yes
## 2259 <NA> <NA> Yes
## 2260 Green Party Not close Yes
## 2261 <NA> <NA> Yes
## 2262 <NA> <NA> Yes
## 2263 Conservative Quite close Yes
## 2264 Labour Not close Yes
## 2265 Labour Not close Yes
## 2266 <NA> <NA> <NA>
## 2267 <NA> <NA> <NA>
## 2268 <NA> <NA> <NA>
## 2269 <NA> <NA> <NA>
## 2270 <NA> <NA> <NA>
## 2271 <NA> <NA> <NA>
## 2272 <NA> <NA> <NA>
## 2273 <NA> <NA> <NA>
## 2274 <NA> <NA> <NA>
## 2275 <NA> <NA> <NA>
## 2276 <NA> <NA> <NA>
## 2277 <NA> <NA> <NA>
## 2278 <NA> <NA> <NA>
## 2279 <NA> <NA> <NA>
## 2280 <NA> <NA> <NA>
## 2281 <NA> <NA> <NA>
## 2282 <NA> <NA> <NA>
## 2283 <NA> <NA> <NA>
## 2284 <NA> <NA> <NA>
## 2285 <NA> <NA> <NA>
## 2286 <NA> <NA> <NA>
## 2287 <NA> <NA> <NA>
## 2288 <NA> <NA> <NA>
## 2289 <NA> <NA> <NA>
## 2290 <NA> <NA> <NA>
## 2291 <NA> <NA> <NA>
## 2292 <NA> <NA> <NA>
## 2293 <NA> <NA> <NA>
## 2294 <NA> <NA> <NA>
## 2295 <NA> <NA> <NA>
## 2296 <NA> <NA> <NA>
## 2297 <NA> <NA> <NA>
## 2298 <NA> <NA> <NA>
## 2299 <NA> <NA> <NA>
## 2300 <NA> <NA> <NA>
## 2301 <NA> <NA> <NA>
## 2302 <NA> <NA> <NA>
## 2303 <NA> <NA> <NA>
## 2304 <NA> <NA> <NA>
## 2305 <NA> <NA> <NA>
## 2306 <NA> <NA> <NA>
## 2307 <NA> <NA> <NA>
## 2308 <NA> <NA> <NA>
## 2309 <NA> <NA> <NA>
## 2310 <NA> <NA> <NA>
## 2311 <NA> <NA> <NA>
## 2312 <NA> <NA> <NA>
## 2313 <NA> <NA> <NA>
## 2314 <NA> <NA> <NA>
## 2315 <NA> <NA> <NA>
## 2316 <NA> <NA> <NA>
## 2317 <NA> <NA> <NA>
## 2318 <NA> <NA> <NA>
## 2319 <NA> <NA> <NA>
## 2320 <NA> <NA> <NA>
## 2321 <NA> <NA> <NA>
## 2322 <NA> <NA> <NA>
## 2323 <NA> <NA> <NA>
## 2324 <NA> <NA> <NA>
## 2325 <NA> <NA> <NA>
## 2326 <NA> <NA> <NA>
## 2327 <NA> <NA> <NA>
## 2328 <NA> <NA> <NA>
## 2329 <NA> <NA> <NA>
## 2330 <NA> <NA> <NA>
## 2331 <NA> <NA> <NA>
## 2332 <NA> <NA> <NA>
## 2333 <NA> <NA> <NA>
## 2334 <NA> <NA> <NA>
## 2335 <NA> <NA> <NA>
## 2336 <NA> <NA> <NA>
## 2337 <NA> <NA> <NA>
## 2338 <NA> <NA> <NA>
## 2339 <NA> <NA> <NA>
## 2340 <NA> <NA> <NA>
## 2341 <NA> <NA> <NA>
## 2342 <NA> <NA> <NA>
## 2343 <NA> <NA> <NA>
## 2344 <NA> <NA> <NA>
## 2345 <NA> <NA> <NA>
## 2346 <NA> <NA> <NA>
## 2347 <NA> <NA> <NA>
## 2348 <NA> <NA> <NA>
## 2349 <NA> <NA> <NA>
## 2350 <NA> <NA> <NA>
## 2351 <NA> <NA> <NA>
## 2352 <NA> <NA> <NA>
## 2353 <NA> <NA> <NA>
## 2354 <NA> <NA> <NA>
## 2355 <NA> <NA> <NA>
## 2356 <NA> <NA> <NA>
## 2357 <NA> <NA> <NA>
## 2358 <NA> <NA> <NA>
## 2359 <NA> <NA> <NA>
## 2360 <NA> <NA> <NA>
## 2361 <NA> <NA> <NA>
## 2362 <NA> <NA> <NA>
## 2363 <NA> <NA> <NA>
## 2364 <NA> <NA> <NA>
## 2365 <NA> <NA> <NA>
## 2366 <NA> <NA> <NA>
## 2367 <NA> <NA> <NA>
## 2368 <NA> <NA> <NA>
## 2369 <NA> <NA> <NA>
## 2370 <NA> <NA> <NA>
## 2371 <NA> <NA> <NA>
## 2372 <NA> <NA> <NA>
## 2373 <NA> <NA> <NA>
## 2374 <NA> <NA> <NA>
## 2375 <NA> <NA> <NA>
## 2376 <NA> <NA> <NA>
## 2377 <NA> <NA> <NA>
## 2378 <NA> <NA> <NA>
## 2379 <NA> <NA> <NA>
## 2380 <NA> <NA> <NA>
## 2381 <NA> <NA> <NA>
## 2382 <NA> <NA> <NA>
## 2383 <NA> <NA> <NA>
## 2384 <NA> <NA> <NA>
## 2385 <NA> <NA> <NA>
## 2386 <NA> <NA> <NA>
## 2387 <NA> <NA> <NA>
## 2388 <NA> <NA> <NA>
## 2389 <NA> <NA> <NA>
## 2390 <NA> <NA> <NA>
## 2391 <NA> <NA> <NA>
## 2392 <NA> <NA> <NA>
## 2393 <NA> <NA> <NA>
## 2394 <NA> <NA> <NA>
## 2395 <NA> <NA> <NA>
## 2396 <NA> <NA> <NA>
## 2397 <NA> <NA> <NA>
## 2398 <NA> <NA> <NA>
## 2399 <NA> <NA> <NA>
## 2400 <NA> <NA> <NA>
## 2401 <NA> <NA> <NA>
## 2402 <NA> <NA> <NA>
## 2403 <NA> <NA> <NA>
## 2404 <NA> <NA> <NA>
## 2405 <NA> <NA> <NA>
## 2406 <NA> <NA> <NA>
## 2407 <NA> <NA> <NA>
## 2408 <NA> <NA> <NA>
## 2409 <NA> <NA> <NA>
## 2410 <NA> <NA> <NA>
## 2411 <NA> <NA> <NA>
## 2412 <NA> <NA> <NA>
## 2413 <NA> <NA> <NA>
## 2414 <NA> <NA> <NA>
## 2415 <NA> <NA> <NA>
## 2416 <NA> <NA> <NA>
## 2417 <NA> <NA> <NA>
## 2418 <NA> <NA> <NA>
## 2419 <NA> <NA> <NA>
## 2420 <NA> <NA> <NA>
## 2421 <NA> <NA> <NA>
## 2422 <NA> <NA> <NA>
## 2423 <NA> <NA> <NA>
## 2424 <NA> <NA> <NA>
## 2425 <NA> <NA> <NA>
## 2426 <NA> <NA> <NA>
## 2427 <NA> <NA> <NA>
## 2428 <NA> <NA> <NA>
## 2429 <NA> <NA> <NA>
## 2430 <NA> <NA> <NA>
## 2431 <NA> <NA> <NA>
## 2432 <NA> <NA> <NA>
## 2433 <NA> <NA> <NA>
## 2434 <NA> <NA> <NA>
## 2435 <NA> <NA> <NA>
## 2436 <NA> <NA> <NA>
## 2437 <NA> <NA> <NA>
## 2438 <NA> <NA> <NA>
## 2439 <NA> <NA> <NA>
## 2440 <NA> <NA> <NA>
## 2441 <NA> <NA> <NA>
## 2442 <NA> <NA> <NA>
## 2443 <NA> <NA> <NA>
## 2444 <NA> <NA> <NA>
## 2445 <NA> <NA> <NA>
## 2446 <NA> <NA> <NA>
## 2447 <NA> <NA> <NA>
## 2448 <NA> <NA> <NA>
## 2449 <NA> <NA> <NA>
## 2450 <NA> <NA> <NA>
## 2451 <NA> <NA> <NA>
## 2452 <NA> <NA> <NA>
## 2453 <NA> <NA> <NA>
## 2454 <NA> <NA> <NA>
## 2455 <NA> <NA> <NA>
## 2456 <NA> <NA> <NA>
## 2457 <NA> <NA> <NA>
## 2458 <NA> <NA> <NA>
## 2459 <NA> <NA> <NA>
## 2460 <NA> <NA> <NA>
## 2461 <NA> <NA> <NA>
## 2462 <NA> <NA> <NA>
## 2463 <NA> <NA> <NA>
## 2464 <NA> <NA> <NA>
## 2465 <NA> <NA> <NA>
## 2466 <NA> <NA> <NA>
## 2467 <NA> <NA> <NA>
## 2468 <NA> <NA> <NA>
## 2469 <NA> <NA> <NA>
## 2470 <NA> <NA> <NA>
## 2471 <NA> <NA> <NA>
## 2472 <NA> <NA> <NA>
## 2473 <NA> <NA> <NA>
## 2474 <NA> <NA> <NA>
## 2475 <NA> <NA> <NA>
## 2476 <NA> <NA> <NA>
## 2477 <NA> <NA> <NA>
## 2478 <NA> <NA> <NA>
## 2479 <NA> <NA> <NA>
## 2480 <NA> <NA> <NA>
## 2481 <NA> <NA> <NA>
## 2482 <NA> <NA> <NA>
## 2483 <NA> <NA> <NA>
## 2484 <NA> <NA> <NA>
## 2485 <NA> <NA> <NA>
## 2486 <NA> <NA> <NA>
## 2487 <NA> <NA> <NA>
## 2488 <NA> <NA> <NA>
## 2489 <NA> <NA> <NA>
## 2490 <NA> <NA> <NA>
## 2491 <NA> <NA> <NA>
## 2492 <NA> <NA> <NA>
## 2493 <NA> <NA> <NA>
## 2494 <NA> <NA> <NA>
## 2495 <NA> <NA> <NA>
## 2496 <NA> <NA> <NA>
## 2497 <NA> <NA> <NA>
## 2498 <NA> <NA> <NA>
## 2499 <NA> <NA> <NA>
## 2500 <NA> <NA> <NA>
## 2501 <NA> <NA> <NA>
## 2502 <NA> <NA> <NA>
## 2503 <NA> <NA> <NA>
## 2504 <NA> <NA> <NA>
## 2505 <NA> <NA> <NA>
## 2506 <NA> <NA> <NA>
## 2507 <NA> <NA> <NA>
## 2508 <NA> <NA> <NA>
## 2509 <NA> <NA> <NA>
## 2510 <NA> <NA> <NA>
## 2511 <NA> <NA> <NA>
## 2512 <NA> <NA> <NA>
## 2513 <NA> <NA> <NA>
## 2514 <NA> <NA> <NA>
## 2515 <NA> <NA> <NA>
## 2516 <NA> <NA> <NA>
## 2517 <NA> <NA> <NA>
## 2518 <NA> <NA> <NA>
## 2519 <NA> <NA> <NA>
## 2520 <NA> <NA> <NA>
## 2521 <NA> <NA> <NA>
## 2522 <NA> <NA> <NA>
## 2523 <NA> <NA> <NA>
## 2524 <NA> <NA> <NA>
## 2525 <NA> <NA> <NA>
## 2526 <NA> <NA> <NA>
## 2527 <NA> <NA> <NA>
## 2528 <NA> <NA> <NA>
## 2529 <NA> <NA> <NA>
## 2530 <NA> <NA> <NA>
## 2531 <NA> <NA> <NA>
## 2532 <NA> <NA> <NA>
## 2533 <NA> <NA> <NA>
## 2534 <NA> <NA> <NA>
## 2535 <NA> <NA> <NA>
## 2536 <NA> <NA> <NA>
## 2537 <NA> <NA> <NA>
## 2538 <NA> <NA> <NA>
## 2539 <NA> <NA> <NA>
## 2540 <NA> <NA> <NA>
## 2541 <NA> <NA> <NA>
## 2542 <NA> <NA> <NA>
## 2543 <NA> <NA> <NA>
## 2544 <NA> <NA> <NA>
## 2545 <NA> <NA> <NA>
## 2546 <NA> <NA> <NA>
## 2547 <NA> <NA> <NA>
## 2548 <NA> <NA> <NA>
## 2549 <NA> <NA> <NA>
## 2550 <NA> <NA> <NA>
## 2551 <NA> <NA> <NA>
## 2552 <NA> <NA> <NA>
## 2553 <NA> <NA> <NA>
## 2554 <NA> <NA> <NA>
## 2555 <NA> <NA> <NA>
## 2556 <NA> <NA> <NA>
## 2557 <NA> <NA> <NA>
## 2558 <NA> <NA> <NA>
## 2559 <NA> <NA> <NA>
## 2560 <NA> <NA> <NA>
## 2561 <NA> <NA> <NA>
## 2562 <NA> <NA> <NA>
## 2563 <NA> <NA> <NA>
## 2564 <NA> <NA> <NA>
## 2565 <NA> <NA> <NA>
## 2566 <NA> <NA> <NA>
## 2567 <NA> <NA> <NA>
## 2568 <NA> <NA> <NA>
## 2569 <NA> <NA> <NA>
## 2570 <NA> <NA> <NA>
## 2571 <NA> <NA> <NA>
## 2572 <NA> <NA> <NA>
## 2573 <NA> <NA> <NA>
## 2574 <NA> <NA> <NA>
## 2575 <NA> <NA> <NA>
## 2576 <NA> <NA> <NA>
## 2577 <NA> <NA> <NA>
## 2578 <NA> <NA> <NA>
## 2579 <NA> <NA> <NA>
## 2580 <NA> <NA> <NA>
## 2581 <NA> <NA> <NA>
## 2582 <NA> <NA> <NA>
## 2583 <NA> <NA> <NA>
## 2584 <NA> <NA> <NA>
## 2585 <NA> <NA> <NA>
## 2586 <NA> <NA> <NA>
## 2587 <NA> <NA> <NA>
## 2588 <NA> <NA> <NA>
## 2589 <NA> <NA> <NA>
## 2590 <NA> <NA> <NA>
## 2591 <NA> <NA> <NA>
## 2592 <NA> <NA> <NA>
## 2593 <NA> <NA> <NA>
## 2594 <NA> <NA> <NA>
## 2595 <NA> <NA> <NA>
## 2596 <NA> <NA> <NA>
## 2597 <NA> <NA> <NA>
## 2598 <NA> <NA> <NA>
## 2599 <NA> <NA> <NA>
## 2600 <NA> <NA> <NA>
## 2601 <NA> <NA> <NA>
## 2602 <NA> <NA> <NA>
## 2603 <NA> <NA> <NA>
## 2604 <NA> <NA> <NA>
## 2605 <NA> <NA> <NA>
## 2606 <NA> <NA> <NA>
## 2607 <NA> <NA> <NA>
## 2608 <NA> <NA> <NA>
## 2609 <NA> <NA> <NA>
## 2610 <NA> <NA> <NA>
## 2611 <NA> <NA> <NA>
## 2612 <NA> <NA> <NA>
## 2613 <NA> <NA> <NA>
## 2614 <NA> <NA> <NA>
## 2615 <NA> <NA> <NA>
## 2616 <NA> <NA> <NA>
## 2617 <NA> <NA> <NA>
## 2618 <NA> <NA> <NA>
## 2619 <NA> <NA> <NA>
## 2620 <NA> <NA> <NA>
## 2621 <NA> <NA> <NA>
## 2622 <NA> <NA> <NA>
## 2623 <NA> <NA> <NA>
## 2624 <NA> <NA> <NA>
## 2625 <NA> <NA> <NA>
## 2626 <NA> <NA> <NA>
## 2627 <NA> <NA> <NA>
## 2628 <NA> <NA> <NA>
## 2629 <NA> <NA> <NA>
## 2630 <NA> <NA> <NA>
## 2631 <NA> <NA> <NA>
## 2632 <NA> <NA> <NA>
## 2633 <NA> <NA> <NA>
## 2634 <NA> <NA> <NA>
## 2635 <NA> <NA> <NA>
## 2636 <NA> <NA> <NA>
## 2637 <NA> <NA> <NA>
## 2638 <NA> <NA> <NA>
## 2639 <NA> <NA> <NA>
## 2640 <NA> <NA> <NA>
## 2641 <NA> <NA> <NA>
## 2642 <NA> <NA> <NA>
## 2643 <NA> <NA> <NA>
## 2644 <NA> <NA> <NA>
## 2645 <NA> <NA> <NA>
## 2646 <NA> <NA> <NA>
## 2647 <NA> <NA> <NA>
## 2648 <NA> <NA> <NA>
## 2649 <NA> <NA> <NA>
## 2650 <NA> <NA> <NA>
## 2651 <NA> <NA> <NA>
## 2652 <NA> <NA> <NA>
## 2653 <NA> <NA> <NA>
## 2654 <NA> <NA> <NA>
## 2655 <NA> <NA> <NA>
## 2656 <NA> <NA> <NA>
## 2657 <NA> <NA> <NA>
## 2658 <NA> <NA> <NA>
## 2659 <NA> <NA> <NA>
## 2660 <NA> <NA> <NA>
## 2661 <NA> <NA> <NA>
## 2662 <NA> <NA> <NA>
## 2663 <NA> <NA> <NA>
## 2664 <NA> <NA> <NA>
## 2665 <NA> <NA> <NA>
## 2666 <NA> <NA> <NA>
## 2667 <NA> <NA> <NA>
## 2668 <NA> <NA> <NA>
## 2669 <NA> <NA> <NA>
## 2670 <NA> <NA> <NA>
## 2671 <NA> <NA> <NA>
## 2672 <NA> <NA> <NA>
## 2673 <NA> <NA> <NA>
## 2674 <NA> <NA> <NA>
## 2675 <NA> <NA> <NA>
## 2676 <NA> <NA> <NA>
## 2677 <NA> <NA> <NA>
## 2678 <NA> <NA> <NA>
## 2679 <NA> <NA> <NA>
## 2680 <NA> <NA> <NA>
## 2681 <NA> <NA> <NA>
## 2682 <NA> <NA> <NA>
## 2683 <NA> <NA> <NA>
## 2684 <NA> <NA> <NA>
## 2685 <NA> <NA> <NA>
## 2686 <NA> <NA> <NA>
## 2687 <NA> <NA> <NA>
## 2688 <NA> <NA> <NA>
## 2689 <NA> <NA> <NA>
## 2690 <NA> <NA> <NA>
## 2691 <NA> <NA> <NA>
## 2692 <NA> <NA> <NA>
## 2693 <NA> <NA> <NA>
## 2694 <NA> <NA> <NA>
## 2695 <NA> <NA> <NA>
## 2696 <NA> <NA> <NA>
## 2697 <NA> <NA> <NA>
## 2698 <NA> <NA> <NA>
## 2699 <NA> <NA> <NA>
## 2700 <NA> <NA> <NA>
## 2701 <NA> <NA> <NA>
## 2702 <NA> <NA> <NA>
## 2703 <NA> <NA> <NA>
## 2704 <NA> <NA> <NA>
## 2705 <NA> <NA> <NA>
## 2706 <NA> <NA> <NA>
## 2707 <NA> <NA> <NA>
## 2708 <NA> <NA> <NA>
## 2709 <NA> <NA> <NA>
## 2710 <NA> <NA> <NA>
## 2711 <NA> <NA> <NA>
## 2712 <NA> <NA> <NA>
## 2713 <NA> <NA> <NA>
## 2714 <NA> <NA> <NA>
## 2715 <NA> <NA> <NA>
## 2716 <NA> <NA> <NA>
## 2717 <NA> <NA> <NA>
## 2718 <NA> <NA> <NA>
## 2719 <NA> <NA> <NA>
## 2720 <NA> <NA> <NA>
## 2721 <NA> <NA> <NA>
## 2722 <NA> <NA> <NA>
## 2723 <NA> <NA> <NA>
## 2724 <NA> <NA> <NA>
## 2725 <NA> <NA> <NA>
## 2726 <NA> <NA> <NA>
## 2727 <NA> <NA> <NA>
## 2728 <NA> <NA> <NA>
## 2729 <NA> <NA> <NA>
## 2730 <NA> <NA> <NA>
## 2731 <NA> <NA> <NA>
## 2732 <NA> <NA> <NA>
## 2733 <NA> <NA> <NA>
## 2734 <NA> <NA> <NA>
## 2735 <NA> <NA> <NA>
## 2736 <NA> <NA> <NA>
## 2737 <NA> <NA> <NA>
## 2738 <NA> <NA> <NA>
## 2739 <NA> <NA> <NA>
## 2740 <NA> <NA> <NA>
## 2741 <NA> <NA> <NA>
## 2742 <NA> <NA> <NA>
## 2743 <NA> <NA> <NA>
## 2744 <NA> <NA> <NA>
## 2745 <NA> <NA> <NA>
## 2746 <NA> <NA> <NA>
## 2747 <NA> <NA> <NA>
## 2748 <NA> <NA> <NA>
## 2749 <NA> <NA> <NA>
## 2750 <NA> <NA> <NA>
## 2751 <NA> <NA> <NA>
## 2752 <NA> <NA> <NA>
## 2753 <NA> <NA> <NA>
## 2754 <NA> <NA> <NA>
## 2755 <NA> <NA> <NA>
## 2756 <NA> <NA> <NA>
## 2757 <NA> <NA> <NA>
## 2758 <NA> <NA> <NA>
## 2759 <NA> <NA> <NA>
## 2760 <NA> <NA> <NA>
## 2761 <NA> <NA> <NA>
## 2762 <NA> <NA> <NA>
## 2763 <NA> <NA> <NA>
## 2764 <NA> <NA> <NA>
## 2765 <NA> <NA> <NA>
## 2766 <NA> <NA> <NA>
## 2767 <NA> <NA> <NA>
## 2768 <NA> <NA> <NA>
## 2769 <NA> <NA> <NA>
## 2770 <NA> <NA> <NA>
## 2771 <NA> <NA> <NA>
## 2772 <NA> <NA> <NA>
## 2773 <NA> <NA> <NA>
## 2774 <NA> <NA> <NA>
## 2775 <NA> <NA> <NA>
## 2776 <NA> <NA> <NA>
## 2777 <NA> <NA> <NA>
## 2778 <NA> <NA> <NA>
## 2779 <NA> <NA> <NA>
## 2780 <NA> <NA> <NA>
## 2781 <NA> <NA> <NA>
## 2782 <NA> <NA> <NA>
## 2783 <NA> <NA> <NA>
## 2784 <NA> <NA> <NA>
## 2785 <NA> <NA> <NA>
## 2786 <NA> <NA> <NA>
## 2787 <NA> <NA> <NA>
## 2788 <NA> <NA> <NA>
## 2789 <NA> <NA> <NA>
## 2790 <NA> <NA> <NA>
## 2791 <NA> <NA> <NA>
## 2792 <NA> <NA> <NA>
## 2793 <NA> <NA> <NA>
## 2794 <NA> <NA> <NA>
## 2795 <NA> <NA> <NA>
## 2796 <NA> <NA> <NA>
## 2797 <NA> <NA> <NA>
## 2798 <NA> <NA> <NA>
## 2799 <NA> <NA> <NA>
## 2800 <NA> <NA> <NA>
## 2801 <NA> <NA> <NA>
## 2802 <NA> <NA> <NA>
## 2803 <NA> <NA> <NA>
## 2804 <NA> <NA> <NA>
## 2805 <NA> <NA> <NA>
## 2806 <NA> <NA> <NA>
## 2807 <NA> <NA> <NA>
## 2808 <NA> <NA> <NA>
## 2809 <NA> <NA> <NA>
## 2810 <NA> <NA> <NA>
## 2811 <NA> <NA> <NA>
## 2812 <NA> <NA> <NA>
## 2813 <NA> <NA> <NA>
## 2814 <NA> <NA> <NA>
## 2815 <NA> <NA> <NA>
## 2816 <NA> <NA> <NA>
## 2817 <NA> <NA> <NA>
## 2818 <NA> <NA> <NA>
## 2819 <NA> <NA> <NA>
## 2820 <NA> <NA> <NA>
## 2821 <NA> <NA> <NA>
## 2822 <NA> <NA> <NA>
## 2823 <NA> <NA> <NA>
## 2824 <NA> <NA> <NA>
## 2825 <NA> <NA> <NA>
## 2826 <NA> <NA> <NA>
## 2827 <NA> <NA> <NA>
## 2828 <NA> <NA> <NA>
## 2829 <NA> <NA> <NA>
## 2830 <NA> <NA> <NA>
## 2831 <NA> <NA> <NA>
## 2832 <NA> <NA> <NA>
## 2833 <NA> <NA> <NA>
## 2834 <NA> <NA> <NA>
## 2835 <NA> <NA> <NA>
## 2836 <NA> <NA> <NA>
## 2837 <NA> <NA> <NA>
## 2838 <NA> <NA> <NA>
## 2839 <NA> <NA> <NA>
## 2840 <NA> <NA> <NA>
## 2841 <NA> <NA> <NA>
## 2842 <NA> <NA> <NA>
## 2843 <NA> <NA> <NA>
## 2844 <NA> <NA> <NA>
## 2845 <NA> <NA> <NA>
## 2846 <NA> <NA> <NA>
## 2847 <NA> <NA> <NA>
## 2848 <NA> <NA> <NA>
## 2849 <NA> <NA> <NA>
## 2850 <NA> <NA> <NA>
## 2851 <NA> <NA> <NA>
## 2852 <NA> <NA> <NA>
## 2853 <NA> <NA> <NA>
## 2854 <NA> <NA> <NA>
## 2855 <NA> <NA> <NA>
## 2856 <NA> <NA> <NA>
## 2857 <NA> <NA> <NA>
## 2858 <NA> <NA> <NA>
## 2859 <NA> <NA> <NA>
## 2860 <NA> <NA> <NA>
## 2861 <NA> <NA> <NA>
## 2862 <NA> <NA> <NA>
## 2863 <NA> <NA> <NA>
## 2864 <NA> <NA> <NA>
## 2865 <NA> <NA> <NA>
## 2866 <NA> <NA> <NA>
## 2867 <NA> <NA> <NA>
## 2868 <NA> <NA> <NA>
## 2869 <NA> <NA> <NA>
## 2870 <NA> <NA> <NA>
## 2871 <NA> <NA> <NA>
## 2872 <NA> <NA> <NA>
## 2873 <NA> <NA> <NA>
## 2874 <NA> <NA> <NA>
## 2875 <NA> <NA> <NA>
## 2876 <NA> <NA> <NA>
## 2877 <NA> <NA> <NA>
## 2878 <NA> <NA> <NA>
## 2879 <NA> <NA> <NA>
## 2880 <NA> <NA> <NA>
## 2881 <NA> <NA> <NA>
## 2882 <NA> <NA> <NA>
## 2883 <NA> <NA> <NA>
## 2884 <NA> <NA> <NA>
## 2885 <NA> <NA> <NA>
## 2886 <NA> <NA> <NA>
## 2887 <NA> <NA> <NA>
## 2888 <NA> <NA> <NA>
## 2889 <NA> <NA> <NA>
## 2890 <NA> <NA> <NA>
## 2891 <NA> <NA> <NA>
## 2892 <NA> <NA> <NA>
## 2893 <NA> <NA> <NA>
## 2894 <NA> <NA> <NA>
## 2895 <NA> <NA> <NA>
## 2896 <NA> <NA> <NA>
## 2897 <NA> <NA> <NA>
## 2898 <NA> <NA> <NA>
## 2899 <NA> <NA> <NA>
## 2900 <NA> <NA> <NA>
## 2901 <NA> <NA> <NA>
## 2902 <NA> <NA> <NA>
## 2903 <NA> <NA> <NA>
## 2904 <NA> <NA> <NA>
## 2905 <NA> <NA> <NA>
## 2906 <NA> <NA> <NA>
## 2907 <NA> <NA> <NA>
## 2908 <NA> <NA> <NA>
## 2909 <NA> <NA> <NA>
## 2910 <NA> <NA> <NA>
## 2911 <NA> <NA> <NA>
## 2912 <NA> <NA> <NA>
## 2913 <NA> <NA> <NA>
## 2914 <NA> <NA> <NA>
## 2915 <NA> <NA> <NA>
## 2916 <NA> <NA> <NA>
## 2917 <NA> <NA> <NA>
## 2918 <NA> <NA> <NA>
## 2919 <NA> <NA> <NA>
## 2920 <NA> <NA> <NA>
## 2921 <NA> <NA> <NA>
## 2922 <NA> <NA> <NA>
## 2923 <NA> <NA> <NA>
## 2924 <NA> <NA> <NA>
## 2925 <NA> <NA> <NA>
## 2926 <NA> <NA> <NA>
## 2927 <NA> <NA> <NA>
## 2928 <NA> <NA> <NA>
## 2929 <NA> <NA> <NA>
## 2930 <NA> <NA> <NA>
## 2931 <NA> <NA> <NA>
## 2932 <NA> <NA> <NA>
## 2933 <NA> <NA> <NA>
## 2934 <NA> <NA> <NA>
## 2935 <NA> <NA> <NA>
## 2936 <NA> <NA> <NA>
## 2937 <NA> <NA> <NA>
## 2938 <NA> <NA> <NA>
## 2939 <NA> <NA> <NA>
## 2940 <NA> <NA> <NA>
## 2941 <NA> <NA> <NA>
## 2942 <NA> <NA> <NA>
## 2943 <NA> <NA> <NA>
## 2944 <NA> <NA> <NA>
## 2945 <NA> <NA> <NA>
## 2946 <NA> <NA> <NA>
## 2947 <NA> <NA> <NA>
## 2948 <NA> <NA> <NA>
## 2949 <NA> <NA> <NA>
## 2950 <NA> <NA> <NA>
## 2951 <NA> <NA> <NA>
## 2952 <NA> <NA> <NA>
## 2953 <NA> <NA> <NA>
## 2954 <NA> <NA> <NA>
## 2955 <NA> <NA> <NA>
## 2956 <NA> <NA> <NA>
## 2957 <NA> <NA> <NA>
## 2958 <NA> <NA> <NA>
## 2959 <NA> <NA> <NA>
## 2960 <NA> <NA> <NA>
## 2961 <NA> <NA> <NA>
## 2962 <NA> <NA> <NA>
## 2963 <NA> <NA> <NA>
## 2964 <NA> <NA> <NA>
## 2965 <NA> <NA> <NA>
## 2966 <NA> <NA> <NA>
## 2967 <NA> <NA> <NA>
## 2968 <NA> <NA> <NA>
## 2969 <NA> <NA> <NA>
## 2970 <NA> <NA> <NA>
## 2971 <NA> <NA> <NA>
## 2972 <NA> <NA> <NA>
## 2973 <NA> <NA> <NA>
## 2974 <NA> <NA> <NA>
## 2975 <NA> <NA> <NA>
## 2976 <NA> <NA> <NA>
## 2977 <NA> <NA> <NA>
## 2978 <NA> <NA> <NA>
## 2979 <NA> <NA> <NA>
## 2980 <NA> <NA> <NA>
## 2981 <NA> <NA> <NA>
## 2982 <NA> <NA> <NA>
## 2983 <NA> <NA> <NA>
## 2984 <NA> <NA> <NA>
## 2985 <NA> <NA> <NA>
## 2986 <NA> <NA> <NA>
## 2987 <NA> <NA> <NA>
## 2988 <NA> <NA> <NA>
## 2989 <NA> <NA> <NA>
## 2990 <NA> <NA> <NA>
## 2991 <NA> <NA> <NA>
## 2992 <NA> <NA> <NA>
## 2993 <NA> <NA> <NA>
## 2994 <NA> <NA> <NA>
## 2995 <NA> <NA> <NA>
## 2996 <NA> <NA> <NA>
## 2997 <NA> <NA> <NA>
## 2998 <NA> <NA> <NA>
## 2999 <NA> <NA> <NA>
## 3000 <NA> <NA> <NA>
## 3001 <NA> <NA> <NA>
## 3002 <NA> <NA> <NA>
## 3003 <NA> <NA> <NA>
## 3004 <NA> <NA> <NA>
## 3005 <NA> <NA> <NA>
## 3006 <NA> <NA> <NA>
## 3007 <NA> <NA> <NA>
## 3008 <NA> <NA> <NA>
## 3009 <NA> <NA> <NA>
## 3010 <NA> <NA> <NA>
## 3011 <NA> <NA> <NA>
## 3012 <NA> <NA> <NA>
## 3013 <NA> <NA> <NA>
## 3014 <NA> <NA> <NA>
## 3015 <NA> <NA> <NA>
## 3016 <NA> <NA> <NA>
## 3017 <NA> <NA> <NA>
## 3018 <NA> <NA> <NA>
## 3019 <NA> <NA> <NA>
## 3020 <NA> <NA> <NA>
## 3021 <NA> <NA> <NA>
## 3022 <NA> <NA> <NA>
## 3023 <NA> <NA> <NA>
## 3024 <NA> <NA> <NA>
## 3025 <NA> <NA> <NA>
## 3026 <NA> <NA> <NA>
## 3027 <NA> <NA> <NA>
## 3028 <NA> <NA> <NA>
## 3029 <NA> <NA> <NA>
## 3030 <NA> <NA> <NA>
## 3031 <NA> <NA> <NA>
## 3032 <NA> <NA> <NA>
## 3033 <NA> <NA> <NA>
## 3034 <NA> <NA> <NA>
## 3035 <NA> <NA> <NA>
## 3036 <NA> <NA> <NA>
## 3037 <NA> <NA> <NA>
## 3038 <NA> <NA> <NA>
## 3039 <NA> <NA> <NA>
## 3040 <NA> <NA> <NA>
## 3041 <NA> <NA> <NA>
## 3042 <NA> <NA> <NA>
## 3043 <NA> <NA> <NA>
## 3044 <NA> <NA> <NA>
## 3045 <NA> <NA> <NA>
## 3046 <NA> <NA> <NA>
## 3047 <NA> <NA> <NA>
## 3048 <NA> <NA> <NA>
## 3049 <NA> <NA> <NA>
## 3050 <NA> <NA> <NA>
## 3051 <NA> <NA> <NA>
## 3052 <NA> <NA> <NA>
## 3053 <NA> <NA> <NA>
## 3054 <NA> <NA> <NA>
## 3055 <NA> <NA> <NA>
## 3056 <NA> <NA> <NA>
## 3057 <NA> <NA> <NA>
## 3058 <NA> <NA> <NA>
## 3059 <NA> <NA> <NA>
## 3060 <NA> <NA> <NA>
## 3061 <NA> <NA> <NA>
## 3062 <NA> <NA> <NA>
## 3063 <NA> <NA> <NA>
## 3064 <NA> <NA> <NA>
## 3065 <NA> <NA> <NA>
## 3066 <NA> <NA> <NA>
## 3067 <NA> <NA> <NA>
## 3068 <NA> <NA> <NA>
## 3069 <NA> <NA> <NA>
## 3070 <NA> <NA> <NA>
## 3071 <NA> <NA> <NA>
## 3072 <NA> <NA> <NA>
## 3073 <NA> <NA> <NA>
## 3074 <NA> <NA> <NA>
## 3075 <NA> <NA> <NA>
## 3076 <NA> <NA> <NA>
## 3077 <NA> <NA> <NA>
## 3078 <NA> <NA> <NA>
## 3079 <NA> <NA> <NA>
## 3080 <NA> <NA> <NA>
## 3081 <NA> <NA> <NA>
## 3082 <NA> <NA> <NA>
## 3083 <NA> <NA> <NA>
## 3084 <NA> <NA> <NA>
## 3085 <NA> <NA> <NA>
## 3086 <NA> <NA> <NA>
## 3087 <NA> <NA> <NA>
## 3088 <NA> <NA> <NA>
## 3089 <NA> <NA> <NA>
## 3090 <NA> <NA> <NA>
## 3091 <NA> <NA> <NA>
## 3092 <NA> <NA> <NA>
## 3093 <NA> <NA> <NA>
## 3094 <NA> <NA> <NA>
## 3095 <NA> <NA> <NA>
## 3096 <NA> <NA> <NA>
## 3097 <NA> <NA> <NA>
## 3098 <NA> <NA> <NA>
## 3099 <NA> <NA> <NA>
## 3100 <NA> <NA> <NA>
## 3101 <NA> <NA> <NA>
## 3102 <NA> <NA> <NA>
## 3103 <NA> <NA> <NA>
## 3104 <NA> <NA> <NA>
## 3105 <NA> <NA> <NA>
## 3106 <NA> <NA> <NA>
## 3107 <NA> <NA> <NA>
## 3108 <NA> <NA> <NA>
## 3109 <NA> <NA> <NA>
## 3110 <NA> <NA> <NA>
## 3111 <NA> <NA> <NA>
## 3112 <NA> <NA> <NA>
## 3113 <NA> <NA> <NA>
## 3114 <NA> <NA> <NA>
## 3115 <NA> <NA> <NA>
## 3116 <NA> <NA> <NA>
## 3117 <NA> <NA> <NA>
## 3118 <NA> <NA> <NA>
## 3119 <NA> <NA> <NA>
## 3120 <NA> <NA> <NA>
## 3121 <NA> <NA> <NA>
## 3122 <NA> <NA> <NA>
## 3123 <NA> <NA> <NA>
## 3124 <NA> <NA> <NA>
## 3125 <NA> <NA> <NA>
## 3126 <NA> <NA> <NA>
## 3127 <NA> <NA> <NA>
## 3128 <NA> <NA> <NA>
## 3129 <NA> <NA> <NA>
## 3130 <NA> <NA> <NA>
## 3131 <NA> <NA> <NA>
## 3132 <NA> <NA> <NA>
## 3133 <NA> <NA> <NA>
## 3134 <NA> <NA> <NA>
## 3135 <NA> <NA> <NA>
## 3136 <NA> <NA> <NA>
## 3137 <NA> <NA> <NA>
## 3138 <NA> <NA> <NA>
## 3139 <NA> <NA> <NA>
## 3140 <NA> <NA> <NA>
## 3141 <NA> <NA> <NA>
## 3142 <NA> <NA> <NA>
## 3143 <NA> <NA> <NA>
## 3144 <NA> <NA> <NA>
## 3145 <NA> <NA> <NA>
## 3146 <NA> <NA> <NA>
## 3147 <NA> <NA> <NA>
## 3148 <NA> <NA> <NA>
## 3149 <NA> <NA> <NA>
## 3150 <NA> <NA> <NA>
## 3151 <NA> <NA> <NA>
## 3152 <NA> <NA> <NA>
## 3153 <NA> <NA> <NA>
## 3154 <NA> <NA> <NA>
## 3155 <NA> <NA> <NA>
## 3156 <NA> <NA> <NA>
## 3157 <NA> <NA> <NA>
## 3158 <NA> <NA> <NA>
## 3159 <NA> <NA> <NA>
## 3160 <NA> <NA> <NA>
## 3161 <NA> <NA> <NA>
## 3162 <NA> <NA> <NA>
## 3163 <NA> <NA> <NA>
## 3164 <NA> <NA> <NA>
## 3165 <NA> <NA> <NA>
## 3166 <NA> <NA> <NA>
## 3167 <NA> <NA> <NA>
## 3168 <NA> <NA> <NA>
## 3169 <NA> <NA> <NA>
## 3170 <NA> <NA> <NA>
## 3171 <NA> <NA> <NA>
## 3172 <NA> <NA> <NA>
## 3173 <NA> <NA> <NA>
## 3174 <NA> <NA> <NA>
## 3175 <NA> <NA> <NA>
## 3176 <NA> <NA> <NA>
## 3177 <NA> <NA> <NA>
## 3178 <NA> <NA> <NA>
## 3179 <NA> <NA> <NA>
## 3180 <NA> <NA> <NA>
## 3181 <NA> <NA> <NA>
## 3182 <NA> <NA> <NA>
## 3183 <NA> <NA> <NA>
## 3184 <NA> <NA> <NA>
## 3185 <NA> <NA> <NA>
## 3186 <NA> <NA> <NA>
## 3187 <NA> <NA> <NA>
## 3188 <NA> <NA> <NA>
## 3189 <NA> <NA> <NA>
## 3190 <NA> <NA> <NA>
## 3191 <NA> <NA> <NA>
## 3192 <NA> <NA> <NA>
## 3193 <NA> <NA> <NA>
## 3194 <NA> <NA> <NA>
## 3195 <NA> <NA> <NA>
## 3196 <NA> <NA> <NA>
## 3197 <NA> <NA> <NA>
## 3198 <NA> <NA> <NA>
## 3199 <NA> <NA> <NA>
## 3200 <NA> <NA> <NA>
## 3201 <NA> <NA> <NA>
## 3202 <NA> <NA> <NA>
## 3203 <NA> <NA> <NA>
## 3204 <NA> <NA> <NA>
## 3205 <NA> <NA> <NA>
## 3206 <NA> <NA> <NA>
## 3207 <NA> <NA> <NA>
## 3208 <NA> <NA> <NA>
## 3209 <NA> <NA> <NA>
## 3210 <NA> <NA> <NA>
## 3211 <NA> <NA> <NA>
## 3212 <NA> <NA> <NA>
## 3213 <NA> <NA> <NA>
## 3214 <NA> <NA> <NA>
## 3215 <NA> <NA> <NA>
## 3216 <NA> <NA> <NA>
## 3217 <NA> <NA> <NA>
## 3218 <NA> <NA> <NA>
## 3219 <NA> <NA> <NA>
## 3220 <NA> <NA> <NA>
## 3221 <NA> <NA> <NA>
## 3222 <NA> <NA> <NA>
## 3223 <NA> <NA> <NA>
## 3224 <NA> <NA> <NA>
## 3225 <NA> <NA> <NA>
## 3226 <NA> <NA> <NA>
## 3227 <NA> <NA> <NA>
## 3228 <NA> <NA> <NA>
## 3229 <NA> <NA> <NA>
## 3230 <NA> <NA> <NA>
## 3231 <NA> <NA> <NA>
## 3232 <NA> <NA> <NA>
## 3233 <NA> <NA> <NA>
## 3234 <NA> <NA> <NA>
## 3235 <NA> <NA> <NA>
## 3236 <NA> <NA> <NA>
## 3237 <NA> <NA> <NA>
## 3238 <NA> <NA> <NA>
## 3239 <NA> <NA> <NA>
## 3240 <NA> <NA> <NA>
## 3241 <NA> <NA> <NA>
## 3242 <NA> <NA> <NA>
## 3243 <NA> <NA> <NA>
## 3244 <NA> <NA> <NA>
## 3245 <NA> <NA> <NA>
## 3246 <NA> <NA> <NA>
## 3247 <NA> <NA> <NA>
## 3248 <NA> <NA> <NA>
## 3249 <NA> <NA> <NA>
## 3250 <NA> <NA> <NA>
## 3251 <NA> <NA> <NA>
## 3252 <NA> <NA> <NA>
## 3253 <NA> <NA> <NA>
## 3254 <NA> <NA> <NA>
## 3255 <NA> <NA> <NA>
## 3256 <NA> <NA> <NA>
## 3257 <NA> <NA> <NA>
## 3258 <NA> <NA> <NA>
## 3259 <NA> <NA> <NA>
## 3260 <NA> <NA> <NA>
## 3261 <NA> <NA> <NA>
## 3262 <NA> <NA> <NA>
## 3263 <NA> <NA> <NA>
## 3264 <NA> <NA> <NA>
## 3265 <NA> <NA> <NA>
## 3266 <NA> <NA> <NA>
## 3267 <NA> <NA> <NA>
## 3268 <NA> <NA> <NA>
## 3269 <NA> <NA> <NA>
## 3270 <NA> <NA> <NA>
## 3271 <NA> <NA> <NA>
## 3272 <NA> <NA> <NA>
## 3273 <NA> <NA> <NA>
## 3274 <NA> <NA> <NA>
## 3275 <NA> <NA> <NA>
## 3276 <NA> <NA> <NA>
## 3277 <NA> <NA> <NA>
## 3278 <NA> <NA> <NA>
## 3279 <NA> <NA> <NA>
## 3280 <NA> <NA> <NA>
## 3281 <NA> <NA> <NA>
## 3282 <NA> <NA> <NA>
## 3283 <NA> <NA> <NA>
## 3284 <NA> <NA> <NA>
## 3285 <NA> <NA> <NA>
## 3286 <NA> <NA> <NA>
## 3287 <NA> <NA> <NA>
## 3288 <NA> <NA> <NA>
## 3289 <NA> <NA> <NA>
## 3290 <NA> <NA> <NA>
## 3291 <NA> <NA> <NA>
## 3292 <NA> <NA> <NA>
## 3293 <NA> <NA> <NA>
## 3294 <NA> <NA> <NA>
## 3295 <NA> <NA> <NA>
## 3296 <NA> <NA> <NA>
## 3297 <NA> <NA> <NA>
## 3298 <NA> <NA> <NA>
## 3299 <NA> <NA> <NA>
## 3300 <NA> <NA> <NA>
## 3301 <NA> <NA> <NA>
## 3302 <NA> <NA> <NA>
## 3303 <NA> <NA> <NA>
## 3304 <NA> <NA> <NA>
## 3305 <NA> <NA> <NA>
## 3306 <NA> <NA> <NA>
## 3307 <NA> <NA> <NA>
## 3308 <NA> <NA> <NA>
## 3309 <NA> <NA> <NA>
## 3310 <NA> <NA> <NA>
## 3311 <NA> <NA> <NA>
## 3312 <NA> <NA> <NA>
## 3313 <NA> <NA> <NA>
## 3314 <NA> <NA> <NA>
## 3315 <NA> <NA> <NA>
## 3316 <NA> <NA> <NA>
## 3317 <NA> <NA> <NA>
## 3318 <NA> <NA> <NA>
## 3319 <NA> <NA> <NA>
## 3320 <NA> <NA> <NA>
## 3321 <NA> <NA> <NA>
## 3322 <NA> <NA> <NA>
## 3323 <NA> <NA> <NA>
## 3324 <NA> <NA> <NA>
## 3325 <NA> <NA> <NA>
## 3326 <NA> <NA> <NA>
## 3327 <NA> <NA> <NA>
## 3328 <NA> <NA> <NA>
## 3329 <NA> <NA> <NA>
## 3330 <NA> <NA> <NA>
## 3331 <NA> <NA> <NA>
## 3332 <NA> <NA> <NA>
## 3333 <NA> <NA> <NA>
## 3334 <NA> <NA> <NA>
## 3335 <NA> <NA> <NA>
## 3336 <NA> <NA> <NA>
## 3337 <NA> <NA> <NA>
## 3338 <NA> <NA> <NA>
## 3339 <NA> <NA> <NA>
## 3340 <NA> <NA> <NA>
## 3341 <NA> <NA> <NA>
## 3342 <NA> <NA> <NA>
## 3343 <NA> <NA> <NA>
## 3344 <NA> <NA> <NA>
## 3345 <NA> <NA> <NA>
## 3346 <NA> <NA> <NA>
## 3347 <NA> <NA> <NA>
## 3348 <NA> <NA> <NA>
## 3349 <NA> <NA> <NA>
## 3350 <NA> <NA> <NA>
## 3351 <NA> <NA> <NA>
## 3352 <NA> <NA> <NA>
## 3353 <NA> <NA> <NA>
## 3354 <NA> <NA> <NA>
## 3355 <NA> <NA> <NA>
## 3356 <NA> <NA> <NA>
## 3357 <NA> <NA> <NA>
## 3358 <NA> <NA> <NA>
## 3359 <NA> <NA> <NA>
## 3360 <NA> <NA> <NA>
## 3361 <NA> <NA> <NA>
## 3362 <NA> <NA> <NA>
## 3363 <NA> <NA> <NA>
## 3364 <NA> <NA> <NA>
## 3365 <NA> <NA> <NA>
## 3366 <NA> <NA> <NA>
## 3367 <NA> <NA> <NA>
## 3368 <NA> <NA> <NA>
## 3369 <NA> <NA> <NA>
## 3370 <NA> <NA> <NA>
## 3371 <NA> <NA> <NA>
## 3372 <NA> <NA> <NA>
## 3373 <NA> <NA> <NA>
## 3374 <NA> <NA> <NA>
## 3375 <NA> <NA> <NA>
## 3376 <NA> <NA> <NA>
## 3377 <NA> <NA> <NA>
## 3378 <NA> <NA> <NA>
## 3379 <NA> <NA> <NA>
## 3380 <NA> <NA> <NA>
## 3381 <NA> <NA> <NA>
## 3382 <NA> <NA> <NA>
## 3383 <NA> <NA> <NA>
## 3384 <NA> <NA> <NA>
## 3385 <NA> <NA> <NA>
## 3386 <NA> <NA> <NA>
## 3387 <NA> <NA> <NA>
## 3388 <NA> <NA> <NA>
## 3389 <NA> <NA> <NA>
## 3390 <NA> <NA> <NA>
## 3391 <NA> <NA> <NA>
## 3392 <NA> <NA> <NA>
## 3393 <NA> <NA> <NA>
## 3394 <NA> <NA> <NA>
## 3395 <NA> <NA> <NA>
## 3396 <NA> <NA> <NA>
## 3397 <NA> <NA> <NA>
## 3398 <NA> <NA> <NA>
## 3399 <NA> <NA> <NA>
## 3400 <NA> <NA> <NA>
## 3401 <NA> <NA> <NA>
## 3402 <NA> <NA> <NA>
## 3403 <NA> <NA> <NA>
## 3404 <NA> <NA> <NA>
## 3405 <NA> <NA> <NA>
## 3406 <NA> <NA> <NA>
## 3407 <NA> <NA> <NA>
## 3408 <NA> <NA> <NA>
## 3409 <NA> <NA> <NA>
## 3410 <NA> <NA> <NA>
## 3411 <NA> <NA> <NA>
## 3412 <NA> <NA> <NA>
## 3413 <NA> <NA> <NA>
## 3414 <NA> <NA> <NA>
## 3415 <NA> <NA> <NA>
## 3416 <NA> <NA> <NA>
## 3417 <NA> <NA> <NA>
## 3418 <NA> <NA> <NA>
## 3419 <NA> <NA> <NA>
## 3420 <NA> <NA> <NA>
## 3421 <NA> <NA> <NA>
## 3422 <NA> <NA> <NA>
## 3423 <NA> <NA> <NA>
## 3424 <NA> <NA> <NA>
## 3425 <NA> <NA> <NA>
## 3426 <NA> <NA> <NA>
## 3427 <NA> <NA> <NA>
## 3428 <NA> <NA> <NA>
## 3429 <NA> <NA> <NA>
## 3430 <NA> <NA> <NA>
## 3431 <NA> <NA> <NA>
## 3432 <NA> <NA> <NA>
## 3433 <NA> <NA> <NA>
## 3434 <NA> <NA> <NA>
## 3435 <NA> <NA> <NA>
## 3436 <NA> <NA> <NA>
## 3437 <NA> <NA> <NA>
## 3438 <NA> <NA> <NA>
## 3439 <NA> <NA> <NA>
## 3440 <NA> <NA> <NA>
## 3441 <NA> <NA> <NA>
## 3442 <NA> <NA> <NA>
## 3443 <NA> <NA> <NA>
## 3444 <NA> <NA> <NA>
## 3445 <NA> <NA> <NA>
## 3446 <NA> <NA> <NA>
## 3447 <NA> <NA> <NA>
## 3448 <NA> <NA> <NA>
## 3449 <NA> <NA> <NA>
## 3450 <NA> <NA> <NA>
## 3451 <NA> <NA> <NA>
## 3452 <NA> <NA> <NA>
## 3453 <NA> <NA> <NA>
## 3454 <NA> <NA> <NA>
## 3455 <NA> <NA> <NA>
## 3456 <NA> <NA> <NA>
## 3457 <NA> <NA> <NA>
## 3458 <NA> <NA> <NA>
## 3459 <NA> <NA> <NA>
## 3460 <NA> <NA> <NA>
## 3461 <NA> <NA> <NA>
## 3462 <NA> <NA> <NA>
## 3463 <NA> <NA> <NA>
## 3464 <NA> <NA> <NA>
## 3465 <NA> <NA> <NA>
## 3466 <NA> <NA> <NA>
## 3467 <NA> <NA> <NA>
## 3468 <NA> <NA> <NA>
## 3469 <NA> <NA> <NA>
## 3470 <NA> <NA> <NA>
## 3471 <NA> <NA> <NA>
## 3472 <NA> <NA> <NA>
## 3473 <NA> <NA> <NA>
## 3474 <NA> <NA> <NA>
## 3475 <NA> <NA> <NA>
## 3476 <NA> <NA> <NA>
## 3477 <NA> <NA> <NA>
## 3478 <NA> <NA> <NA>
## 3479 <NA> <NA> <NA>
## 3480 <NA> <NA> <NA>
## 3481 <NA> <NA> <NA>
## 3482 <NA> <NA> <NA>
## 3483 <NA> <NA> <NA>
## 3484 <NA> <NA> <NA>
## 3485 <NA> <NA> <NA>
## 3486 <NA> <NA> <NA>
## 3487 <NA> <NA> <NA>
## 3488 <NA> <NA> <NA>
## 3489 <NA> <NA> <NA>
## 3490 <NA> <NA> <NA>
## 3491 <NA> <NA> <NA>
## 3492 <NA> <NA> <NA>
## 3493 <NA> <NA> <NA>
## 3494 <NA> <NA> <NA>
## 3495 <NA> <NA> <NA>
## 3496 <NA> <NA> <NA>
## 3497 <NA> <NA> <NA>
## 3498 <NA> <NA> <NA>
## 3499 <NA> <NA> <NA>
## 3500 <NA> <NA> <NA>
## 3501 <NA> <NA> <NA>
## 3502 <NA> <NA> <NA>
## 3503 <NA> <NA> <NA>
## 3504 <NA> <NA> <NA>
## 3505 <NA> <NA> <NA>
## 3506 <NA> <NA> <NA>
## 3507 <NA> <NA> <NA>
## 3508 <NA> <NA> <NA>
## 3509 <NA> <NA> <NA>
## 3510 <NA> <NA> <NA>
## 3511 <NA> <NA> <NA>
## 3512 <NA> <NA> <NA>
## 3513 <NA> <NA> <NA>
## 3514 <NA> <NA> <NA>
## 3515 <NA> <NA> <NA>
## 3516 <NA> <NA> <NA>
## 3517 <NA> <NA> <NA>
## 3518 <NA> <NA> <NA>
## 3519 <NA> <NA> <NA>
## 3520 <NA> <NA> <NA>
## 3521 <NA> <NA> <NA>
## 3522 <NA> <NA> <NA>
## 3523 <NA> <NA> <NA>
## 3524 <NA> <NA> <NA>
## 3525 <NA> <NA> <NA>
## 3526 <NA> <NA> <NA>
## 3527 <NA> <NA> <NA>
## 3528 <NA> <NA> <NA>
## 3529 <NA> <NA> <NA>
## 3530 <NA> <NA> <NA>
## 3531 <NA> <NA> <NA>
## 3532 <NA> <NA> <NA>
## 3533 <NA> <NA> <NA>
## 3534 <NA> <NA> <NA>
## 3535 <NA> <NA> <NA>
## 3536 <NA> <NA> <NA>
## 3537 <NA> <NA> <NA>
## 3538 <NA> <NA> <NA>
## 3539 <NA> <NA> <NA>
## 3540 <NA> <NA> <NA>
## 3541 <NA> <NA> <NA>
## 3542 <NA> <NA> <NA>
## 3543 <NA> <NA> <NA>
## 3544 <NA> <NA> <NA>
## 3545 <NA> <NA> <NA>
## 3546 <NA> <NA> <NA>
## 3547 <NA> <NA> <NA>
## 3548 <NA> <NA> <NA>
## 3549 <NA> <NA> <NA>
## 3550 <NA> <NA> <NA>
## 3551 <NA> <NA> <NA>
## 3552 <NA> <NA> <NA>
## 3553 <NA> <NA> <NA>
## 3554 <NA> <NA> <NA>
## 3555 <NA> <NA> <NA>
## 3556 <NA> <NA> <NA>
## 3557 <NA> <NA> <NA>
## 3558 <NA> <NA> <NA>
## 3559 <NA> <NA> <NA>
## 3560 <NA> <NA> <NA>
## 3561 <NA> <NA> <NA>
## 3562 <NA> <NA> <NA>
## 3563 <NA> <NA> <NA>
## 3564 <NA> <NA> <NA>
## 3565 <NA> <NA> <NA>
## 3566 <NA> <NA> <NA>
## 3567 <NA> <NA> <NA>
## 3568 <NA> <NA> <NA>
## 3569 <NA> <NA> <NA>
## 3570 <NA> <NA> <NA>
## 3571 <NA> <NA> <NA>
## 3572 <NA> <NA> <NA>
## 3573 <NA> <NA> <NA>
## 3574 <NA> <NA> <NA>
## 3575 <NA> <NA> <NA>
## 3576 <NA> <NA> <NA>
## 3577 <NA> <NA> <NA>
## 3578 <NA> <NA> <NA>
## 3579 <NA> <NA> <NA>
## 3580 <NA> <NA> <NA>
## 3581 <NA> <NA> <NA>
## 3582 <NA> <NA> <NA>
## 3583 <NA> <NA> <NA>
## 3584 <NA> <NA> <NA>
## 3585 <NA> <NA> <NA>
## 3586 <NA> <NA> <NA>
## 3587 <NA> <NA> <NA>
## 3588 <NA> <NA> <NA>
## 3589 <NA> <NA> <NA>
## 3590 <NA> <NA> <NA>
## 3591 <NA> <NA> <NA>
## 3592 <NA> <NA> <NA>
## 3593 <NA> <NA> <NA>
## 3594 <NA> <NA> <NA>
## 3595 <NA> <NA> <NA>
## 3596 <NA> <NA> <NA>
## 3597 <NA> <NA> <NA>
## 3598 <NA> <NA> <NA>
## 3599 <NA> <NA> <NA>
## 3600 <NA> <NA> <NA>
## 3601 <NA> <NA> <NA>
## 3602 <NA> <NA> <NA>
## 3603 <NA> <NA> <NA>
## 3604 <NA> <NA> <NA>
## 3605 <NA> <NA> <NA>
## 3606 <NA> <NA> <NA>
## 3607 <NA> <NA> <NA>
## 3608 <NA> <NA> <NA>
## 3609 <NA> <NA> <NA>
## 3610 <NA> <NA> <NA>
## 3611 <NA> <NA> <NA>
## 3612 <NA> <NA> <NA>
## 3613 <NA> <NA> <NA>
## 3614 <NA> <NA> <NA>
## 3615 <NA> <NA> <NA>
## 3616 <NA> <NA> <NA>
## 3617 <NA> <NA> <NA>
## 3618 <NA> <NA> <NA>
## 3619 <NA> <NA> <NA>
## 3620 <NA> <NA> <NA>
## 3621 <NA> <NA> <NA>
## 3622 <NA> <NA> <NA>
## 3623 <NA> <NA> <NA>
## 3624 <NA> <NA> <NA>
## 3625 <NA> <NA> <NA>
## 3626 <NA> <NA> <NA>
## 3627 <NA> <NA> <NA>
## 3628 <NA> <NA> <NA>
## 3629 <NA> <NA> <NA>
## 3630 <NA> <NA> <NA>
## 3631 <NA> <NA> <NA>
## 3632 <NA> <NA> <NA>
## 3633 <NA> <NA> <NA>
## 3634 <NA> <NA> <NA>
## 3635 <NA> <NA> <NA>
## 3636 <NA> <NA> <NA>
## 3637 <NA> <NA> <NA>
## 3638 <NA> <NA> <NA>
## 3639 <NA> <NA> <NA>
## 3640 <NA> <NA> <NA>
## 3641 <NA> <NA> <NA>
## 3642 <NA> <NA> <NA>
## 3643 <NA> <NA> <NA>
## 3644 <NA> <NA> <NA>
## 3645 <NA> <NA> <NA>
## 3646 <NA> <NA> <NA>
## 3647 <NA> <NA> <NA>
## 3648 <NA> <NA> <NA>
## 3649 <NA> <NA> <NA>
## 3650 <NA> <NA> <NA>
## 3651 <NA> <NA> <NA>
## 3652 <NA> <NA> <NA>
## 3653 <NA> <NA> <NA>
## 3654 <NA> <NA> <NA>
## 3655 <NA> <NA> <NA>
## 3656 <NA> <NA> <NA>
## 3657 <NA> <NA> <NA>
## 3658 <NA> <NA> <NA>
## 3659 <NA> <NA> <NA>
## 3660 <NA> <NA> <NA>
## 3661 <NA> <NA> <NA>
## 3662 <NA> <NA> <NA>
## 3663 <NA> <NA> <NA>
## 3664 <NA> <NA> <NA>
## 3665 <NA> <NA> <NA>
## 3666 <NA> <NA> <NA>
## 3667 <NA> <NA> <NA>
## 3668 <NA> <NA> <NA>
## 3669 <NA> <NA> <NA>
## 3670 <NA> <NA> <NA>
## 3671 <NA> <NA> <NA>
## 3672 <NA> <NA> <NA>
## 3673 <NA> <NA> <NA>
## 3674 <NA> <NA> <NA>
## 3675 <NA> <NA> <NA>
## 3676 <NA> <NA> <NA>
## 3677 <NA> <NA> <NA>
## 3678 <NA> <NA> <NA>
## 3679 <NA> <NA> <NA>
## 3680 <NA> <NA> <NA>
## 3681 <NA> <NA> <NA>
## 3682 <NA> <NA> <NA>
## 3683 <NA> <NA> <NA>
## 3684 <NA> <NA> <NA>
## 3685 <NA> <NA> <NA>
## 3686 <NA> <NA> <NA>
## 3687 <NA> <NA> <NA>
## 3688 <NA> <NA> <NA>
## 3689 <NA> <NA> <NA>
## 3690 <NA> <NA> <NA>
## 3691 <NA> <NA> <NA>
## 3692 <NA> <NA> <NA>
## 3693 <NA> <NA> <NA>
## 3694 <NA> <NA> <NA>
## 3695 <NA> <NA> <NA>
## 3696 <NA> <NA> <NA>
## 3697 <NA> <NA> <NA>
## 3698 <NA> <NA> <NA>
## 3699 <NA> <NA> <NA>
## 3700 <NA> <NA> <NA>
## 3701 <NA> <NA> <NA>
## 3702 <NA> <NA> <NA>
## 3703 <NA> <NA> <NA>
## 3704 <NA> <NA> <NA>
## 3705 <NA> <NA> <NA>
## 3706 <NA> <NA> <NA>
## 3707 <NA> <NA> <NA>
## 3708 <NA> <NA> <NA>
## 3709 <NA> <NA> <NA>
## 3710 <NA> <NA> <NA>
## 3711 <NA> <NA> <NA>
## 3712 <NA> <NA> <NA>
## 3713 <NA> <NA> <NA>
## 3714 <NA> <NA> <NA>
## 3715 <NA> <NA> <NA>
## 3716 <NA> <NA> <NA>
## 3717 <NA> <NA> <NA>
## 3718 <NA> <NA> <NA>
## 3719 <NA> <NA> <NA>
## 3720 <NA> <NA> <NA>
## 3721 <NA> <NA> <NA>
## 3722 <NA> <NA> <NA>
## 3723 <NA> <NA> <NA>
## 3724 <NA> <NA> <NA>
## 3725 <NA> <NA> <NA>
## 3726 <NA> <NA> <NA>
## 3727 <NA> <NA> <NA>
## 3728 <NA> <NA> <NA>
## 3729 <NA> <NA> <NA>
## 3730 <NA> <NA> <NA>
## 3731 <NA> <NA> <NA>
## 3732 <NA> <NA> <NA>
## 3733 <NA> <NA> <NA>
## 3734 <NA> <NA> <NA>
## 3735 <NA> <NA> <NA>
## 3736 <NA> <NA> <NA>
## 3737 <NA> <NA> <NA>
## 3738 <NA> <NA> <NA>
## 3739 <NA> <NA> <NA>
## 3740 <NA> <NA> <NA>
## 3741 <NA> <NA> <NA>
## 3742 <NA> <NA> <NA>
## 3743 <NA> <NA> <NA>
## 3744 <NA> <NA> <NA>
## 3745 <NA> <NA> <NA>
## 3746 <NA> <NA> <NA>
## 3747 <NA> <NA> <NA>
## 3748 <NA> <NA> <NA>
## 3749 <NA> <NA> <NA>
## 3750 <NA> <NA> <NA>
## 3751 <NA> <NA> <NA>
## 3752 <NA> <NA> <NA>
## 3753 <NA> <NA> <NA>
## 3754 <NA> <NA> <NA>
## 3755 <NA> <NA> <NA>
## 3756 <NA> <NA> <NA>
## 3757 <NA> <NA> <NA>
## 3758 <NA> <NA> <NA>
## 3759 <NA> <NA> <NA>
## 3760 <NA> <NA> <NA>
## 3761 <NA> <NA> <NA>
## 3762 <NA> <NA> <NA>
## 3763 <NA> <NA> <NA>
## 3764 <NA> <NA> <NA>
## 3765 <NA> <NA> <NA>
## 3766 <NA> <NA> <NA>
## 3767 <NA> <NA> <NA>
## 3768 <NA> <NA> <NA>
## 3769 <NA> <NA> <NA>
## 3770 <NA> <NA> <NA>
## 3771 <NA> <NA> <NA>
## 3772 <NA> <NA> <NA>
## 3773 <NA> <NA> <NA>
## 3774 <NA> <NA> <NA>
## 3775 <NA> <NA> <NA>
## 3776 <NA> <NA> <NA>
## 3777 <NA> <NA> <NA>
## 3778 <NA> <NA> <NA>
## 3779 <NA> <NA> <NA>
## 3780 <NA> <NA> <NA>
## 3781 <NA> <NA> <NA>
## 3782 <NA> <NA> <NA>
## 3783 <NA> <NA> <NA>
## 3784 <NA> <NA> <NA>
## 3785 <NA> <NA> <NA>
## 3786 <NA> <NA> <NA>
## 3787 <NA> <NA> <NA>
## 3788 <NA> <NA> <NA>
## 3789 <NA> <NA> <NA>
## 3790 <NA> <NA> <NA>
## 3791 <NA> <NA> <NA>
## 3792 <NA> <NA> <NA>
## 3793 <NA> <NA> <NA>
## 3794 <NA> <NA> <NA>
## 3795 <NA> <NA> <NA>
## 3796 <NA> <NA> <NA>
## 3797 <NA> <NA> <NA>
## 3798 <NA> <NA> <NA>
## 3799 <NA> <NA> <NA>
## 3800 <NA> <NA> <NA>
## 3801 <NA> <NA> <NA>
## 3802 <NA> <NA> <NA>
## 3803 <NA> <NA> <NA>
## 3804 <NA> <NA> <NA>
## 3805 <NA> <NA> <NA>
## 3806 <NA> <NA> <NA>
## 3807 <NA> <NA> <NA>
## 3808 <NA> <NA> <NA>
## 3809 <NA> <NA> <NA>
## 3810 <NA> <NA> <NA>
## 3811 <NA> <NA> <NA>
## 3812 <NA> <NA> <NA>
## 3813 <NA> <NA> <NA>
## 3814 <NA> <NA> <NA>
## 3815 <NA> <NA> <NA>
## 3816 <NA> <NA> <NA>
## 3817 <NA> <NA> <NA>
## 3818 <NA> <NA> <NA>
## 3819 <NA> <NA> <NA>
## 3820 <NA> <NA> <NA>
## 3821 <NA> <NA> <NA>
## 3822 <NA> <NA> <NA>
## 3823 <NA> <NA> <NA>
## 3824 <NA> <NA> <NA>
## 3825 <NA> <NA> <NA>
## 3826 <NA> <NA> <NA>
## 3827 <NA> <NA> <NA>
## 3828 <NA> <NA> <NA>
## 3829 <NA> <NA> <NA>
## 3830 <NA> <NA> <NA>
## 3831 <NA> <NA> <NA>
## 3832 <NA> <NA> <NA>
## 3833 <NA> <NA> <NA>
## 3834 <NA> <NA> <NA>
## 3835 <NA> <NA> <NA>
## 3836 <NA> <NA> <NA>
## 3837 <NA> <NA> <NA>
## 3838 <NA> <NA> <NA>
## 3839 <NA> <NA> <NA>
## 3840 <NA> <NA> <NA>
## 3841 <NA> <NA> <NA>
## 3842 <NA> <NA> <NA>
## 3843 <NA> <NA> <NA>
## 3844 <NA> <NA> <NA>
## 3845 <NA> <NA> <NA>
## 3846 <NA> <NA> <NA>
## 3847 <NA> <NA> <NA>
## 3848 <NA> <NA> <NA>
## 3849 <NA> <NA> <NA>
## 3850 <NA> <NA> <NA>
## 3851 <NA> <NA> <NA>
## 3852 <NA> <NA> <NA>
## 3853 <NA> <NA> <NA>
## 3854 <NA> <NA> <NA>
## 3855 <NA> <NA> <NA>
## 3856 <NA> <NA> <NA>
## 3857 <NA> <NA> <NA>
## 3858 <NA> <NA> <NA>
## 3859 <NA> <NA> <NA>
## 3860 <NA> <NA> <NA>
## 3861 <NA> <NA> <NA>
## 3862 <NA> <NA> <NA>
## 3863 <NA> <NA> <NA>
## 3864 <NA> <NA> <NA>
## 3865 <NA> <NA> <NA>
## 3866 <NA> <NA> <NA>
## 3867 <NA> <NA> <NA>
## 3868 <NA> <NA> <NA>
## 3869 <NA> <NA> <NA>
## 3870 <NA> <NA> <NA>
## 3871 <NA> <NA> <NA>
## 3872 <NA> <NA> <NA>
## 3873 <NA> <NA> <NA>
## 3874 <NA> <NA> <NA>
## 3875 <NA> <NA> <NA>
## 3876 <NA> <NA> <NA>
## 3877 <NA> <NA> <NA>
## 3878 <NA> <NA> <NA>
## 3879 <NA> <NA> <NA>
## 3880 <NA> <NA> <NA>
## 3881 <NA> <NA> <NA>
## 3882 <NA> <NA> <NA>
## 3883 <NA> <NA> <NA>
## 3884 <NA> <NA> <NA>
## 3885 <NA> <NA> <NA>
## 3886 <NA> <NA> <NA>
## 3887 <NA> <NA> <NA>
## 3888 <NA> <NA> <NA>
## 3889 <NA> <NA> <NA>
## 3890 <NA> <NA> <NA>
## 3891 <NA> <NA> <NA>
## 3892 <NA> <NA> <NA>
## 3893 <NA> <NA> <NA>
## 3894 <NA> <NA> <NA>
## 3895 <NA> <NA> <NA>
## 3896 <NA> <NA> <NA>
## 3897 <NA> <NA> <NA>
## 3898 <NA> <NA> <NA>
## 3899 <NA> <NA> <NA>
## 3900 <NA> <NA> <NA>
## 3901 <NA> <NA> <NA>
## 3902 <NA> <NA> <NA>
## 3903 <NA> <NA> <NA>
## 3904 <NA> <NA> <NA>
## 3905 <NA> <NA> <NA>
## 3906 <NA> <NA> <NA>
## 3907 <NA> <NA> <NA>
## 3908 <NA> <NA> <NA>
## 3909 <NA> <NA> <NA>
## 3910 <NA> <NA> <NA>
## 3911 <NA> <NA> <NA>
## 3912 <NA> <NA> <NA>
## 3913 <NA> <NA> <NA>
## 3914 <NA> <NA> <NA>
## 3915 <NA> <NA> <NA>
## 3916 <NA> <NA> <NA>
## 3917 <NA> <NA> <NA>
## 3918 <NA> <NA> <NA>
## 3919 <NA> <NA> <NA>
## 3920 <NA> <NA> <NA>
## 3921 <NA> <NA> <NA>
## 3922 <NA> <NA> <NA>
## 3923 <NA> <NA> <NA>
## 3924 <NA> <NA> <NA>
## 3925 <NA> <NA> <NA>
## 3926 <NA> <NA> <NA>
## 3927 <NA> <NA> <NA>
## 3928 <NA> <NA> <NA>
## 3929 <NA> <NA> <NA>
## 3930 <NA> <NA> <NA>
## 3931 <NA> <NA> <NA>
## 3932 <NA> <NA> <NA>
## 3933 <NA> <NA> <NA>
## 3934 <NA> <NA> <NA>
## 3935 <NA> <NA> <NA>
## 3936 <NA> <NA> <NA>
## 3937 <NA> <NA> <NA>
## 3938 <NA> <NA> <NA>
## 3939 <NA> <NA> <NA>
## 3940 <NA> <NA> <NA>
## 3941 <NA> <NA> <NA>
## 3942 <NA> <NA> <NA>
## 3943 <NA> <NA> <NA>
## 3944 <NA> <NA> <NA>
## 3945 <NA> <NA> <NA>
## 3946 <NA> <NA> <NA>
## 3947 <NA> <NA> <NA>
## 3948 <NA> <NA> <NA>
## 3949 <NA> <NA> <NA>
## 3950 <NA> <NA> <NA>
## 3951 <NA> <NA> <NA>
## 3952 <NA> <NA> <NA>
## 3953 <NA> <NA> <NA>
## 3954 <NA> <NA> <NA>
## 3955 <NA> <NA> <NA>
## 3956 <NA> <NA> <NA>
## 3957 <NA> <NA> <NA>
## 3958 <NA> <NA> <NA>
## 3959 <NA> <NA> <NA>
## 3960 <NA> <NA> <NA>
## 3961 <NA> <NA> <NA>
## 3962 <NA> <NA> <NA>
## 3963 <NA> <NA> <NA>
## 3964 <NA> <NA> <NA>
## 3965 <NA> <NA> <NA>
## 3966 <NA> <NA> <NA>
## 3967 <NA> <NA> <NA>
## 3968 <NA> <NA> <NA>
## 3969 <NA> <NA> <NA>
## 3970 <NA> <NA> <NA>
## 3971 <NA> <NA> <NA>
## 3972 <NA> <NA> <NA>
## 3973 <NA> <NA> <NA>
## 3974 <NA> <NA> <NA>
## 3975 <NA> <NA> <NA>
## 3976 <NA> <NA> <NA>
## 3977 <NA> <NA> <NA>
## 3978 <NA> <NA> <NA>
## 3979 <NA> <NA> <NA>
## 3980 <NA> <NA> <NA>
## 3981 <NA> <NA> <NA>
## 3982 <NA> <NA> <NA>
## 3983 <NA> <NA> <NA>
## 3984 <NA> <NA> <NA>
## 3985 <NA> <NA> <NA>
## 3986 <NA> <NA> <NA>
## 3987 <NA> <NA> <NA>
## 3988 <NA> <NA> <NA>
## 3989 <NA> <NA> <NA>
## 3990 <NA> <NA> <NA>
## 3991 <NA> <NA> <NA>
## 3992 <NA> <NA> <NA>
## 3993 <NA> <NA> <NA>
## 3994 <NA> <NA> <NA>
## 3995 <NA> <NA> <NA>
## 3996 <NA> <NA> <NA>
## 3997 <NA> <NA> <NA>
## 3998 <NA> <NA> <NA>
## 3999 <NA> <NA> <NA>
## 4000 <NA> <NA> <NA>
## 4001 <NA> <NA> <NA>
## 4002 <NA> <NA> <NA>
## 4003 <NA> <NA> <NA>
## 4004 <NA> <NA> <NA>
## 4005 <NA> <NA> <NA>
## 4006 <NA> <NA> <NA>
## 4007 <NA> <NA> <NA>
## 4008 <NA> <NA> <NA>
## 4009 <NA> <NA> <NA>
## 4010 <NA> <NA> <NA>
## 4011 <NA> <NA> <NA>
## 4012 <NA> <NA> <NA>
## 4013 <NA> <NA> <NA>
## 4014 <NA> <NA> <NA>
## 4015 <NA> <NA> <NA>
## 4016 <NA> <NA> <NA>
## 4017 <NA> <NA> <NA>
## 4018 <NA> <NA> <NA>
## 4019 <NA> <NA> <NA>
## 4020 <NA> <NA> <NA>
## 4021 <NA> <NA> <NA>
## 4022 <NA> <NA> <NA>
## 4023 <NA> <NA> <NA>
## 4024 <NA> <NA> <NA>
## 4025 <NA> <NA> <NA>
## 4026 <NA> <NA> <NA>
## 4027 <NA> <NA> <NA>
## 4028 <NA> <NA> <NA>
## 4029 <NA> <NA> <NA>
## 4030 <NA> <NA> <NA>
## 4031 <NA> <NA> <NA>
## 4032 <NA> <NA> <NA>
## 4033 <NA> <NA> <NA>
## 4034 <NA> <NA> <NA>
## 4035 <NA> <NA> <NA>
## 4036 <NA> <NA> <NA>
## 4037 <NA> <NA> <NA>
## 4038 <NA> <NA> <NA>
## 4039 <NA> <NA> <NA>
## 4040 <NA> <NA> <NA>
## 4041 <NA> <NA> <NA>
## 4042 <NA> <NA> <NA>
## 4043 <NA> <NA> <NA>
## 4044 <NA> <NA> <NA>
## 4045 <NA> <NA> <NA>
## 4046 <NA> <NA> <NA>
## 4047 <NA> <NA> <NA>
## 4048 <NA> <NA> <NA>
## 4049 <NA> <NA> <NA>
## 4050 <NA> <NA> <NA>
## 4051 <NA> <NA> <NA>
## 4052 <NA> <NA> <NA>
## 4053 <NA> <NA> <NA>
## 4054 <NA> <NA> <NA>
## 4055 <NA> <NA> <NA>
## 4056 <NA> <NA> <NA>
## 4057 <NA> <NA> <NA>
## 4058 <NA> <NA> <NA>
## 4059 <NA> <NA> <NA>
## 4060 <NA> <NA> <NA>
## 4061 <NA> <NA> <NA>
## 4062 <NA> <NA> <NA>
## 4063 <NA> <NA> <NA>
## 4064 <NA> <NA> <NA>
## 4065 <NA> <NA> <NA>
## 4066 <NA> <NA> <NA>
## 4067 <NA> <NA> <NA>
## 4068 <NA> <NA> <NA>
## 4069 <NA> <NA> <NA>
## 4070 <NA> <NA> <NA>
## 4071 <NA> <NA> <NA>
## 4072 <NA> <NA> <NA>
## 4073 <NA> <NA> <NA>
## 4074 <NA> <NA> <NA>
## 4075 <NA> <NA> <NA>
## 4076 <NA> <NA> <NA>
## 4077 <NA> <NA> <NA>
## 4078 <NA> <NA> <NA>
## 4079 <NA> <NA> <NA>
## 4080 <NA> <NA> <NA>
## 4081 <NA> <NA> <NA>
## 4082 <NA> <NA> <NA>
## 4083 <NA> <NA> <NA>
## 4084 <NA> <NA> <NA>
## 4085 <NA> <NA> <NA>
## 4086 <NA> <NA> <NA>
## 4087 <NA> <NA> <NA>
## 4088 <NA> <NA> <NA>
## 4089 <NA> <NA> <NA>
## 4090 <NA> <NA> <NA>
## 4091 <NA> <NA> <NA>
## 4092 <NA> <NA> <NA>
## 4093 <NA> <NA> <NA>
## 4094 <NA> <NA> <NA>
## 4095 <NA> <NA> <NA>
## 4096 <NA> <NA> <NA>
## 4097 <NA> <NA> <NA>
## 4098 <NA> <NA> <NA>
## 4099 <NA> <NA> <NA>
## 4100 <NA> <NA> <NA>
## 4101 <NA> <NA> <NA>
## 4102 <NA> <NA> <NA>
## 4103 <NA> <NA> <NA>
## 4104 <NA> <NA> <NA>
## 4105 <NA> <NA> <NA>
## 4106 <NA> <NA> <NA>
## 4107 <NA> <NA> <NA>
## 4108 <NA> <NA> <NA>
## 4109 <NA> <NA> <NA>
## 4110 <NA> <NA> <NA>
## 4111 <NA> <NA> <NA>
## 4112 <NA> <NA> <NA>
## 4113 <NA> <NA> <NA>
## 4114 <NA> <NA> <NA>
## 4115 <NA> <NA> <NA>
## 4116 <NA> <NA> <NA>
## 4117 <NA> <NA> <NA>
## 4118 <NA> <NA> <NA>
## 4119 <NA> <NA> <NA>
## 4120 <NA> <NA> <NA>
## 4121 <NA> <NA> <NA>
## 4122 <NA> <NA> <NA>
## 4123 <NA> <NA> <NA>
## 4124 <NA> <NA> <NA>
## 4125 <NA> <NA> <NA>
## 4126 <NA> <NA> <NA>
## 4127 <NA> <NA> <NA>
## 4128 <NA> <NA> <NA>
## 4129 <NA> <NA> <NA>
## 4130 <NA> <NA> <NA>
## 4131 <NA> <NA> <NA>
## 4132 <NA> <NA> <NA>
## 4133 <NA> <NA> <NA>
## 4134 <NA> <NA> <NA>
## 4135 <NA> <NA> <NA>
## 4136 <NA> <NA> <NA>
## 4137 <NA> <NA> <NA>
## 4138 <NA> <NA> <NA>
## 4139 <NA> <NA> <NA>
## 4140 <NA> <NA> <NA>
## 4141 <NA> <NA> <NA>
## 4142 <NA> <NA> <NA>
## 4143 <NA> <NA> <NA>
## 4144 <NA> <NA> <NA>
## 4145 <NA> <NA> <NA>
## 4146 <NA> <NA> <NA>
## 4147 <NA> <NA> <NA>
## 4148 <NA> <NA> <NA>
## 4149 <NA> <NA> <NA>
## 4150 <NA> <NA> <NA>
## 4151 <NA> <NA> <NA>
## 4152 <NA> <NA> <NA>
## 4153 <NA> <NA> <NA>
## 4154 <NA> <NA> <NA>
## 4155 <NA> <NA> <NA>
## 4156 <NA> <NA> <NA>
## 4157 <NA> <NA> <NA>
## 4158 <NA> <NA> <NA>
## 4159 <NA> <NA> <NA>
## 4160 <NA> <NA> <NA>
## 4161 <NA> <NA> <NA>
## 4162 <NA> <NA> <NA>
## 4163 <NA> <NA> <NA>
## 4164 <NA> <NA> <NA>
## 4165 <NA> <NA> <NA>
## 4166 <NA> <NA> <NA>
## 4167 <NA> <NA> <NA>
## 4168 <NA> <NA> <NA>
## 4169 <NA> <NA> <NA>
## 4170 <NA> <NA> <NA>
## 4171 <NA> <NA> <NA>
## 4172 <NA> <NA> <NA>
## 4173 <NA> <NA> <NA>
## 4174 <NA> <NA> <NA>
## 4175 <NA> <NA> <NA>
## 4176 <NA> <NA> <NA>
## 4177 <NA> <NA> <NA>
## 4178 <NA> <NA> <NA>
## 4179 <NA> <NA> <NA>
## 4180 <NA> <NA> <NA>
## 4181 <NA> <NA> <NA>
## 4182 <NA> <NA> <NA>
## 4183 <NA> <NA> <NA>
## 4184 <NA> <NA> <NA>
## 4185 <NA> <NA> <NA>
## 4186 <NA> <NA> <NA>
## 4187 <NA> <NA> <NA>
## 4188 <NA> <NA> <NA>
## 4189 <NA> <NA> <NA>
## 4190 <NA> <NA> <NA>
## 4191 <NA> <NA> <NA>
## 4192 <NA> <NA> <NA>
## 4193 <NA> <NA> <NA>
## 4194 <NA> <NA> <NA>
## 4195 <NA> <NA> <NA>
## 4196 <NA> <NA> <NA>
## 4197 <NA> <NA> <NA>
## 4198 <NA> <NA> <NA>
## 4199 <NA> <NA> <NA>
## 4200 <NA> <NA> <NA>
## 4201 <NA> <NA> <NA>
## 4202 <NA> <NA> <NA>
## 4203 <NA> <NA> <NA>
## 4204 <NA> <NA> <NA>
## 4205 <NA> <NA> <NA>
## 4206 <NA> <NA> <NA>
## 4207 <NA> <NA> <NA>
## 4208 <NA> <NA> <NA>
## 4209 <NA> <NA> <NA>
## 4210 <NA> <NA> <NA>
## 4211 <NA> <NA> <NA>
## 4212 <NA> <NA> <NA>
## 4213 <NA> <NA> <NA>
## 4214 <NA> <NA> <NA>
## 4215 <NA> <NA> <NA>
## 4216 <NA> <NA> <NA>
## 4217 <NA> <NA> <NA>
## 4218 <NA> <NA> <NA>
## 4219 <NA> <NA> <NA>
## 4220 <NA> <NA> <NA>
## 4221 <NA> <NA> <NA>
## 4222 <NA> <NA> <NA>
## 4223 <NA> <NA> <NA>
## 4224 <NA> <NA> <NA>
## 4225 <NA> <NA> <NA>
## 4226 <NA> <NA> <NA>
## 4227 <NA> <NA> <NA>
## 4228 <NA> <NA> <NA>
## 4229 <NA> <NA> <NA>
## 4230 <NA> <NA> <NA>
## 4231 <NA> <NA> <NA>
## 4232 <NA> <NA> <NA>
## 4233 <NA> <NA> <NA>
## 4234 <NA> <NA> <NA>
## 4235 <NA> <NA> <NA>
## 4236 <NA> <NA> <NA>
## 4237 <NA> <NA> <NA>
## 4238 <NA> <NA> <NA>
## 4239 <NA> <NA> <NA>
## 4240 <NA> <NA> <NA>
## 4241 <NA> <NA> <NA>
## 4242 <NA> <NA> <NA>
## 4243 <NA> <NA> <NA>
## 4244 <NA> <NA> <NA>
## 4245 <NA> <NA> <NA>
## 4246 <NA> <NA> <NA>
## 4247 <NA> <NA> <NA>
## 4248 <NA> <NA> <NA>
## 4249 <NA> <NA> <NA>
## 4250 <NA> <NA> <NA>
## 4251 <NA> <NA> <NA>
## 4252 <NA> <NA> <NA>
## 4253 <NA> <NA> <NA>
## 4254 <NA> <NA> <NA>
## 4255 <NA> <NA> <NA>
## 4256 <NA> <NA> <NA>
## 4257 <NA> <NA> <NA>
## 4258 <NA> <NA> <NA>
## 4259 <NA> <NA> <NA>
## 4260 <NA> <NA> <NA>
## 4261 <NA> <NA> <NA>
## 4262 <NA> <NA> <NA>
## 4263 <NA> <NA> <NA>
## 4264 <NA> <NA> <NA>
## 4265 <NA> <NA> <NA>
## 4266 <NA> <NA> <NA>
## 4267 <NA> <NA> <NA>
## 4268 <NA> <NA> <NA>
## 4269 <NA> <NA> <NA>
## 4270 <NA> <NA> <NA>
## 4271 <NA> <NA> <NA>
## 4272 <NA> <NA> <NA>
## 4273 <NA> <NA> <NA>
## 4274 <NA> <NA> <NA>
## 4275 <NA> <NA> <NA>
## 4276 <NA> <NA> <NA>
## 4277 <NA> <NA> <NA>
## 4278 <NA> <NA> <NA>
## 4279 <NA> <NA> <NA>
## 4280 <NA> <NA> <NA>
## 4281 <NA> <NA> <NA>
## 4282 <NA> <NA> <NA>
## 4283 <NA> <NA> <NA>
## 4284 <NA> <NA> <NA>
## 4285 <NA> <NA> <NA>
## 4286 <NA> <NA> <NA>
## 4287 <NA> <NA> <NA>
## 4288 <NA> <NA> <NA>
## 4289 <NA> <NA> <NA>
## 4290 <NA> <NA> <NA>
## 4291 <NA> <NA> <NA>
## 4292 <NA> <NA> <NA>
## 4293 <NA> <NA> <NA>
## 4294 <NA> <NA> <NA>
## 4295 <NA> <NA> <NA>
## 4296 <NA> <NA> <NA>
## 4297 <NA> <NA> <NA>
## 4298 <NA> <NA> <NA>
## 4299 <NA> <NA> <NA>
## 4300 <NA> <NA> <NA>
## 4301 <NA> <NA> <NA>
## 4302 <NA> <NA> <NA>
## 4303 <NA> <NA> <NA>
## 4304 <NA> <NA> <NA>
## 4305 <NA> <NA> <NA>
## 4306 <NA> <NA> <NA>
## 4307 <NA> <NA> <NA>
## 4308 <NA> <NA> <NA>
## 4309 <NA> <NA> <NA>
## 4310 <NA> <NA> <NA>
## 4311 <NA> <NA> <NA>
## 4312 <NA> <NA> <NA>
## 4313 <NA> <NA> <NA>
## 4314 <NA> <NA> <NA>
## 4315 <NA> <NA> <NA>
## 4316 <NA> <NA> <NA>
## 4317 <NA> <NA> <NA>
## 4318 <NA> <NA> <NA>
## 4319 <NA> <NA> <NA>
## 4320 <NA> <NA> <NA>
## 4321 <NA> <NA> <NA>
## 4322 <NA> <NA> <NA>
## 4323 <NA> <NA> <NA>
## 4324 <NA> <NA> <NA>
## 4325 <NA> <NA> <NA>
## 4326 <NA> <NA> <NA>
## 4327 <NA> <NA> <NA>
## 4328 <NA> <NA> <NA>
## 4329 <NA> <NA> <NA>
## 4330 <NA> <NA> <NA>
## 4331 <NA> <NA> <NA>
## 4332 <NA> <NA> <NA>
## 4333 <NA> <NA> <NA>
## 4334 <NA> <NA> <NA>
## 4335 <NA> <NA> <NA>
## 4336 <NA> <NA> <NA>
## 4337 <NA> <NA> <NA>
## 4338 <NA> <NA> <NA>
## 4339 <NA> <NA> <NA>
## 4340 <NA> <NA> <NA>
## 4341 <NA> <NA> <NA>
## 4342 <NA> <NA> <NA>
## 4343 <NA> <NA> <NA>
## 4344 <NA> <NA> <NA>
## 4345 <NA> <NA> <NA>
## 4346 <NA> <NA> <NA>
## 4347 <NA> <NA> <NA>
## 4348 <NA> <NA> <NA>
## 4349 <NA> <NA> <NA>
## 4350 <NA> <NA> <NA>
## 4351 <NA> <NA> <NA>
## 4352 <NA> <NA> <NA>
## 4353 <NA> <NA> <NA>
## 4354 <NA> <NA> <NA>
## 4355 <NA> <NA> <NA>
## 4356 <NA> <NA> <NA>
## 4357 <NA> <NA> <NA>
## 4358 <NA> <NA> <NA>
## 4359 <NA> <NA> <NA>
## 4360 <NA> <NA> <NA>
## 4361 <NA> <NA> <NA>
## 4362 <NA> <NA> <NA>
## 4363 <NA> <NA> <NA>
## 4364 <NA> <NA> <NA>
## 4365 <NA> <NA> <NA>
## 4366 <NA> <NA> <NA>
## 4367 <NA> <NA> <NA>
## 4368 <NA> <NA> <NA>
## 4369 <NA> <NA> <NA>
## 4370 <NA> <NA> <NA>
## 4371 <NA> <NA> <NA>
## 4372 <NA> <NA> <NA>
## 4373 <NA> <NA> <NA>
## 4374 <NA> <NA> <NA>
## 4375 <NA> <NA> <NA>
## 4376 <NA> <NA> <NA>
## 4377 <NA> <NA> <NA>
## 4378 <NA> <NA> <NA>
## 4379 <NA> <NA> <NA>
## 4380 <NA> <NA> <NA>
## 4381 <NA> <NA> <NA>
## 4382 <NA> <NA> <NA>
## 4383 <NA> <NA> <NA>
## 4384 <NA> <NA> <NA>
## 4385 <NA> <NA> <NA>
## 4386 <NA> <NA> <NA>
## 4387 <NA> <NA> <NA>
## 4388 <NA> <NA> <NA>
## 4389 <NA> <NA> <NA>
## 4390 <NA> <NA> <NA>
## 4391 <NA> <NA> <NA>
## 4392 <NA> <NA> <NA>
## 4393 <NA> <NA> <NA>
## 4394 <NA> <NA> <NA>
## 4395 <NA> <NA> <NA>
## 4396 <NA> <NA> <NA>
## 4397 <NA> <NA> <NA>
## 4398 <NA> <NA> <NA>
## 4399 <NA> <NA> <NA>
## 4400 <NA> <NA> <NA>
## 4401 <NA> <NA> <NA>
## 4402 <NA> <NA> <NA>
## 4403 <NA> <NA> <NA>
## 4404 <NA> <NA> <NA>
## 4405 <NA> <NA> <NA>
## 4406 <NA> <NA> <NA>
## 4407 <NA> <NA> <NA>
## 4408 <NA> <NA> <NA>
## 4409 <NA> <NA> <NA>
## 4410 <NA> <NA> <NA>
## 4411 <NA> <NA> <NA>
## 4412 <NA> <NA> <NA>
## 4413 <NA> <NA> <NA>
## 4414 <NA> <NA> <NA>
## 4415 <NA> <NA> <NA>
## 4416 <NA> <NA> <NA>
## 4417 <NA> <NA> <NA>
## 4418 <NA> <NA> <NA>
## 4419 <NA> <NA> <NA>
## 4420 <NA> <NA> <NA>
## 4421 <NA> <NA> <NA>
## 4422 <NA> <NA> <NA>
## 4423 <NA> <NA> <NA>
## 4424 <NA> <NA> <NA>
## 4425 <NA> <NA> <NA>
## 4426 <NA> <NA> <NA>
## 4427 <NA> <NA> <NA>
## 4428 <NA> <NA> <NA>
## 4429 <NA> <NA> <NA>
## 4430 <NA> <NA> <NA>
## 4431 <NA> <NA> <NA>
## 4432 <NA> <NA> <NA>
## 4433 <NA> <NA> <NA>
## 4434 <NA> <NA> <NA>
## 4435 <NA> <NA> <NA>
## 4436 <NA> <NA> <NA>
## 4437 <NA> <NA> <NA>
## 4438 <NA> <NA> <NA>
## 4439 <NA> <NA> <NA>
## 4440 <NA> <NA> <NA>
## 4441 <NA> <NA> <NA>
## 4442 <NA> <NA> <NA>
## 4443 <NA> <NA> <NA>
## 4444 <NA> <NA> <NA>
## 4445 <NA> <NA> <NA>
## 4446 <NA> <NA> <NA>
## 4447 <NA> <NA> <NA>
## 4448 <NA> <NA> <NA>
## 4449 <NA> <NA> <NA>
## 4450 <NA> <NA> <NA>
## 4451 <NA> <NA> <NA>
## 4452 <NA> <NA> <NA>
## 4453 <NA> <NA> <NA>
## 4454 <NA> <NA> <NA>
## 4455 <NA> <NA> <NA>
## 4456 <NA> <NA> <NA>
## 4457 <NA> <NA> <NA>
## 4458 <NA> <NA> <NA>
## 4459 <NA> <NA> <NA>
## 4460 <NA> <NA> <NA>
## 4461 <NA> <NA> <NA>
## 4462 <NA> <NA> <NA>
## 4463 <NA> <NA> <NA>
## 4464 <NA> <NA> <NA>
## 4465 <NA> <NA> <NA>
## 4466 <NA> <NA> <NA>
## 4467 <NA> <NA> <NA>
## 4468 <NA> <NA> <NA>
## 4469 <NA> <NA> <NA>
## 4470 <NA> <NA> <NA>
## 4471 <NA> <NA> <NA>
## 4472 <NA> <NA> <NA>
## 4473 <NA> <NA> <NA>
## 4474 <NA> <NA> <NA>
## 4475 <NA> <NA> <NA>
## 4476 <NA> <NA> <NA>
## 4477 <NA> <NA> <NA>
## 4478 <NA> <NA> <NA>
## 4479 <NA> <NA> <NA>
## 4480 <NA> <NA> <NA>
## 4481 <NA> <NA> <NA>
## 4482 <NA> <NA> <NA>
## 4483 <NA> <NA> <NA>
## 4484 <NA> <NA> <NA>
## 4485 <NA> <NA> <NA>
## 4486 <NA> <NA> <NA>
## 4487 <NA> <NA> <NA>
## 4488 <NA> <NA> <NA>
## 4489 <NA> <NA> <NA>
## 4490 <NA> <NA> <NA>
## 4491 <NA> <NA> <NA>
## 4492 <NA> <NA> <NA>
## 4493 <NA> <NA> <NA>
## 4494 <NA> <NA> <NA>
## 4495 <NA> <NA> <NA>
## 4496 <NA> <NA> <NA>
## 4497 <NA> <NA> <NA>
## 4498 <NA> <NA> <NA>
## 4499 <NA> <NA> <NA>
## 4500 <NA> <NA> <NA>
## 4501 <NA> <NA> <NA>
## 4502 <NA> <NA> <NA>
## 4503 <NA> <NA> <NA>
## 4504 <NA> <NA> <NA>
## 4505 <NA> <NA> <NA>
## 4506 <NA> <NA> <NA>
## 4507 <NA> <NA> <NA>
## 4508 <NA> <NA> <NA>
## 4509 <NA> <NA> <NA>
## 4510 <NA> <NA> <NA>
## 4511 <NA> <NA> <NA>
## 4512 <NA> <NA> <NA>
## 4513 <NA> <NA> <NA>
## 4514 <NA> <NA> <NA>
## 4515 <NA> <NA> <NA>
## 4516 <NA> <NA> <NA>
## 4517 <NA> <NA> <NA>
## 4518 <NA> <NA> <NA>
## 4519 <NA> <NA> <NA>
## 4520 <NA> <NA> <NA>
## 4521 <NA> <NA> <NA>
## 4522 <NA> <NA> <NA>
## 4523 <NA> <NA> <NA>
## 4524 <NA> <NA> <NA>
## 4525 <NA> <NA> <NA>
## 4526 <NA> <NA> <NA>
## 4527 <NA> <NA> <NA>
## 4528 <NA> <NA> <NA>
## 4529 <NA> <NA> <NA>
## 4530 <NA> <NA> <NA>
## 4531 <NA> <NA> <NA>
## 4532 <NA> <NA> <NA>
## 4533 <NA> <NA> <NA>
## 4534 <NA> <NA> <NA>
## 4535 <NA> <NA> <NA>
## 4536 <NA> <NA> <NA>
## 4537 <NA> <NA> <NA>
## 4538 <NA> <NA> <NA>
## 4539 <NA> <NA> <NA>
## 4540 <NA> <NA> <NA>
## 4541 <NA> <NA> <NA>
## 4542 <NA> <NA> <NA>
## 4543 <NA> <NA> <NA>
## 4544 <NA> <NA> <NA>
## 4545 <NA> <NA> <NA>
## 4546 <NA> <NA> <NA>
## 4547 <NA> <NA> <NA>
## 4548 <NA> <NA> <NA>
## 4549 <NA> <NA> <NA>
## 4550 <NA> <NA> <NA>
## 4551 <NA> <NA> <NA>
## 4552 <NA> <NA> <NA>
## 4553 <NA> <NA> <NA>
## 4554 <NA> <NA> <NA>
## 4555 <NA> <NA> <NA>
## 4556 <NA> <NA> <NA>
## 4557 <NA> <NA> <NA>
## 4558 <NA> <NA> <NA>
## 4559 <NA> <NA> <NA>
## 4560 <NA> <NA> <NA>
## 4561 <NA> <NA> <NA>
## 4562 <NA> <NA> <NA>
## 4563 <NA> <NA> <NA>
## 4564 <NA> <NA> <NA>
## 4565 <NA> <NA> <NA>
## 4566 <NA> <NA> <NA>
## 4567 <NA> <NA> <NA>
## 4568 <NA> <NA> <NA>
## 4569 <NA> <NA> <NA>
## 4570 <NA> <NA> <NA>
## 4571 <NA> <NA> <NA>
## 4572 <NA> <NA> <NA>
## 4573 <NA> <NA> <NA>
## 4574 <NA> <NA> <NA>
## 4575 <NA> <NA> <NA>
## 4576 <NA> <NA> <NA>
## 4577 <NA> <NA> <NA>
## 4578 <NA> <NA> <NA>
## 4579 <NA> <NA> <NA>
## 4580 <NA> <NA> <NA>
## 4581 <NA> <NA> <NA>
## 4582 <NA> <NA> <NA>
## 4583 <NA> <NA> <NA>
## 4584 <NA> <NA> <NA>
## 4585 <NA> <NA> <NA>
## 4586 <NA> <NA> <NA>
## 4587 <NA> <NA> <NA>
## 4588 <NA> <NA> <NA>
## 4589 <NA> <NA> <NA>
## 4590 <NA> <NA> <NA>
## 4591 <NA> <NA> <NA>
## 4592 <NA> <NA> <NA>
## 4593 <NA> <NA> <NA>
## 4594 <NA> <NA> <NA>
## 4595 <NA> <NA> <NA>
## 4596 <NA> <NA> <NA>
## 4597 <NA> <NA> <NA>
## 4598 <NA> <NA> <NA>
## 4599 <NA> <NA> <NA>
## 4600 <NA> <NA> <NA>
## 4601 <NA> <NA> <NA>
## 4602 <NA> <NA> <NA>
## 4603 <NA> <NA> <NA>
## 4604 <NA> <NA> <NA>
## 4605 <NA> <NA> <NA>
## 4606 <NA> <NA> <NA>
## 4607 <NA> <NA> <NA>
## 4608 <NA> <NA> <NA>
## 4609 <NA> <NA> <NA>
## 4610 <NA> <NA> <NA>
## 4611 <NA> <NA> <NA>
## 4612 <NA> <NA> <NA>
## 4613 <NA> <NA> <NA>
## 4614 <NA> <NA> <NA>
## 4615 <NA> <NA> <NA>
## 4616 <NA> <NA> <NA>
## 4617 <NA> <NA> <NA>
## 4618 <NA> <NA> <NA>
## 4619 <NA> <NA> <NA>
## 4620 <NA> <NA> <NA>
## 4621 <NA> <NA> <NA>
## 4622 <NA> <NA> <NA>
## 4623 <NA> <NA> <NA>
## 4624 <NA> <NA> <NA>
## 4625 <NA> <NA> <NA>
## 4626 <NA> <NA> <NA>
## 4627 <NA> <NA> <NA>
## 4628 <NA> <NA> <NA>
## 4629 <NA> <NA> <NA>
## 4630 <NA> <NA> <NA>
## 4631 <NA> <NA> <NA>
## 4632 <NA> <NA> <NA>
## 4633 <NA> <NA> <NA>
## 4634 <NA> <NA> <NA>
## 4635 <NA> <NA> <NA>
## 4636 <NA> <NA> <NA>
## 4637 <NA> <NA> <NA>
## 4638 <NA> <NA> <NA>
## 4639 <NA> <NA> <NA>
## 4640 <NA> <NA> <NA>
## 4641 <NA> <NA> <NA>
## 4642 <NA> <NA> <NA>
## 4643 <NA> <NA> <NA>
## 4644 <NA> <NA> <NA>
## 4645 <NA> <NA> <NA>
## 4646 <NA> <NA> <NA>
## 4647 <NA> <NA> <NA>
## 4648 <NA> <NA> <NA>
## 4649 <NA> <NA> <NA>
## 4650 <NA> <NA> <NA>
## 4651 <NA> <NA> <NA>
## 4652 <NA> <NA> <NA>
## 4653 <NA> <NA> <NA>
## 4654 <NA> <NA> <NA>
## 4655 <NA> <NA> <NA>
## 4656 <NA> <NA> <NA>
## 4657 <NA> <NA> <NA>
## 4658 <NA> <NA> <NA>
## 4659 <NA> <NA> <NA>
## 4660 <NA> <NA> <NA>
## 4661 <NA> <NA> <NA>
## 4662 <NA> <NA> <NA>
## 4663 <NA> <NA> <NA>
## 4664 <NA> <NA> <NA>
## 4665 <NA> <NA> <NA>
## 4666 <NA> <NA> <NA>
## 4667 <NA> <NA> <NA>
## 4668 <NA> <NA> <NA>
## 4669 <NA> <NA> <NA>
## 4670 <NA> <NA> <NA>
## 4671 <NA> <NA> <NA>
## 4672 <NA> <NA> <NA>
## 4673 <NA> <NA> <NA>
## 4674 <NA> <NA> <NA>
## 4675 <NA> <NA> <NA>
## 4676 <NA> <NA> <NA>
## 4677 <NA> <NA> <NA>
## 4678 <NA> <NA> <NA>
## 4679 <NA> <NA> <NA>
## 4680 <NA> <NA> <NA>
## 4681 <NA> <NA> <NA>
## 4682 <NA> <NA> <NA>
## 4683 <NA> <NA> <NA>
## 4684 <NA> <NA> <NA>
## 4685 <NA> <NA> <NA>
## 4686 <NA> <NA> <NA>
## 4687 <NA> <NA> <NA>
## 4688 <NA> <NA> <NA>
## 4689 <NA> <NA> <NA>
## 4690 <NA> <NA> <NA>
## 4691 <NA> <NA> <NA>
## 4692 <NA> <NA> <NA>
## 4693 <NA> <NA> <NA>
## 4694 <NA> <NA> <NA>
## 4695 <NA> <NA> <NA>
## 4696 <NA> <NA> <NA>
## 4697 <NA> <NA> <NA>
## 4698 <NA> <NA> <NA>
## 4699 <NA> <NA> <NA>
## 4700 <NA> <NA> <NA>
## 4701 <NA> <NA> <NA>
## 4702 <NA> <NA> <NA>
## 4703 <NA> <NA> <NA>
## 4704 <NA> <NA> <NA>
## 4705 <NA> <NA> <NA>
## 4706 <NA> <NA> <NA>
## 4707 <NA> <NA> <NA>
## 4708 <NA> <NA> <NA>
## 4709 <NA> <NA> <NA>
## 4710 <NA> <NA> <NA>
## 4711 <NA> <NA> <NA>
## 4712 <NA> <NA> <NA>
## 4713 <NA> <NA> <NA>
## 4714 <NA> <NA> <NA>
## 4715 <NA> <NA> <NA>
## 4716 <NA> <NA> <NA>
## 4717 <NA> <NA> <NA>
## 4718 <NA> <NA> <NA>
## 4719 <NA> <NA> <NA>
## 4720 <NA> <NA> <NA>
## 4721 <NA> <NA> <NA>
## 4722 <NA> <NA> <NA>
## 4723 <NA> <NA> <NA>
## 4724 <NA> <NA> <NA>
## 4725 <NA> <NA> <NA>
## 4726 <NA> <NA> <NA>
## 4727 <NA> <NA> <NA>
## 4728 <NA> <NA> <NA>
## 4729 <NA> <NA> <NA>
## 4730 <NA> <NA> <NA>
## 4731 <NA> <NA> <NA>
## 4732 <NA> <NA> <NA>
## 4733 <NA> <NA> <NA>
## 4734 <NA> <NA> <NA>
## 4735 <NA> <NA> <NA>
## 4736 <NA> <NA> <NA>
## 4737 <NA> <NA> <NA>
## 4738 <NA> <NA> <NA>
## 4739 <NA> <NA> <NA>
## 4740 <NA> <NA> <NA>
## 4741 <NA> <NA> <NA>
## 4742 <NA> <NA> <NA>
## 4743 <NA> <NA> <NA>
## 4744 <NA> <NA> <NA>
## 4745 <NA> <NA> <NA>
## 4746 <NA> <NA> <NA>
## 4747 <NA> <NA> <NA>
## 4748 <NA> <NA> <NA>
## 4749 <NA> <NA> <NA>
## 4750 <NA> <NA> <NA>
## 4751 <NA> <NA> <NA>
## 4752 <NA> <NA> <NA>
## 4753 <NA> <NA> <NA>
## 4754 <NA> <NA> <NA>
## 4755 <NA> <NA> <NA>
## 4756 <NA> <NA> <NA>
## 4757 <NA> <NA> <NA>
## 4758 <NA> <NA> <NA>
## 4759 <NA> <NA> <NA>
## 4760 <NA> <NA> <NA>
## 4761 <NA> <NA> <NA>
## 4762 <NA> <NA> <NA>
## 4763 <NA> <NA> <NA>
## 4764 <NA> <NA> <NA>
## 4765 <NA> <NA> <NA>
## 4766 <NA> <NA> <NA>
## 4767 <NA> <NA> <NA>
## 4768 <NA> <NA> <NA>
## 4769 <NA> <NA> <NA>
## 4770 <NA> <NA> <NA>
## 4771 <NA> <NA> <NA>
## 4772 <NA> <NA> <NA>
## 4773 <NA> <NA> <NA>
## 4774 <NA> <NA> <NA>
## 4775 <NA> <NA> <NA>
## 4776 <NA> <NA> <NA>
## 4777 <NA> <NA> <NA>
## 4778 <NA> <NA> <NA>
## 4779 <NA> <NA> <NA>
## 4780 <NA> <NA> <NA>
## 4781 <NA> <NA> <NA>
## 4782 <NA> <NA> <NA>
## 4783 <NA> <NA> <NA>
## 4784 <NA> <NA> <NA>
## 4785 <NA> <NA> <NA>
## 4786 <NA> <NA> <NA>
## 4787 <NA> <NA> <NA>
## 4788 <NA> <NA> <NA>
## 4789 <NA> <NA> <NA>
## 4790 <NA> <NA> <NA>
## 4791 <NA> <NA> <NA>
## 4792 <NA> <NA> <NA>
## 4793 <NA> <NA> <NA>
## 4794 <NA> <NA> <NA>
## 4795 <NA> <NA> <NA>
## 4796 <NA> <NA> <NA>
## 4797 <NA> <NA> <NA>
## 4798 <NA> <NA> <NA>
## 4799 <NA> <NA> <NA>
## 4800 <NA> <NA> <NA>
## 4801 <NA> <NA> <NA>
## 4802 <NA> <NA> <NA>
## 4803 <NA> <NA> <NA>
## 4804 <NA> <NA> <NA>
## 4805 <NA> <NA> <NA>
## 4806 <NA> <NA> <NA>
## 4807 <NA> <NA> <NA>
## 4808 <NA> <NA> <NA>
## 4809 <NA> <NA> <NA>
## 4810 <NA> <NA> <NA>
## 4811 <NA> <NA> <NA>
## 4812 <NA> <NA> <NA>
## 4813 <NA> <NA> <NA>
## 4814 <NA> <NA> <NA>
## 4815 <NA> <NA> <NA>
## 4816 <NA> <NA> <NA>
## 4817 <NA> <NA> <NA>
## 4818 <NA> <NA> <NA>
## 4819 <NA> <NA> <NA>
## 4820 <NA> <NA> <NA>
## 4821 <NA> <NA> <NA>
## 4822 <NA> <NA> <NA>
## 4823 <NA> <NA> <NA>
## 4824 <NA> <NA> <NA>
## 4825 <NA> <NA> <NA>
## 4826 <NA> <NA> <NA>
## 4827 <NA> <NA> <NA>
## 4828 <NA> <NA> <NA>
## 4829 <NA> <NA> <NA>
## 4830 <NA> <NA> <NA>
## 4831 <NA> <NA> <NA>
## 4832 <NA> <NA> <NA>
## 4833 <NA> <NA> <NA>
## 4834 <NA> <NA> <NA>
## 4835 <NA> <NA> <NA>
## 4836 <NA> <NA> <NA>
## 4837 <NA> <NA> <NA>
## 4838 <NA> <NA> <NA>
## 4839 <NA> <NA> <NA>
## 4840 <NA> <NA> <NA>
## 4841 <NA> <NA> <NA>
## 4842 <NA> <NA> <NA>
## 4843 <NA> <NA> <NA>
## 4844 <NA> <NA> <NA>
## 4845 <NA> <NA> <NA>
## 4846 <NA> <NA> <NA>
## 4847 <NA> <NA> <NA>
## 4848 <NA> <NA> <NA>
## 4849 <NA> <NA> <NA>
## 4850 <NA> <NA> <NA>
## 4851 <NA> <NA> <NA>
## 4852 <NA> <NA> <NA>
## 4853 <NA> <NA> <NA>
## 4854 <NA> <NA> <NA>
## 4855 <NA> <NA> <NA>
## 4856 <NA> <NA> <NA>
## 4857 <NA> <NA> <NA>
## 4858 <NA> <NA> <NA>
## 4859 <NA> <NA> <NA>
## 4860 <NA> <NA> <NA>
## 4861 <NA> <NA> <NA>
## 4862 <NA> <NA> <NA>
## 4863 <NA> <NA> <NA>
## 4864 <NA> <NA> <NA>
## 4865 <NA> <NA> <NA>
## 4866 <NA> <NA> <NA>
## 4867 <NA> <NA> <NA>
## 4868 <NA> <NA> <NA>
## 4869 <NA> <NA> <NA>
## 4870 <NA> <NA> <NA>
## 4871 <NA> <NA> <NA>
## 4872 <NA> <NA> <NA>
## 4873 <NA> <NA> <NA>
## 4874 <NA> <NA> <NA>
## 4875 <NA> <NA> <NA>
## 4876 <NA> <NA> <NA>
## 4877 <NA> <NA> <NA>
## 4878 <NA> <NA> <NA>
## 4879 <NA> <NA> <NA>
## 4880 <NA> <NA> <NA>
## 4881 <NA> <NA> <NA>
## 4882 <NA> <NA> <NA>
## 4883 <NA> <NA> <NA>
## 4884 <NA> <NA> <NA>
## 4885 <NA> <NA> <NA>
## 4886 <NA> <NA> <NA>
## 4887 <NA> <NA> <NA>
## 4888 <NA> <NA> <NA>
## 4889 <NA> <NA> <NA>
## 4890 <NA> <NA> <NA>
## 4891 <NA> <NA> <NA>
## 4892 <NA> <NA> <NA>
## 4893 <NA> <NA> <NA>
## 4894 <NA> <NA> <NA>
## 4895 <NA> <NA> <NA>
## 4896 <NA> <NA> <NA>
## 4897 <NA> <NA> <NA>
## 4898 <NA> <NA> <NA>
## 4899 <NA> <NA> <NA>
## 4900 <NA> <NA> <NA>
## 4901 <NA> <NA> <NA>
## 4902 <NA> <NA> <NA>
## 4903 <NA> <NA> <NA>
## 4904 <NA> <NA> <NA>
## 4905 <NA> <NA> <NA>
## 4906 <NA> <NA> <NA>
## 4907 <NA> <NA> <NA>
## 4908 <NA> <NA> <NA>
## 4909 <NA> <NA> <NA>
## 4910 <NA> <NA> <NA>
## 4911 <NA> <NA> <NA>
## 4912 <NA> <NA> <NA>
## 4913 <NA> <NA> <NA>
## 4914 <NA> <NA> <NA>
## 4915 <NA> <NA> <NA>
## 4916 <NA> <NA> <NA>
## 4917 <NA> <NA> <NA>
## 4918 <NA> <NA> <NA>
## 4919 <NA> <NA> <NA>
## 4920 <NA> <NA> <NA>
## 4921 <NA> <NA> <NA>
## 4922 <NA> <NA> <NA>
## 4923 <NA> <NA> <NA>
## 4924 <NA> <NA> <NA>
## 4925 <NA> <NA> <NA>
## 4926 <NA> <NA> <NA>
## 4927 <NA> <NA> <NA>
## 4928 <NA> <NA> <NA>
## 4929 <NA> <NA> <NA>
## 4930 <NA> <NA> <NA>
## 4931 <NA> <NA> <NA>
## 4932 <NA> <NA> <NA>
## 4933 <NA> <NA> <NA>
## 4934 <NA> <NA> <NA>
## 4935 <NA> <NA> <NA>
## 4936 <NA> <NA> <NA>
## 4937 <NA> <NA> <NA>
## 4938 <NA> <NA> <NA>
## 4939 <NA> <NA> <NA>
## 4940 <NA> <NA> <NA>
## 4941 <NA> <NA> <NA>
## 4942 <NA> <NA> <NA>
## 4943 <NA> <NA> <NA>
## 4944 <NA> <NA> <NA>
## 4945 <NA> <NA> <NA>
## 4946 <NA> <NA> <NA>
## 4947 <NA> <NA> <NA>
## 4948 <NA> <NA> <NA>
## 4949 <NA> <NA> <NA>
## 4950 <NA> <NA> <NA>
## 4951 <NA> <NA> <NA>
## 4952 <NA> <NA> <NA>
## 4953 <NA> <NA> <NA>
## 4954 <NA> <NA> <NA>
## 4955 <NA> <NA> <NA>
## 4956 <NA> <NA> <NA>
## 4957 <NA> <NA> <NA>
## 4958 <NA> <NA> <NA>
## 4959 <NA> <NA> <NA>
## 4960 <NA> <NA> <NA>
## 4961 <NA> <NA> <NA>
## 4962 <NA> <NA> <NA>
## 4963 <NA> <NA> <NA>
## 4964 <NA> <NA> <NA>
## 4965 <NA> <NA> <NA>
## 4966 <NA> <NA> <NA>
## 4967 <NA> <NA> <NA>
## 4968 <NA> <NA> <NA>
## 4969 <NA> <NA> <NA>
## 4970 <NA> <NA> <NA>
## 4971 <NA> <NA> <NA>
## 4972 <NA> <NA> <NA>
## 4973 <NA> <NA> <NA>
## 4974 <NA> <NA> <NA>
## 4975 <NA> <NA> <NA>
## 4976 <NA> <NA> <NA>
## 4977 <NA> <NA> <NA>
## 4978 <NA> <NA> <NA>
## 4979 <NA> <NA> <NA>
## 4980 <NA> <NA> <NA>
## 4981 <NA> <NA> <NA>
## 4982 <NA> <NA> <NA>
## 4983 <NA> <NA> <NA>
## 4984 <NA> <NA> <NA>
## 4985 <NA> <NA> <NA>
## 4986 <NA> <NA> <NA>
## 4987 <NA> <NA> <NA>
## 4988 <NA> <NA> <NA>
## 4989 <NA> <NA> <NA>
## 4990 <NA> <NA> <NA>
## 4991 <NA> <NA> <NA>
## 4992 <NA> <NA> <NA>
## 4993 <NA> <NA> <NA>
## 4994 <NA> <NA> <NA>
## 4995 <NA> <NA> <NA>
## 4996 <NA> <NA> <NA>
## 4997 <NA> <NA> <NA>
## 4998 <NA> <NA> <NA>
## 4999 <NA> <NA> <NA>
## ctzshipc brncntr cntbrthc gndr agea hhmmb
## 1 <NA> Yes <NA> Female 49 1
## 2 <NA> Yes <NA> Female 45 2
## 3 <NA> Yes <NA> Male 76 1
## 4 <NA> No <NA> Male 50 5
## 5 <NA> Yes <NA> Male 67 2
## 6 <NA> Yes <NA> Female 31 2
## 7 <NA> Yes <NA> Female 34 3
## 8 <NA> Yes <NA> Female 44 1
## 9 Poland No Poland Male 32 3
## 10 <NA> Yes <NA> Male 58 2
## 11 <NA> Yes <NA> Male 48 2
## 12 <NA> Yes <NA> Male 15 3
## 13 <NA> Yes <NA> Male 53 1
## 14 <NA> Yes <NA> Female 65 2
## 15 <NA> No <NA> Male 41 2
## 16 <NA> Yes <NA> Female 40 4
## 17 <NA> Yes <NA> Male 91 1
## 18 <NA> Yes <NA> Female 48 3
## 19 <NA> No <NA> Female 39 4
## 20 <NA> Yes <NA> Male 49 1
## 21 <NA> Yes <NA> Male 29 2
## 22 <NA> Yes <NA> Male 36 2
## 23 <NA> Yes <NA> Female 52 1
## 24 <NA> Yes <NA> Male 32 2
## 25 <NA> Yes <NA> Female 67 2
## 26 <NA> No <NA> Male 50 1
## 27 <NA> No Ireland Male 43 1
## 28 <NA> Yes <NA> Male 65 2
## 29 <NA> Yes <NA> Male 93 1
## 30 <NA> Yes <NA> Female 29 1
## 31 <NA> Yes <NA> Male 64 2
## 32 <NA> Yes <NA> Male 65 2
## 33 <NA> Yes <NA> Male 65 6
## 34 <NA> Yes <NA> Female 72 1
## 35 <NA> No Sri Lanka Male 55 4
## 36 <NA> Yes <NA> Male 19 4
## 37 <NA> Yes <NA> Male 78 2
## 38 <NA> Yes <NA> Male 38 1
## 39 <NA> Yes <NA> Female 41 3
## 40 <NA> No Germany Male 37 2
## 41 <NA> Yes <NA> Female 59 3
## 42 <NA> Yes <NA> Male 47 6
## 43 <NA> Yes <NA> Male 61 1
## 44 <NA> Yes <NA> Female 52 1
## 45 <NA> Yes <NA> Male 58 1
## 46 <NA> Yes <NA> Female 54 2
## 47 <NA> Yes <NA> Male 49 3
## 48 <NA> Yes <NA> Male 53 4
## 49 <NA> Yes <NA> Female 34 3
## 50 <NA> Yes <NA> Male 58 2
## 51 <NA> No Zimbabwe Male 21 2
## 52 <NA> No Zimbabwe Female 16 3
## 53 <NA> Yes <NA> Female 85 1
## 54 <NA> Yes <NA> Female 54 2
## 55 <NA> No <NA> Female 37 2
## 56 <NA> Yes <NA> Female NA 1
## 57 <NA> Yes <NA> Female 69 1
## 58 <NA> No Sri Lanka Female 30 1
## 59 <NA> Yes <NA> Male 60 2
## 60 <NA> Yes <NA> Male 64 3
## 61 <NA> Yes <NA> Male 66 1
## 62 <NA> Yes <NA> Female 78 2
## 63 <NA> Yes <NA> Female 69 1
## 64 <NA> Yes <NA> Female 61 2
## 65 <NA> Yes <NA> Male 72 1
## 66 <NA> Yes <NA> Male 36 2
## 67 <NA> Yes <NA> Female 30 2
## 68 <NA> Yes <NA> Male 34 1
## 69 <NA> Yes <NA> Male 31 5
## 70 <NA> Yes <NA> Male 63 2
## 71 <NA> No <NA> Female 26 3
## 72 <NA> No Ireland Female 68 2
## 73 <NA> Yes <NA> Female 75 2
## 74 <NA> Yes <NA> Male 50 1
## 75 <NA> Yes <NA> Female 40 4
## 76 <NA> Yes <NA> Female 22 6
## 77 <NA> Yes <NA> Male 26 2
## 78 <NA> Yes <NA> Female 27 4
## 79 <NA> Yes <NA> Female 68 2
## 80 <NA> No <NA> Male 18 5
## 81 <NA> Yes <NA> Male 54 2
## 82 <NA> Yes <NA> Male 74 1
## 83 <NA> Yes <NA> Male 69 2
## 84 <NA> No <NA> Female 31 3
## 85 <NA> Yes <NA> Female 27 2
## 86 <NA> Yes <NA> Female 88 2
## 87 <NA> Yes <NA> Female 85 2
## 88 <NA> Yes <NA> Female 77 2
## 89 Poland No Poland Male 28 3
## 90 <NA> Yes <NA> Male 29 2
## 91 <NA> Yes <NA> Male 80 1
## 92 <NA> Yes <NA> Female 58 2
## 93 <NA> Yes <NA> Female 50 3
## 94 <NA> Yes <NA> Female 47 1
## 95 <NA> Yes <NA> Female 16 5
## 96 <NA> Yes <NA> Female 79 1
## 97 <NA> Yes <NA> Female 55 1
## 98 <NA> Yes <NA> Male 55 1
## 99 <NA> Yes <NA> Female 37 3
## 100 <NA> Yes <NA> Female 34 3
## 101 <NA> Yes <NA> Female 74 2
## 102 <NA> Yes <NA> Male 67 2
## 103 <NA> No <NA> Female 40 5
## 104 <NA> Yes <NA> Female 55 3
## 105 <NA> Yes <NA> Female 53 2
## 106 <NA> Yes <NA> Male 73 2
## 107 <NA> Yes <NA> Female 60 1
## 108 <NA> Yes <NA> Female 26 3
## 109 <NA> Yes <NA> Female 73 1
## 110 <NA> Yes <NA> Female 83 2
## 111 <NA> Yes <NA> Female 86 1
## 112 <NA> Yes <NA> Male 34 6
## 113 <NA> Yes <NA> Female 79 2
## 114 <NA> Yes <NA> Male 35 1
## 115 <NA> Yes <NA> Male 15 2
## 116 <NA> Yes <NA> Female 64 1
## 117 <NA> No <NA> Male 40 4
## 118 <NA> Yes <NA> Female 64 2
## 119 <NA> Yes <NA> Male 56 3
## 120 <NA> Yes <NA> Female 66 2
## 121 <NA> Yes <NA> Male 46 4
## 122 <NA> Yes <NA> Male 69 2
## 123 <NA> Yes <NA> Male 67 1
## 124 <NA> Yes <NA> Male 59 1
## 125 <NA> Yes <NA> Female 52 1
## 126 <NA> Yes <NA> Male 67 1
## 127 <NA> Yes <NA> Female 67 2
## 128 <NA> Yes <NA> Male 51 5
## 129 <NA> Yes <NA> Female 47 4
## 130 <NA> Yes <NA> Male 68 1
## 131 <NA> Yes <NA> Male 65 1
## 132 <NA> Yes <NA> Female 30 1
## 133 <NA> Yes <NA> Male 66 2
## 134 <NA> Yes <NA> Female 84 1
## 135 <NA> Yes <NA> Male 37 1
## 136 <NA> Yes <NA> Female 60 2
## 137 <NA> Yes <NA> Female 17 4
## 138 <NA> Yes <NA> Male 60 1
## 139 <NA> Yes <NA> Male 70 1
## 140 <NA> Yes <NA> Male 73 1
## 141 <NA> Yes <NA> Female 72 2
## 142 <NA> Yes <NA> Female 67 3
## 143 <NA> Yes <NA> Male 49 3
## 144 <NA> Yes <NA> Female 39 3
## 145 <NA> Yes <NA> Male 61 2
## 146 <NA> Yes <NA> Female 31 4
## 147 <NA> Yes <NA> Female 38 4
## 148 <NA> Yes <NA> Female 56 1
## 149 <NA> Yes <NA> Male 62 2
## 150 <NA> Yes <NA> Male 70 2
## 151 <NA> Yes <NA> Male 50 3
## 152 <NA> No China Male 26 3
## 153 <NA> Yes <NA> Female 51 1
## 154 <NA> No <NA> Female 20 2
## 155 <NA> Yes <NA> Female 68 2
## 156 <NA> Yes <NA> Male 76 2
## 157 <NA> Yes <NA> Female 47 2
## 158 <NA> Yes <NA> Female 46 1
## 159 <NA> Yes <NA> Male 58 1
## 160 <NA> Yes <NA> Male 17 4
## 161 <NA> Yes <NA> Female 53 2
## 162 <NA> Yes <NA> Female 35 4
## 163 <NA> Yes <NA> Female 84 1
## 164 <NA> Yes <NA> Male 93 1
## 165 <NA> Yes <NA> Female 43 1
## 166 <NA> Yes <NA> Male 41 1
## 167 <NA> No <NA> Male 32 4
## 168 <NA> Yes <NA> Female 93 1
## 169 <NA> Yes <NA> Female 51 4
## 170 <NA> Yes <NA> Female 58 2
## 171 <NA> No South Africa Female 33 3
## 172 <NA> Yes <NA> Male 90 3
## 173 <NA> No <NA> Male 23 1
## 174 <NA> Yes <NA> Female 65 2
## 175 <NA> No India Female 73 1
## 176 <NA> Yes <NA> Male 57 3
## 177 <NA> Yes <NA> Male 59 1
## 178 <NA> Yes <NA> Female 84 1
## 179 <NA> Yes <NA> Female 76 1
## 180 <NA> No South Africa Female 33 2
## 181 <NA> Yes <NA> Male 80 1
## 182 <NA> Yes <NA> Female 80 1
## 183 <NA> Yes <NA> Female 36 3
## 184 <NA> Yes <NA> Female 39 5
## 185 <NA> Yes <NA> Female 35 7
## 186 <NA> Yes <NA> Male 45 3
## 187 <NA> Yes <NA> Female 19 3
## 188 <NA> Yes <NA> Female 83 1
## 189 <NA> Yes <NA> Male 70 2
## 190 <NA> Yes <NA> Female 84 1
## 191 <NA> No Poland Male 29 5
## 192 <NA> Yes <NA> Female 56 2
## 193 <NA> Yes <NA> Female 52 2
## 194 <NA> Yes <NA> Male 41 4
## 195 <NA> Yes <NA> Male 55 4
## 196 <NA> Yes <NA> Female 30 2
## 197 <NA> Yes <NA> Male 82 1
## 198 <NA> Yes <NA> Male 72 2
## 199 <NA> Yes <NA> Male 83 2
## 200 <NA> Yes <NA> Male 56 4
## 201 <NA> Yes <NA> Male 36 2
## 202 <NA> Yes <NA> Female 85 2
## 203 <NA> Yes <NA> Male 70 1
## 204 <NA> Yes <NA> Male 66 1
## 205 <NA> Yes <NA> Male 35 3
## 206 <NA> Yes <NA> Female 35 2
## 207 <NA> Yes <NA> Female 24 4
## 208 <NA> Yes <NA> Male 56 1
## 209 <NA> Yes <NA> Female 50 4
## 210 <NA> Yes <NA> Female 16 5
## 211 <NA> Yes <NA> Female 78 1
## 212 <NA> Yes <NA> Male 18 4
## 213 <NA> Yes <NA> Male 27 1
## 214 <NA> No <NA> Female 42 4
## 215 <NA> Yes <NA> Male 71 2
## 216 <NA> Yes <NA> Female 38 2
## 217 <NA> Yes <NA> Female 83 1
## 218 <NA> Yes <NA> Male 81 2
## 219 <NA> Yes <NA> Male 64 1
## 220 <NA> Yes <NA> Female 67 2
## 221 <NA> Yes <NA> Male 58 2
## 222 <NA> Yes <NA> Male 17 5
## 223 <NA> Yes <NA> Female 80 1
## 224 <NA> Yes <NA> Female 49 1
## 225 <NA> Yes <NA> Female 31 3
## 226 <NA> Yes <NA> Male 63 1
## 227 <NA> Yes <NA> Female 32 4
## 228 <NA> Yes <NA> Female 67 5
## 229 <NA> Yes <NA> Female 61 2
## 230 <NA> Yes <NA> Female 24 2
## 231 <NA> Yes <NA> Female 20 2
## 232 <NA> Yes <NA> Male 70 2
## 233 <NA> Yes <NA> Female 28 3
## 234 <NA> Yes <NA> Male 48 2
## 235 Poland No Poland Female 55 2
## 236 <NA> Yes <NA> Male 56 2
## 237 <NA> Yes <NA> Female 40 4
## 238 <NA> Yes <NA> Male 74 2
## 239 <NA> Yes <NA> Male 52 2
## 240 <NA> Yes <NA> Female 66 1
## 241 <NA> Yes <NA> Male 39 1
## 242 <NA> Yes <NA> Female 26 2
## 243 <NA> Yes <NA> Male 58 4
## 244 <NA> Yes <NA> Male 59 1
## 245 <NA> Yes <NA> Female 34 4
## 246 <NA> Yes <NA> Female 82 1
## 247 <NA> Yes <NA> Male 50 3
## 248 <NA> Yes <NA> Female 31 2
## 249 Poland No Poland Female 28 3
## 250 <NA> Yes <NA> Female 66 2
## 251 <NA> Yes <NA> Female 57 2
## 252 <NA> Yes <NA> Male 52 3
## 253 <NA> Yes <NA> Female 26 2
## 254 <NA> Yes <NA> Male 70 2
## 255 <NA> Yes <NA> Female 67 2
## 256 <NA> Yes <NA> Female 56 3
## 257 <NA> Yes <NA> Female 26 2
## 258 <NA> No Germany Female 47 2
## 259 <NA> Yes <NA> Male 73 1
## 260 <NA> Yes <NA> Female 35 3
## 261 <NA> Yes <NA> Male 87 1
## 262 <NA> Yes <NA> Female 71 1
## 263 <NA> No Iran, Islamic Republic of Male 40 2
## 264 <NA> No <NA> Male 66 1
## 265 <NA> Yes <NA> Male 60 2
## 266 <NA> Yes <NA> Male 53 1
## 267 <NA> Yes <NA> Female 63 3
## 268 <NA> Yes <NA> Male 40 1
## 269 <NA> No Ireland Female 75 1
## 270 <NA> No <NA> Male 28 4
## 271 <NA> Yes <NA> Female 45 3
## 272 <NA> Yes <NA> Female 28 2
## 273 <NA> No <NA> Female 69 1
## 274 <NA> Yes <NA> Male 45 4
## 275 <NA> Yes <NA> Female 44 2
## 276 <NA> Yes <NA> Female 52 3
## 277 <NA> Yes <NA> Female 28 1
## 278 <NA> Yes <NA> Male 26 3
## 279 <NA> Yes <NA> Female 54 5
## 280 <NA> Yes <NA> Female 61 2
## 281 <NA> Yes <NA> Female 72 1
## 282 <NA> No India Female NA 4
## 283 <NA> No Jamaica Female 64 2
## 284 <NA> No India Male 16 3
## 285 <NA> Yes <NA> Female 46 3
## 286 <NA> Yes <NA> Female 25 4
## 287 <NA> Yes <NA> Male 49 2
## 288 <NA> Yes <NA> Male 36 1
## 289 <NA> No <NA> Female 53 2
## 290 <NA> Yes <NA> Female 37 3
## 291 <NA> No Sri Lanka Male 38 4
## 292 <NA> Yes <NA> Male 67 2
## 293 <NA> Yes <NA> Male 47 4
## 294 <NA> Yes <NA> Male 44 2
## 295 <NA> Yes <NA> Male 16 3
## 296 <NA> Yes <NA> Female 70 2
## 297 <NA> Yes <NA> Female 45 3
## 298 <NA> Yes <NA> Female 50 1
## 299 <NA> No <NA> Male 70 2
## 300 <NA> No <NA> Female 29 3
## 301 <NA> Yes <NA> Female 62 2
## 302 <NA> Yes <NA> Female 66 2
## 303 <NA> Yes <NA> Female 54 2
## 304 <NA> Yes <NA> Female 62 1
## 305 <NA> Yes <NA> Female 23 4
## 306 <NA> Yes <NA> Male 74 1
## 307 <NA> No <NA> Male 35 3
## 308 <NA> No Poland Male 32 5
## 309 <NA> Yes <NA> Male 64 1
## 310 <NA> Yes <NA> Female 82 1
## 311 <NA> Yes <NA> Male 60 1
## 312 Ireland Yes <NA> Female 40 1
## 313 <NA> Yes <NA> Female 60 5
## 314 <NA> Yes <NA> Male 62 1
## 315 <NA> Yes <NA> Female 60 2
## 316 <NA> Yes <NA> Male 15 6
## 317 <NA> Yes <NA> Male 53 3
## 318 <NA> Yes <NA> Male 35 5
## 319 <NA> Yes <NA> Male 76 2
## 320 <NA> Yes <NA> Male 36 1
## 321 <NA> Yes <NA> Female 64 1
## 322 <NA> Yes <NA> Female 70 1
## 323 <NA> No <NA> Male 32 5
## 324 <NA> Yes <NA> Male 51 1
## 325 <NA> Yes <NA> Female 60 3
## 326 <NA> Yes <NA> Female 52 1
## 327 <NA> Yes <NA> Female 67 1
## 328 <NA> Yes <NA> Male 60 1
## 329 <NA> Yes <NA> Female 32 1
## 330 <NA> Yes <NA> Female 33 1
## 331 <NA> Yes <NA> Female 74 1
## 332 <NA> No <NA> Female 42 4
## 333 <NA> Yes <NA> Male 71 1
## 334 <NA> Yes <NA> Male 50 1
## 335 <NA> Yes <NA> Male 19 1
## 336 Ireland No Ireland Female 66 2
## 337 <NA> Yes <NA> Male 71 1
## 338 <NA> Yes <NA> Female 81 1
## 339 <NA> No <NA> Male 46 1
## 340 <NA> Yes <NA> Female 79 1
## 341 <NA> Yes <NA> Female 72 1
## 342 <NA> Yes <NA> Female 44 3
## 343 <NA> Yes <NA> Male 78 2
## 344 <NA> No South Africa Female 47 3
## 345 <NA> Yes <NA> Female 31 3
## 346 <NA> Yes <NA> Male 54 1
## 347 <NA> Yes <NA> Male 39 4
## 348 <NA> Yes <NA> Male 29 3
## 349 <NA> Yes <NA> Female 64 2
## 350 <NA> Yes <NA> Female 67 1
## 351 <NA> No <NA> Male 43 2
## 352 <NA> Yes <NA> Male 50 2
## 353 <NA> Yes <NA> Male 76 1
## 354 <NA> Yes <NA> Female 46 2
## 355 <NA> Yes <NA> Female 71 1
## 356 <NA> Yes <NA> Male 56 1
## 357 <NA> Yes <NA> Female 52 1
## 358 <NA> No Iran, Islamic Republic of Female 39 3
## 359 <NA> No <NA> Female 38 5
## 360 <NA> Yes <NA> Female 58 1
## 361 <NA> Yes <NA> Female 49 4
## 362 <NA> Yes <NA> Female 54 1
## 363 <NA> No <NA> Female NA 5
## 364 <NA> Yes <NA> Female 74 2
## 365 <NA> Yes <NA> Female 22 4
## 366 <NA> Yes <NA> Male 64 2
## 367 <NA> Yes <NA> Male 30 3
## 368 <NA> Yes <NA> Male 68 2
## 369 <NA> Yes <NA> Female 45 1
## 370 <NA> Yes <NA> Female 42 2
## 371 <NA> Yes <NA> Female 51 4
## 372 <NA> Yes <NA> Female 26 7
## 373 <NA> No <NA> Male 83 2
## 374 <NA> Yes <NA> Female 55 1
## 375 <NA> Yes <NA> Male 17 3
## 376 <NA> No Pakistan Male 58 6
## 377 <NA> Yes <NA> Male 63 2
## 378 <NA> Yes <NA> Male 41 1
## 379 <NA> Yes <NA> Female 60 4
## 380 <NA> No <NA> Male 55 2
## 381 <NA> Yes <NA> Female 70 1
## 382 <NA> Yes <NA> Female 52 1
## 383 <NA> Yes <NA> Female 64 2
## 384 <NA> No Pakistan Female 51 5
## 385 <NA> Yes <NA> Female 43 6
## 386 <NA> Yes <NA> Female 68 2
## 387 <NA> Yes <NA> Male 54 2
## 388 <NA> Yes <NA> Male 45 5
## 389 <NA> Yes <NA> Male 75 2
## 390 <NA> Yes <NA> Male 86 2
## 391 <NA> Yes <NA> Female 39 4
## 392 <NA> Yes <NA> Female 31 4
## 393 <NA> Yes <NA> Female 47 1
## 394 <NA> Yes <NA> Male 26 3
## 395 <NA> Yes <NA> Female 68 2
## 396 <NA> Yes <NA> Male 45 4
## 397 <NA> Yes <NA> Male 50 1
## 398 <NA> Yes <NA> Female 40 4
## 399 <NA> Yes <NA> Male 50 5
## 400 <NA> Yes <NA> Female 53 3
## 401 <NA> Yes <NA> Female 67 2
## 402 <NA> Yes <NA> Male 52 2
## 403 <NA> Yes <NA> Female 78 1
## 404 <NA> Yes <NA> Male 63 1
## 405 <NA> Yes <NA> Male 56 3
## 406 <NA> Yes <NA> Female 64 2
## 407 <NA> Yes <NA> Male 78 2
## 408 <NA> No <NA> Female 40 3
## 409 <NA> Yes <NA> Male 45 4
## 410 <NA> Yes <NA> Female 34 4
## 411 <NA> Yes <NA> Female 71 2
## 412 <NA> Yes <NA> Male 54 1
## 413 <NA> Yes <NA> Male 52 1
## 414 <NA> No Zimbabwe Male 45 3
## 415 <NA> Yes <NA> Male 53 1
## 416 <NA> Yes <NA> Female 51 1
## 417 <NA> Yes <NA> Male 42 3
## 418 <NA> Yes <NA> Female 78 2
## 419 <NA> Yes <NA> Female 82 2
## 420 <NA> Yes <NA> Male 79 2
## 421 <NA> Yes <NA> Female 47 1
## 422 <NA> Yes <NA> Male 50 2
## 423 <NA> Yes <NA> Female 64 1
## 424 <NA> No Germany Female 55 4
## 425 <NA> Yes <NA> Female 39 2
## 426 <NA> Yes <NA> Female 46 3
## 427 <NA> Yes <NA> Male 71 2
## 428 <NA> Yes <NA> Female 61 2
## 429 <NA> Yes <NA> Female 74 1
## 430 <NA> Yes <NA> Female 47 1
## 431 <NA> Yes <NA> Female 70 1
## 432 <NA> Yes <NA> Female 68 2
## 433 <NA> Yes <NA> Female 73 1
## 434 <NA> Yes <NA> Male 17 4
## 435 <NA> Yes <NA> Male 66 1
## 436 <NA> Yes <NA> Female 40 4
## 437 <NA> Yes <NA> Female 57 1
## 438 <NA> Yes <NA> Male 29 2
## 439 <NA> Yes <NA> Male 80 2
## 440 <NA> Yes <NA> Female 45 5
## 441 <NA> Yes <NA> Female 47 2
## 442 <NA> No Pakistan Female 32 4
## 443 <NA> Yes <NA> Female 45 2
## 444 <NA> Yes <NA> Female 86 2
## 445 <NA> Yes <NA> Male 83 1
## 446 <NA> Yes <NA> Male 57 1
## 447 <NA> Yes <NA> Female 49 4
## 448 <NA> Yes <NA> Male 21 5
## 449 <NA> Yes <NA> Female 60 2
## 450 <NA> Yes <NA> Female 62 2
## 451 <NA> Yes <NA> Male 55 1
## 452 <NA> Yes <NA> Female 55 2
## 453 <NA> Yes <NA> Female 24 5
## 454 <NA> Yes <NA> Female 24 1
## 455 <NA> Yes <NA> Female 72 2
## 456 <NA> No <NA> Male 38 1
## 457 <NA> Yes <NA> Female 31 5
## 458 <NA> Yes <NA> Male 64 1
## 459 <NA> Yes <NA> Male 68 1
## 460 <NA> Yes <NA> Male 52 2
## 461 <NA> Yes <NA> Female 75 2
## 462 <NA> Yes <NA> Female 62 1
## 463 <NA> Yes <NA> Male 64 1
## 464 <NA> No <NA> Female 71 2
## 465 <NA> Yes <NA> Male 32 5
## 466 <NA> Yes <NA> Male 67 1
## 467 <NA> Yes <NA> Male 51 2
## 468 <NA> Yes <NA> Male 52 2
## 469 <NA> No South Africa Female 79 2
## 470 <NA> Yes <NA> Male 85 1
## 471 <NA> Yes <NA> Female 68 2
## 472 <NA> Yes <NA> Female 68 2
## 473 <NA> Yes <NA> Female 45 2
## 474 <NA> Yes <NA> Male 60 1
## 475 <NA> Yes <NA> Male 75 2
## 476 <NA> Yes <NA> Male 68 1
## 477 <NA> Yes <NA> Male 73 4
## 478 <NA> Yes <NA> Female 32 1
## 479 <NA> No <NA> Male 16 4
## 480 <NA> No <NA> Male 40 3
## 481 <NA> Yes <NA> Male 77 2
## 482 <NA> Yes <NA> Female 48 4
## 483 <NA> Yes <NA> Female 23 3
## 484 <NA> Yes <NA> Male 20 6
## 485 <NA> Yes <NA> Female 70 1
## 486 <NA> Yes <NA> Female 84 2
## 487 <NA> Yes <NA> Female 84 1
## 488 <NA> Yes <NA> Female 63 2
## 489 <NA> Yes <NA> Female 63 1
## 490 <NA> Yes <NA> Female 92 1
## 491 <NA> Yes <NA> Female 50 2
## 492 <NA> Yes <NA> Female 40 3
## 493 <NA> Yes <NA> Female 48 2
## 494 <NA> Yes <NA> Male 70 2
## 495 <NA> Yes <NA> Female 42 1
## 496 <NA> Yes <NA> Male 46 1
## 497 <NA> Yes <NA> Female 30 1
## 498 <NA> Yes <NA> Female 57 2
## 499 <NA> Yes <NA> Female 33 2
## 500 <NA> Yes <NA> Male 63 3
## 501 <NA> Yes <NA> Female 23 2
## 502 <NA> Yes <NA> Female 69 2
## 503 <NA> Yes <NA> Male 43 1
## 504 <NA> No Pakistan Female 35 3
## 505 <NA> Yes <NA> Male 29 4
## 506 <NA> Yes <NA> Female 48 2
## 507 <NA> Yes <NA> Male 55 2
## 508 <NA> Yes <NA> Female 35 4
## 509 <NA> Yes <NA> Female 66 1
## 510 <NA> Yes <NA> Female 48 1
## 511 <NA> Yes <NA> Female 45 1
## 512 <NA> Yes <NA> Female 81 1
## 513 <NA> Yes <NA> Male 87 1
## 514 <NA> No <NA> Male 24 1
## 515 <NA> Yes <NA> Male 46 4
## 516 <NA> Yes <NA> Female 19 4
## 517 <NA> No Ireland Female 87 1
## 518 <NA> Yes <NA> Male 68 2
## 519 <NA> Yes <NA> Female 45 3
## 520 <NA> Yes <NA> Male 37 1
## 521 <NA> Yes <NA> Male 71 1
## 522 <NA> Yes <NA> Female 83 1
## 523 <NA> Yes <NA> Female 41 4
## 524 <NA> Yes <NA> Female 25 2
## 525 <NA> No <NA> Male 30 2
## 526 <NA> Yes <NA> Female 40 2
## 527 <NA> Yes <NA> Female 57 2
## 528 <NA> Yes <NA> Male 56 2
## 529 <NA> Yes <NA> Female 24 4
## 530 <NA> Yes <NA> Female 59 1
## 531 <NA> Yes <NA> Female 39 1
## 532 <NA> Yes <NA> Female 40 3
## 533 <NA> Yes <NA> Female 72 2
## 534 <NA> Yes <NA> Female 51 2
## 535 <NA> Yes <NA> Female 73 1
## 536 <NA> Yes <NA> Male 44 2
## 537 <NA> Yes <NA> Male 31 2
## 538 <NA> Yes <NA> Male 45 5
## 539 <NA> No <NA> Female 42 4
## 540 <NA> Yes <NA> Male 55 1
## 541 Ireland No Ireland Male 73 2
## 542 <NA> Yes <NA> Male 71 1
## 543 <NA> No Germany Female 33 2
## 544 <NA> Yes <NA> Female 68 1
## 545 <NA> Yes <NA> Male 41 1
## 546 <NA> Yes <NA> Female 58 2
## 547 <NA> Yes <NA> Female 29 3
## 548 <NA> Yes <NA> Female 75 1
## 549 <NA> Yes <NA> Female 84 1
## 550 <NA> Yes <NA> Female 67 2
## 551 <NA> Yes <NA> Male 48 2
## 552 <NA> No Germany Male 51 4
## 553 <NA> Yes <NA> Female 40 1
## 554 <NA> Yes <NA> Male 33 3
## 555 <NA> Yes <NA> Female 45 4
## 556 <NA> Yes <NA> Female 73 1
## 557 <NA> Yes <NA> Female 62 2
## 558 <NA> Yes <NA> Male 66 2
## 559 <NA> Yes <NA> Male 48 1
## 560 <NA> Yes <NA> Female 63 2
## 561 <NA> Yes <NA> Male 26 1
## 562 <NA> Yes <NA> Male 36 2
## 563 Spain No <NA> Male 37 1
## 564 <NA> Yes <NA> Male 30 2
## 565 <NA> Yes <NA> Female 39 4
## 566 <NA> Yes <NA> Female 35 3
## 567 <NA> Yes <NA> Female 70 1
## 568 <NA> Yes <NA> Male 19 1
## 569 <NA> Yes <NA> Female 47 2
## 570 <NA> Yes <NA> Female 26 1
## 571 <NA> Yes <NA> Male 39 5
## 572 <NA> Yes <NA> Male 61 1
## 573 <NA> Yes <NA> Female 56 2
## 574 Ireland No Ireland Female 50 2
## 575 <NA> Yes <NA> Female 53 4
## 576 <NA> Yes <NA> Female 70 2
## 577 <NA> Yes <NA> Male 72 1
## 578 <NA> Yes <NA> Male 45 6
## 579 <NA> Yes <NA> Male 47 1
## 580 Ireland No Ireland Male 68 1
## 581 <NA> No <NA> Male 30 4
## 582 <NA> Yes <NA> Male 42 2
## 583 <NA> Yes <NA> Female 47 1
## 584 <NA> Yes <NA> Female 67 1
## 585 <NA> Yes <NA> Female 81 1
## 586 <NA> Yes <NA> Female 49 3
## 587 <NA> Yes <NA> Male 88 1
## 588 <NA> Yes <NA> Female 57 3
## 589 <NA> Yes <NA> Male 34 4
## 590 <NA> Yes <NA> Female 67 2
## 591 <NA> Yes <NA> Female 57 1
## 592 <NA> Yes <NA> Male 36 2
## 593 <NA> Yes <NA> Female 78 1
## 594 <NA> Yes <NA> Male 46 3
## 595 <NA> Yes <NA> Female 73 2
## 596 <NA> Yes <NA> Male 66 1
## 597 <NA> Yes <NA> Male 51 6
## 598 <NA> Yes <NA> Male 26 4
## 599 <NA> Yes <NA> Female 60 2
## 600 <NA> Yes <NA> Male 58 2
## 601 <NA> No <NA> Male 47 1
## 602 <NA> Yes <NA> Male 65 1
## 603 <NA> Yes <NA> Male 77 2
## 604 <NA> Yes <NA> Male 63 1
## 605 <NA> Yes <NA> Female 61 2
## 606 <NA> Yes <NA> Female 78 1
## 607 <NA> Yes <NA> Female 81 1
## 608 <NA> Yes <NA> Female 64 1
## 609 <NA> Yes <NA> Female 63 2
## 610 <NA> Yes <NA> Female 69 2
## 611 <NA> Yes <NA> Female 35 1
## 612 <NA> Yes <NA> Male 55 1
## 613 <NA> No India Male 29 1
## 614 <NA> Yes <NA> Female 67 2
## 615 <NA> Yes <NA> Female 38 1
## 616 <NA> Yes <NA> Female 70 1
## 617 <NA> Yes <NA> Male 42 1
## 618 <NA> Yes <NA> Female 42 4
## 619 <NA> No Jamaica Male 82 1
## 620 <NA> Yes <NA> Male 26 2
## 621 <NA> No <NA> Male 37 4
## 622 <NA> Yes <NA> Female 67 1
## 623 <NA> Yes <NA> Male 37 2
## 624 <NA> Yes <NA> Female 47 2
## 625 <NA> Yes <NA> Female 61 1
## 626 <NA> No <NA> Female NA 2
## 627 <NA> Yes <NA> Female 44 5
## 628 <NA> Yes <NA> Female 24 3
## 629 <NA> Yes <NA> Male 35 4
## 630 <NA> Yes <NA> Female 50 5
## 631 <NA> Yes <NA> Female 39 3
## 632 <NA> Yes <NA> Female 44 2
## 633 <NA> Yes <NA> Female 55 3
## 634 <NA> Yes <NA> Female 34 1
## 635 <NA> Yes <NA> Male 22 2
## 636 <NA> Yes <NA> Male 33 2
## 637 <NA> Yes <NA> Female 60 1
## 638 <NA> Yes <NA> Male 83 2
## 639 <NA> No Ireland Male 68 1
## 640 <NA> Yes <NA> Female 49 3
## 641 <NA> Yes <NA> Female 61 2
## 642 <NA> Yes <NA> Male 56 4
## 643 <NA> Yes <NA> Female 53 1
## 644 <NA> Yes <NA> Female 68 1
## 645 <NA> Yes <NA> Female 42 4
## 646 <NA> Yes <NA> Male 64 2
## 647 <NA> Yes <NA> Female 69 1
## 648 <NA> Yes <NA> Female 45 1
## 649 <NA> Yes <NA> Female 76 1
## 650 <NA> Yes <NA> Male 41 5
## 651 <NA> Yes <NA> Male 48 5
## 652 <NA> Yes <NA> Female 55 2
## 653 <NA> Yes <NA> Male 74 2
## 654 <NA> No <NA> Male 47 1
## 655 <NA> Yes <NA> Female 36 4
## 656 <NA> Yes <NA> Female 82 1
## 657 <NA> Yes <NA> Female 43 4
## 658 <NA> Yes <NA> Male 52 1
## 659 <NA> No <NA> Male 44 4
## 660 <NA> Yes <NA> Female 50 3
## 661 <NA> Yes <NA> Female 40 1
## 662 <NA> Yes <NA> Male 52 4
## 663 <NA> Yes <NA> Male 46 4
## 664 <NA> Yes <NA> Female 58 1
## 665 <NA> Yes <NA> Male 18 3
## 666 <NA> Yes <NA> Female 64 1
## 667 <NA> No Germany Female 38 1
## 668 <NA> Yes <NA> Male 45 1
## 669 <NA> Yes <NA> Female 50 2
## 670 <NA> No Zimbabwe Female 39 4
## 671 <NA> Yes <NA> Female 62 2
## 672 <NA> Yes <NA> Female 76 1
## 673 <NA> Yes <NA> Male 69 2
## 674 <NA> Yes <NA> Female 39 1
## 675 <NA> Yes <NA> Male 63 2
## 676 <NA> Yes <NA> Male 16 4
## 677 <NA> Yes <NA> Female 38 2
## 678 <NA> Yes <NA> Male 77 1
## 679 <NA> Yes <NA> Male 27 1
## 680 <NA> Yes <NA> Female 67 1
## 681 <NA> Yes <NA> Female 41 4
## 682 <NA> Yes <NA> Female 70 3
## 683 <NA> Yes <NA> Female 35 5
## 684 <NA> Yes <NA> Female 53 1
## 685 <NA> Yes <NA> Male 74 1
## 686 <NA> Yes <NA> Male 49 2
## 687 <NA> Yes <NA> Female 20 3
## 688 <NA> Yes <NA> Female 72 2
## 689 <NA> No <NA> Female 58 1
## 690 <NA> Yes <NA> Male 69 2
## 691 <NA> No Kenya Male 68 1
## 692 <NA> Yes <NA> Male 74 1
## 693 <NA> No <NA> Male 40 2
## 694 <NA> Yes <NA> Female 60 2
## 695 <NA> No India Female 62 1
## 696 <NA> Yes <NA> Female 57 1
## 697 <NA> Yes <NA> Female 28 4
## 698 <NA> Yes <NA> Female 28 3
## 699 <NA> Yes <NA> Female 38 7
## 700 <NA> Yes <NA> Male 45 1
## 701 <NA> Yes <NA> Female 81 2
## 702 <NA> Yes <NA> Female 26 2
## 703 <NA> Yes <NA> Female 53 2
## 704 Poland No Poland Female 27 2
## 705 <NA> Yes <NA> Male 32 3
## 706 <NA> Yes <NA> Female 59 1
## 707 <NA> Yes <NA> Male 61 2
## 708 <NA> Yes <NA> Female 32 3
## 709 <NA> Yes <NA> Female 40 3
## 710 <NA> Yes <NA> Female 48 3
## 711 <NA> Yes <NA> Male 38 6
## 712 <NA> Yes <NA> Female 29 3
## 713 <NA> Yes <NA> Female 43 3
## 714 <NA> Yes <NA> Male 64 2
## 715 <NA> Yes <NA> Female 48 3
## 716 <NA> Yes <NA> Male 18 4
## 717 <NA> Yes <NA> Female 65 1
## 718 <NA> Yes <NA> Male 67 2
## 719 <NA> Yes <NA> Female 80 2
## 720 <NA> No Ireland Male 75 1
## 721 <NA> Yes <NA> Male 17 3
## 722 <NA> Yes <NA> Female 63 1
## 723 <NA> Yes <NA> Male 18 3
## 724 <NA> Yes <NA> Male 82 2
## 725 <NA> Yes <NA> Female 50 1
## 726 <NA> Yes <NA> Female 50 2
## 727 <NA> Yes <NA> Male 54 2
## 728 <NA> No <NA> Male 39 4
## 729 <NA> Yes <NA> Male 52 5
## 730 <NA> Yes <NA> Male 31 4
## 731 <NA> Yes <NA> Female 51 2
## 732 <NA> Yes <NA> Female 41 3
## 733 <NA> Yes <NA> Male 73 2
## 734 <NA> Yes <NA> Male 42 2
## 735 <NA> No China Female 44 2
## 736 <NA> Yes <NA> Female 18 3
## 737 <NA> Yes <NA> Female 77 2
## 738 <NA> Yes <NA> Female 72 1
## 739 <NA> No Ireland Male 73 1
## 740 <NA> Yes <NA> Male 43 1
## 741 <NA> Yes <NA> Male 73 1
## 742 <NA> Yes <NA> Female 34 3
## 743 <NA> Yes <NA> Male 38 3
## 744 <NA> Yes <NA> Male 76 1
## 745 <NA> Yes <NA> Female 20 4
## 746 <NA> Yes <NA> Male 43 2
## 747 <NA> No Sri Lanka Female 64 3
## 748 <NA> Yes <NA> Male 37 1
## 749 <NA> Yes <NA> Female 15 3
## 750 <NA> Yes <NA> Female 40 5
## 751 <NA> Yes <NA> Female 56 2
## 752 <NA> Yes <NA> Male 55 2
## 753 <NA> Yes <NA> Female 22 4
## 754 <NA> Yes <NA> Male 38 1
## 755 <NA> Yes <NA> Male 53 2
## 756 <NA> Yes <NA> Male 52 4
## 757 <NA> Yes <NA> Female 67 2
## 758 <NA> No <NA> Male 36 4
## 759 <NA> No <NA> Female 80 1
## 760 <NA> Yes <NA> Female 50 5
## 761 <NA> Yes <NA> Female 38 4
## 762 <NA> No <NA> Female 55 8
## 763 <NA> No <NA> Male 38 4
## 764 <NA> Yes <NA> Male 84 2
## 765 <NA> Yes <NA> Female 39 4
## 766 <NA> Yes <NA> Female 52 1
## 767 <NA> Yes <NA> Male 72 2
## 768 <NA> Yes <NA> Male 76 1
## 769 <NA> Yes <NA> Female 41 4
## 770 <NA> Yes <NA> Female 36 6
## 771 <NA> Yes <NA> Male 62 2
## 772 <NA> Yes <NA> Female 82 2
## 773 <NA> Yes <NA> Female 56 2
## 774 <NA> Yes <NA> Female 27 4
## 775 <NA> Yes <NA> Male 72 1
## 776 <NA> Yes <NA> Female NA 1
## 777 <NA> Yes <NA> Female 30 2
## 778 <NA> Yes <NA> Male 62 2
## 779 <NA> Yes <NA> Male 54 3
## 780 <NA> Yes <NA> Female 41 2
## 781 <NA> Yes <NA> Male 42 3
## 782 <NA> Yes <NA> Male 16 3
## 783 <NA> Yes <NA> Male 72 2
## 784 <NA> Yes <NA> Male 31 2
## 785 <NA> No <NA> Male 47 3
## 786 <NA> No <NA> Female 32 5
## 787 <NA> Yes <NA> Female 42 5
## 788 <NA> Yes <NA> Male 51 4
## 789 <NA> Yes <NA> Female 73 2
## 790 <NA> Yes <NA> Female 39 1
## 791 <NA> Yes <NA> Male 66 2
## 792 <NA> No Germany Female 37 4
## 793 <NA> Yes <NA> Male 88 1
## 794 <NA> Yes <NA> Female 72 1
## 795 <NA> Yes <NA> Female 35 2
## 796 <NA> Yes <NA> Female 84 1
## 797 <NA> Yes <NA> Male 24 3
## 798 <NA> Yes <NA> Female 67 2
## 799 <NA> Yes <NA> Male 47 1
## 800 <NA> Yes <NA> Female 63 2
## 801 <NA> Yes <NA> Female 47 2
## 802 <NA> Yes <NA> Female NA 1
## 803 <NA> Yes <NA> Female 55 2
## 804 <NA> No <NA> Female 35 5
## 805 <NA> Yes <NA> Female 27 3
## 806 <NA> Yes <NA> Female 24 2
## 807 Poland No Poland Male 35 5
## 808 <NA> Yes <NA> Female 44 3
## 809 <NA> Yes <NA> Male 19 5
## 810 <NA> Yes <NA> Male 44 2
## 811 <NA> Yes <NA> Male 77 2
## 812 <NA> Yes <NA> Male 82 2
## 813 <NA> Yes <NA> Male 55 2
## 814 <NA> Yes <NA> Female 24 2
## 815 <NA> Yes <NA> Male 72 2
## 816 <NA> Yes <NA> Male 40 4
## 817 <NA> Yes <NA> Male 61 1
## 818 <NA> Yes <NA> Female 82 1
## 819 <NA> Yes <NA> Male 74 2
## 820 <NA> No Kenya Female 25 1
## 821 <NA> Yes <NA> Female 57 1
## 822 <NA> No <NA> Male 36 4
## 823 <NA> Yes <NA> Male 48 4
## 824 <NA> Yes <NA> Male 41 2
## 825 <NA> Yes <NA> Male 74 1
## 826 <NA> No <NA> Male 42 1
## 827 <NA> Yes <NA> Female 73 1
## 828 <NA> Yes <NA> Male 74 2
## 829 <NA> No Jamaica Female 87 1
## 830 <NA> Yes <NA> Male 65 2
## 831 <NA> Yes <NA> Female 39 3
## 832 <NA> Yes <NA> Female 29 2
## 833 <NA> Yes <NA> Female 48 2
## 834 <NA> Yes <NA> Male 50 1
## 835 <NA> Yes <NA> Female 40 4
## 836 <NA> Yes <NA> Female 56 2
## 837 <NA> Yes <NA> Male 22 6
## 838 <NA> No Kenya Male 59 1
## 839 <NA> Yes <NA> Male 57 6
## 840 <NA> Yes <NA> Male 63 2
## 841 <NA> Yes <NA> Female 41 2
## 842 <NA> Yes <NA> Female 62 2
## 843 <NA> Yes <NA> Female 27 4
## 844 <NA> Yes <NA> Male 44 4
## 845 <NA> Yes <NA> Female 90 1
## 846 <NA> Yes <NA> Male 49 5
## 847 <NA> Yes <NA> Male 82 1
## 848 <NA> No South Africa Male 47 4
## 849 <NA> Yes <NA> Female 70 3
## 850 <NA> Yes <NA> Female 81 1
## 851 <NA> No <NA> Male 37 5
## 852 <NA> Yes <NA> Female 34 5
## 853 <NA> Yes <NA> Female 38 3
## 854 <NA> Yes <NA> Male 81 1
## 855 <NA> Yes <NA> Male 20 4
## 856 <NA> Yes <NA> Male 66 1
## 857 <NA> Yes <NA> Female 60 1
## 858 <NA> Yes <NA> Male 74 3
## 859 <NA> Yes <NA> Female 31 2
## 860 <NA> Yes <NA> Female 83 2
## 861 <NA> Yes <NA> Male 67 3
## 862 <NA> Yes <NA> Female 62 3
## 863 <NA> Yes <NA> Female 85 1
## 864 <NA> Yes <NA> Female 16 3
## 865 <NA> Yes <NA> Male 23 1
## 866 <NA> Yes <NA> Male 43 4
## 867 <NA> Yes <NA> Male 15 3
## 868 <NA> Yes <NA> Male 47 5
## 869 <NA> Yes <NA> Male 41 1
## 870 <NA> Yes <NA> Male 50 4
## 871 <NA> Yes <NA> Female 17 5
## 872 <NA> Yes <NA> Female 27 2
## 873 <NA> Yes <NA> Male 81 1
## 874 <NA> No <NA> Male 35 3
## 875 <NA> Yes <NA> Male 50 1
## 876 <NA> Yes <NA> Female 71 2
## 877 <NA> Yes <NA> Male 40 2
## 878 <NA> Yes <NA> Male 30 1
## 879 <NA> Yes <NA> Female 49 1
## 880 <NA> Yes <NA> Male 80 2
## 881 <NA> Yes <NA> Male 35 4
## 882 <NA> Yes <NA> Male 52 2
## 883 <NA> Yes <NA> Male 67 1
## 884 <NA> Yes <NA> Female 32 1
## 885 <NA> No <NA> Female 50 1
## 886 <NA> Yes <NA> Female 32 4
## 887 <NA> Yes <NA> Female 64 1
## 888 <NA> Yes <NA> Female 71 1
## 889 <NA> No China Female 21 1
## 890 <NA> Yes <NA> Male 45 4
## 891 <NA> Yes <NA> Female 61 2
## 892 <NA> Yes <NA> Male 54 1
## 893 <NA> Yes <NA> Female 79 1
## 894 <NA> No India Female 59 2
## 895 <NA> Yes <NA> Male 16 5
## 896 <NA> Yes <NA> Female 47 2
## 897 <NA> No Pakistan Male 53 3
## 898 <NA> Yes <NA> Female 29 2
## 899 <NA> Yes <NA> Female 69 2
## 900 <NA> Yes <NA> Female 58 1
## 901 <NA> Yes <NA> Female 80 1
## 902 <NA> Yes <NA> Female 74 2
## 903 <NA> Yes <NA> Male 32 3
## 904 <NA> Yes <NA> Male 54 4
## 905 <NA> Yes <NA> Female 48 2
## 906 <NA> Yes <NA> Male 46 3
## 907 <NA> Yes <NA> Male 71 1
## 908 <NA> Yes <NA> Male 22 2
## 909 <NA> Yes <NA> Female 92 1
## 910 <NA> Yes <NA> Female 78 2
## 911 <NA> Yes <NA> Female 34 4
## 912 <NA> No India Female 49 4
## 913 <NA> Yes <NA> Female 33 5
## 914 <NA> Yes <NA> Male 58 3
## 915 <NA> Yes <NA> Female 51 1
## 916 <NA> Yes <NA> Male 76 1
## 917 <NA> Yes <NA> Female 36 5
## 918 <NA> Yes <NA> Female 60 2
## 919 <NA> Yes <NA> Male 56 2
## 920 <NA> Yes <NA> Female 52 4
## 921 <NA> Yes <NA> Male 29 3
## 922 <NA> Yes <NA> Female 40 4
## 923 <NA> Yes <NA> Male 75 2
## 924 <NA> Yes <NA> Female 75 1
## 925 <NA> Yes <NA> Female 74 2
## 926 <NA> Yes <NA> Male 60 2
## 927 <NA> Yes <NA> Male 67 2
## 928 <NA> Yes <NA> Female 33 3
## 929 <NA> Yes <NA> Female 77 1
## 930 <NA> Yes <NA> Female 67 2
## 931 <NA> Yes <NA> Female 80 2
## 932 <NA> Yes <NA> Female 80 2
## 933 <NA> Yes <NA> Female 44 3
## 934 <NA> Yes <NA> Female 72 1
## 935 <NA> Yes <NA> Male 22 2
## 936 <NA> Yes <NA> Male 61 2
## 937 <NA> Yes <NA> Female 81 1
## 938 <NA> Yes <NA> Female 61 2
## 939 <NA> Yes <NA> Female 65 2
## 940 <NA> Yes <NA> Female 60 2
## 941 <NA> Yes <NA> Male 83 2
## 942 <NA> Yes <NA> Female 45 4
## 943 <NA> Yes <NA> Female 87 1
## 944 <NA> Yes <NA> Male 69 2
## 945 <NA> Yes <NA> Male 52 1
## 946 <NA> Yes <NA> Male 45 5
## 947 <NA> Yes <NA> Female 85 1
## 948 <NA> Yes <NA> Female 40 1
## 949 <NA> Yes <NA> Male 51 3
## 950 <NA> Yes <NA> Male 39 4
## 951 <NA> Yes <NA> Female 63 2
## 952 <NA> Yes <NA> Male 22 1
## 953 <NA> Yes <NA> Male 52 3
## 954 <NA> Yes <NA> Female 56 3
## 955 <NA> Yes <NA> Male 31 1
## 956 <NA> Yes <NA> Female 40 1
## 957 <NA> Yes <NA> Female 58 2
## 958 <NA> Yes <NA> Female 93 1
## 959 <NA> Yes <NA> Female 53 1
## 960 <NA> Yes <NA> Female 29 5
## 961 <NA> Yes <NA> Female 43 5
## 962 <NA> Yes <NA> Female 46 2
## 963 <NA> Yes <NA> Female 43 5
## 964 <NA> Yes <NA> Female 23 3
## 965 <NA> Yes <NA> Male 58 3
## 966 <NA> Yes <NA> Male 73 1
## 967 <NA> Yes <NA> Male 70 1
## 968 <NA> Yes <NA> Female 22 2
## 969 <NA> Yes <NA> Female 65 2
## 970 <NA> Yes <NA> Male 36 4
## 971 <NA> Yes <NA> Male 27 4
## 972 <NA> No Ireland Male 79 2
## 973 <NA> Yes <NA> Female 25 1
## 974 <NA> Yes <NA> Female 34 4
## 975 <NA> Yes <NA> Male 55 1
## 976 <NA> Yes <NA> Male 38 2
## 977 <NA> Yes <NA> Female 16 5
## 978 <NA> Yes <NA> Male 46 4
## 979 <NA> Yes <NA> Female 36 3
## 980 <NA> Yes <NA> Male 64 2
## 981 <NA> Yes <NA> Female 33 1
## 982 <NA> Yes <NA> Male 39 4
## 983 <NA> Yes <NA> Female 35 5
## 984 <NA> Yes <NA> Male 52 2
## 985 <NA> Yes <NA> Female 69 3
## 986 <NA> Yes <NA> Male 85 2
## 987 <NA> Yes <NA> Male 29 2
## 988 <NA> Yes <NA> Female 86 1
## 989 <NA> Yes <NA> Male 89 1
## 990 <NA> Yes <NA> Female 67 1
## 991 <NA> Yes <NA> Female 45 4
## 992 <NA> Yes <NA> Female 65 2
## 993 <NA> Yes <NA> Female 36 3
## 994 <NA> Yes <NA> Male 71 2
## 995 <NA> Yes <NA> Female 88 1
## 996 <NA> No Poland Male 48 4
## 997 <NA> Yes <NA> Male 55 2
## 998 <NA> Yes <NA> Female 73 1
## 999 India No India Male 37 3
## 1000 <NA> Yes <NA> Male 22 3
## 1001 <NA> Yes <NA> Female 49 2
## 1002 <NA> Yes <NA> Female 50 2
## 1003 <NA> No Pakistan Male 41 4
## 1004 <NA> Yes <NA> Female 27 2
## 1005 <NA> Yes <NA> Female 27 3
## 1006 <NA> Yes <NA> Male 59 3
## 1007 <NA> No Jamaica Male 84 1
## 1008 <NA> Yes <NA> Male 24 2
## 1009 <NA> Yes <NA> Female 35 5
## 1010 <NA> Yes <NA> Female 45 1
## 1011 <NA> Yes <NA> Female 22 1
## 1012 <NA> Yes <NA> Female 30 4
## 1013 <NA> Yes <NA> Male 33 4
## 1014 <NA> Yes <NA> Female 45 3
## 1015 <NA> Yes <NA> Male 49 3
## 1016 <NA> Yes <NA> Female 41 3
## 1017 <NA> No Ireland Female 75 1
## 1018 <NA> Yes <NA> Male 85 1
## 1019 <NA> Yes <NA> Female 41 5
## 1020 <NA> Yes <NA> Female 79 1
## 1021 <NA> Yes <NA> Female 25 4
## 1022 <NA> Yes <NA> Male 74 1
## 1023 <NA> Yes <NA> Female 57 1
## 1024 <NA> Yes <NA> Female 51 2
## 1025 <NA> No India Male 39 4
## 1026 <NA> No <NA> Female 58 2
## 1027 <NA> Yes <NA> Female 63 2
## 1028 <NA> Yes <NA> Female 64 2
## 1029 <NA> No <NA> Female 29 2
## 1030 <NA> Yes <NA> Female 16 4
## 1031 <NA> Yes <NA> Male 84 1
## 1032 <NA> Yes <NA> Female 47 3
## 1033 <NA> No <NA> Female 66 1
## 1034 <NA> Yes <NA> Male 66 2
## 1035 <NA> Yes <NA> Female 30 5
## 1036 <NA> Yes <NA> Female 58 2
## 1037 <NA> Yes <NA> Male 29 2
## 1038 <NA> Yes <NA> Male 72 1
## 1039 <NA> Yes <NA> Female 40 3
## 1040 <NA> Yes <NA> Male 45 1
## 1041 <NA> Yes <NA> Male 24 3
## 1042 <NA> Yes <NA> Male 55 1
## 1043 <NA> Yes <NA> Male 52 2
## 1044 <NA> Yes <NA> Male 84 1
## 1045 <NA> Yes <NA> Female 22 1
## 1046 <NA> No Pakistan Female 56 4
## 1047 <NA> Yes <NA> Female 23 3
## 1048 <NA> Yes <NA> Female 44 3
## 1049 <NA> Yes <NA> Female 39 1
## 1050 <NA> Yes <NA> Male 57 1
## 1051 <NA> Yes <NA> Female 35 5
## 1052 <NA> Yes <NA> Female 29 3
## 1053 <NA> Yes <NA> Female 81 1
## 1054 <NA> Yes <NA> Male 70 2
## 1055 <NA> Yes <NA> Female 34 1
## 1056 <NA> Yes <NA> Male 78 1
## 1057 <NA> Yes <NA> Female 74 2
## 1058 <NA> No India Female 52 5
## 1059 <NA> Yes <NA> Male 34 2
## 1060 <NA> Yes <NA> Female 63 1
## 1061 <NA> Yes <NA> Female 57 1
## 1062 <NA> Yes <NA> Female NA 2
## 1063 <NA> Yes <NA> Female 69 1
## 1064 <NA> No <NA> Female 38 2
## 1065 Poland No Poland Male 25 4
## 1066 <NA> Yes <NA> Male 58 1
## 1067 <NA> Yes <NA> Female 31 3
## 1068 <NA> Yes <NA> Male 46 1
## 1069 <NA> Yes <NA> Male 54 4
## 1070 <NA> Yes <NA> Female 44 4
## 1071 <NA> Yes <NA> Male 21 3
## 1072 <NA> Yes <NA> Male 29 2
## 1073 <NA> No <NA> Female 66 2
## 1074 <NA> Yes <NA> Male 66 2
## 1075 <NA> Yes <NA> Female 32 1
## 1076 <NA> Yes <NA> Male 48 2
## 1077 <NA> Yes <NA> Female 71 1
## 1078 <NA> Yes <NA> Female 62 2
## 1079 <NA> Yes <NA> Female 67 1
## 1080 <NA> No Kenya Male 61 3
## 1081 <NA> Yes <NA> Male 60 1
## 1082 <NA> No India Female 55 2
## 1083 <NA> Yes <NA> Female 64 2
## 1084 <NA> Yes <NA> Male 42 4
## 1085 <NA> Yes <NA> Male 31 2
## 1086 <NA> No Ireland Female 70 2
## 1087 <NA> Yes <NA> Female 48 1
## 1088 <NA> Yes <NA> Female 39 1
## 1089 <NA> Yes <NA> Male 41 4
## 1090 <NA> No Pakistan Male 34 4
## 1091 <NA> Yes <NA> Female 36 4
## 1092 <NA> No <NA> Male 35 3
## 1093 <NA> Yes <NA> Male 30 1
## 1094 <NA> Yes <NA> Male 72 2
## 1095 <NA> Yes <NA> Male 68 2
## 1096 <NA> Yes <NA> Female 47 2
## 1097 <NA> Yes <NA> Female 82 1
## 1098 <NA> Yes <NA> Male 60 2
## 1099 <NA> Yes <NA> Female 80 2
## 1100 <NA> Yes <NA> Female 38 1
## 1101 <NA> Yes <NA> Male 60 3
## 1102 <NA> Yes <NA> Male 74 1
## 1103 <NA> Yes <NA> Female 57 2
## 1104 <NA> Yes <NA> Female 67 1
## 1105 <NA> Yes <NA> Female 70 1
## 1106 <NA> Yes <NA> Female 32 5
## 1107 <NA> Yes <NA> Female 36 1
## 1108 <NA> Yes <NA> Female 18 1
## 1109 <NA> No Iran, Islamic Republic of Male 40 3
## 1110 <NA> Yes <NA> Male 44 2
## 1111 <NA> Yes <NA> Male 47 1
## 1112 <NA> Yes <NA> Male 84 1
## 1113 <NA> No Zimbabwe Female 33 4
## 1114 <NA> Yes <NA> Male 78 2
## 1115 <NA> Yes <NA> Female 70 2
## 1116 <NA> No <NA> Female 72 1
## 1117 <NA> Yes <NA> Female 19 2
## 1118 <NA> Yes <NA> Male 44 1
## 1119 <NA> Yes <NA> Male 68 1
## 1120 <NA> Yes <NA> Male 67 2
## 1121 <NA> Yes <NA> Male 44 4
## 1122 <NA> Yes <NA> Male 38 1
## 1123 <NA> Yes <NA> Female 33 4
## 1124 <NA> Yes <NA> Male 20 4
## 1125 <NA> Yes <NA> Female 84 1
## 1126 <NA> No South Africa Female 28 4
## 1127 <NA> Yes <NA> Male 33 2
## 1128 <NA> Yes <NA> Male 67 3
## 1129 <NA> Yes <NA> Male NA 1
## 1130 <NA> Yes <NA> Male 82 1
## 1131 Spain No Pakistan Female 20 8
## 1132 <NA> Yes <NA> Male 58 3
## 1133 <NA> Yes <NA> Female 43 4
## 1134 <NA> Yes <NA> Male 44 2
## 1135 <NA> Yes <NA> Female NA 1
## 1136 <NA> Yes <NA> Female 58 3
## 1137 <NA> Yes <NA> Female 36 4
## 1138 <NA> Yes <NA> Male 42 2
## 1139 <NA> Yes <NA> Female 47 1
## 1140 <NA> Yes <NA> Male 27 2
## 1141 <NA> Yes <NA> Male 68 1
## 1142 <NA> No <NA> Male 56 1
## 1143 <NA> Yes <NA> Male 64 2
## 1144 <NA> Yes <NA> Female 71 2
## 1145 <NA> Yes <NA> Female 69 2
## 1146 <NA> Yes <NA> Male 43 4
## 1147 <NA> Yes <NA> Male 77 1
## 1148 <NA> No Jamaica Male 84 1
## 1149 Ireland No Ireland Female 53 2
## 1150 <NA> No <NA> Female 39 5
## 1151 <NA> Yes <NA> Female 73 1
## 1152 <NA> Yes <NA> Male 64 1
## 1153 <NA> Yes <NA> Female 33 1
## 1154 <NA> Yes <NA> Male 45 4
## 1155 <NA> Yes <NA> Female 66 2
## 1156 <NA> Yes <NA> Male 50 4
## 1157 <NA> Yes <NA> Male 58 2
## 1158 <NA> Yes <NA> Female 22 1
## 1159 <NA> No <NA> Female 33 1
## 1160 <NA> Yes <NA> Male 34 4
## 1161 <NA> Yes <NA> Male 74 2
## 1162 Poland No Poland Female NA 5
## 1163 <NA> Yes <NA> Female 79 1
## 1164 <NA> Yes <NA> Female 79 1
## 1165 <NA> Yes <NA> Female 44 3
## 1166 <NA> Yes <NA> Female 81 1
## 1167 <NA> Yes <NA> Female 57 2
## 1168 <NA> Yes <NA> Male 55 5
## 1169 <NA> No <NA> Male 66 1
## 1170 <NA> Yes <NA> Female 80 2
## 1171 <NA> Yes <NA> Female 39 3
## 1172 <NA> Yes <NA> Male 78 2
## 1173 <NA> Yes <NA> Female 37 1
## 1174 Spain No <NA> Female 38 3
## 1175 <NA> Yes <NA> Male 28 2
## 1176 <NA> Yes <NA> Male 23 2
## 1177 <NA> Yes <NA> Male 66 3
## 1178 <NA> Yes <NA> Female 65 1
## 1179 <NA> Yes <NA> Female 22 1
## 1180 <NA> Yes <NA> Male 50 5
## 1181 <NA> Yes <NA> Female 34 4
## 1182 <NA> Yes <NA> Female 50 2
## 1183 <NA> Yes <NA> Male 78 1
## 1184 <NA> Yes <NA> Male 62 2
## 1185 <NA> Yes <NA> Female 85 1
## 1186 <NA> Yes <NA> Male 42 4
## 1187 <NA> Yes <NA> Female 43 2
## 1188 <NA> Yes <NA> Female 68 1
## 1189 <NA> Yes <NA> Male 54 1
## 1190 <NA> Yes <NA> Female 30 2
## 1191 <NA> Yes <NA> Female 33 4
## 1192 <NA> Yes <NA> Female 51 2
## 1193 <NA> Yes <NA> Female 70 1
## 1194 <NA> Yes <NA> Male 59 2
## 1195 <NA> Yes <NA> Female 29 3
## 1196 <NA> Yes <NA> Female 69 1
## 1197 <NA> No <NA> Male 87 2
## 1198 India No India Male 32 3
## 1199 <NA> Yes <NA> Male 51 4
## 1200 <NA> Yes <NA> Female 68 2
## 1201 <NA> Yes <NA> Female 37 4
## 1202 <NA> Yes <NA> Male 69 1
## 1203 <NA> Yes <NA> Male 64 2
## 1204 <NA> Yes <NA> Female 77 1
## 1205 <NA> No <NA> Female 58 2
## 1206 <NA> Yes <NA> Female 54 1
## 1207 <NA> Yes <NA> Female 71 1
## 1208 <NA> No Zimbabwe Male 34 1
## 1209 <NA> Yes <NA> Male 63 2
## 1210 <NA> No <NA> Female 74 2
## 1211 <NA> No Zimbabwe Male 36 4
## 1212 <NA> Yes <NA> Female 64 2
## 1213 <NA> Yes <NA> Male 29 2
## 1214 <NA> Yes <NA> Male 29 1
## 1215 <NA> Yes <NA> Male 28 1
## 1216 <NA> Yes <NA> Female 78 1
## 1217 <NA> Yes <NA> Male 77 1
## 1218 <NA> Yes <NA> Male 76 1
## 1219 <NA> Yes <NA> Female 34 2
## 1220 <NA> Yes <NA> Female 46 5
## 1221 <NA> Yes <NA> Female 21 3
## 1222 <NA> No <NA> Male 44 5
## 1223 <NA> Yes <NA> Female 44 4
## 1224 Poland No Poland Male 39 4
## 1225 <NA> Yes <NA> Male 74 3
## 1226 <NA> Yes <NA> Female 51 3
## 1227 <NA> Yes <NA> Male 67 2
## 1228 <NA> Yes <NA> Female 50 1
## 1229 <NA> No Pakistan Female 69 3
## 1230 <NA> Yes <NA> Male 26 3
## 1231 <NA> Yes <NA> Female 27 1
## 1232 <NA> Yes <NA> Female 55 1
## 1233 <NA> Yes <NA> Female 37 3
## 1234 <NA> Yes <NA> Male 29 4
## 1235 <NA> Yes <NA> Female 54 3
## 1236 <NA> Yes <NA> Female 86 2
## 1237 Poland No Poland Male 52 1
## 1238 <NA> No India Male 86 2
## 1239 <NA> Yes <NA> Male 60 2
## 1240 <NA> Yes <NA> Male 60 1
## 1241 <NA> Yes <NA> Male 65 2
## 1242 <NA> Yes <NA> Female 51 2
## 1243 <NA> Yes <NA> Male 68 1
## 1244 <NA> Yes <NA> Female 35 4
## 1245 <NA> Yes <NA> Male 17 3
## 1246 <NA> Yes <NA> Male 41 1
## 1247 <NA> Yes <NA> Male 68 2
## 1248 <NA> No Jamaica Female 31 3
## 1249 <NA> Yes <NA> Female 52 2
## 1250 <NA> Yes <NA> Female 58 2
## 1251 <NA> Yes <NA> Female 61 2
## 1252 <NA> Yes <NA> Male 45 1
## 1253 <NA> Yes <NA> Female 34 4
## 1254 <NA> Yes <NA> Male 37 2
## 1255 <NA> No India Female 35 2
## 1256 <NA> Yes <NA> Male 54 1
## 1257 <NA> Yes <NA> Male 38 3
## 1258 <NA> Yes <NA> Female 40 4
## 1259 <NA> Yes <NA> Male 70 2
## 1260 India No India Female 64 1
## 1261 <NA> No South Africa Male 54 2
## 1262 <NA> Yes <NA> Female 29 3
## 1263 <NA> Yes <NA> Male 16 3
## 1264 <NA> Yes <NA> Male 27 1
## 1265 <NA> Yes <NA> Male 76 1
## 1266 <NA> Yes <NA> Male 51 1
## 1267 <NA> Yes <NA> Female 69 1
## 1268 <NA> Yes <NA> Male 48 2
## 1269 <NA> Yes <NA> Male 35 4
## 1270 <NA> Yes <NA> Male 40 7
## 1271 <NA> Yes <NA> Female 78 2
## 1272 <NA> Yes <NA> Female 24 3
## 1273 <NA> Yes <NA> Male 64 2
## 1274 <NA> Yes <NA> Female 72 1
## 1275 <NA> Yes <NA> Female 26 4
## 1276 <NA> Yes <NA> Male 81 1
## 1277 <NA> Yes <NA> Female 31 2
## 1278 <NA> Yes <NA> Male 62 2
## 1279 <NA> No <NA> Male 23 2
## 1280 <NA> Yes <NA> Male 70 4
## 1281 <NA> Yes <NA> Male 51 5
## 1282 <NA> Yes <NA> Female 36 3
## 1283 <NA> Yes <NA> Female 41 3
## 1284 <NA> No <NA> Female NA 1
## 1285 <NA> Yes <NA> Female 32 1
## 1286 <NA> No <NA> Female 36 3
## 1287 <NA> Yes <NA> Female 59 1
## 1288 <NA> No <NA> Female 23 1
## 1289 <NA> Yes <NA> Male 40 1
## 1290 <NA> Yes <NA> Male 40 2
## 1291 <NA> Yes <NA> Male 89 1
## 1292 <NA> Yes <NA> Male 30 2
## 1293 <NA> Yes <NA> Female 19 1
## 1294 <NA> Yes <NA> Female 25 2
## 1295 <NA> Yes <NA> Female 72 1
## 1296 <NA> Yes <NA> Male 92 2
## 1297 Spain No <NA> Male 28 1
## 1298 <NA> Yes <NA> Female 30 4
## 1299 <NA> Yes <NA> Female 64 2
## 1300 <NA> Yes <NA> Male 65 1
## 1301 <NA> Yes <NA> Female 34 3
## 1302 <NA> Yes <NA> Female 66 1
## 1303 <NA> Yes <NA> Female 79 1
## 1304 <NA> Yes <NA> Female 42 2
## 1305 <NA> Yes <NA> Female 49 3
## 1306 <NA> Yes <NA> Female 22 2
## 1307 <NA> Yes <NA> Female 58 2
## 1308 <NA> No <NA> Female 40 4
## 1309 <NA> No Zimbabwe Male 50 4
## 1310 <NA> No Zimbabwe Male 34 2
## 1311 <NA> Yes <NA> Female 91 1
## 1312 <NA> Yes <NA> Female 54 4
## 1313 <NA> Yes <NA> Female 29 5
## 1314 <NA> Yes <NA> Male 70 2
## 1315 <NA> Yes <NA> Female 64 1
## 1316 Ireland No Ireland Female 56 1
## 1317 <NA> Yes <NA> Female 41 3
## 1318 <NA> Yes <NA> Female 44 1
## 1319 <NA> Yes <NA> Female 87 1
## 1320 <NA> Yes <NA> Male 42 5
## 1321 <NA> Yes <NA> Male 72 2
## 1322 <NA> Yes <NA> Male 72 1
## 1323 <NA> Yes <NA> Female 43 1
## 1324 <NA> Yes <NA> Female 61 2
## 1325 <NA> No <NA> Female 46 4
## 1326 <NA> Yes <NA> Female 58 2
## 1327 <NA> Yes <NA> Male 18 1
## 1328 <NA> Yes <NA> Male 55 3
## 1329 <NA> Yes <NA> Female 70 2
## 1330 <NA> Yes <NA> Male 49 5
## 1331 Ireland No Ireland Male 71 2
## 1332 <NA> Yes <NA> Female 30 3
## 1333 <NA> Yes <NA> Female 80 1
## 1334 <NA> Yes <NA> Male 58 3
## 1335 <NA> Yes <NA> Male 69 3
## 1336 <NA> No <NA> Female 55 2
## 1337 <NA> Yes <NA> Female 64 1
## 1338 <NA> No Jamaica Male 75 2
## 1339 <NA> Yes <NA> Male 32 1
## 1340 <NA> Yes <NA> Male 59 2
## 1341 <NA> Yes <NA> Female 62 1
## 1342 <NA> Yes <NA> Male NA 1
## 1343 <NA> No South Africa Female 88 1
## 1344 <NA> Yes <NA> Male 81 4
## 1345 <NA> Yes <NA> Male 78 1
## 1346 <NA> No <NA> Female 36 4
## 1347 <NA> Yes <NA> Female 51 1
## 1348 <NA> Yes <NA> Male 78 2
## 1349 <NA> Yes <NA> Female 34 3
## 1350 <NA> Yes <NA> Female 26 3
## 1351 <NA> Yes <NA> Female 86 1
## 1352 <NA> Yes <NA> Male 86 2
## 1353 <NA> Yes <NA> Male 73 2
## 1354 <NA> Yes <NA> Male 37 5
## 1355 <NA> Yes <NA> Male 29 4
## 1356 <NA> Yes <NA> Female 66 1
## 1357 <NA> Yes <NA> Female 68 2
## 1358 <NA> Yes <NA> Female 54 2
## 1359 <NA> Yes <NA> Female 27 4
## 1360 <NA> Yes <NA> Female 75 1
## 1361 <NA> Yes <NA> Male 62 1
## 1362 <NA> Yes <NA> Female 65 1
## 1363 <NA> Yes <NA> Female 47 2
## 1364 <NA> Yes <NA> Female 60 2
## 1365 <NA> Yes <NA> Female 40 5
## 1366 <NA> Yes <NA> Female 36 4
## 1367 <NA> Yes <NA> Male 39 2
## 1368 <NA> Yes <NA> Female 60 2
## 1369 <NA> Yes <NA> Female 71 2
## 1370 <NA> Yes <NA> Male 24 4
## 1371 <NA> Yes <NA> Female 66 1
## 1372 <NA> Yes <NA> Male 34 1
## 1373 <NA> No India Female 64 1
## 1374 <NA> Yes <NA> Male 25 4
## 1375 <NA> Yes <NA> Female 44 2
## 1376 <NA> Yes <NA> Male 74 2
## 1377 <NA> Yes <NA> Female 28 4
## 1378 <NA> Yes <NA> Female 34 4
## 1379 <NA> Yes <NA> Male 61 3
## 1380 <NA> Yes <NA> Male 24 1
## 1381 <NA> No Ireland Male 41 3
## 1382 <NA> No Germany Female 57 1
## 1383 <NA> Yes <NA> Female 17 4
## 1384 <NA> Yes <NA> Male 74 2
## 1385 <NA> Yes <NA> Female 67 1
## 1386 <NA> Yes <NA> Female 22 1
## 1387 <NA> Yes <NA> Female 42 1
## 1388 <NA> Yes <NA> Male 42 4
## 1389 <NA> Yes <NA> Female 70 1
## 1390 <NA> Yes <NA> Female 54 2
## 1391 <NA> Yes <NA> Female 63 2
## 1392 <NA> Yes <NA> Male 74 2
## 1393 <NA> Yes <NA> Female 64 2
## 1394 <NA> Yes <NA> Male 18 1
## 1395 <NA> Yes <NA> Female 25 2
## 1396 <NA> Yes <NA> Female 69 2
## 1397 <NA> Yes <NA> Male 38 4
## 1398 <NA> Yes <NA> Female 44 4
## 1399 <NA> Yes <NA> Male 17 4
## 1400 <NA> No India Male 39 4
## 1401 <NA> Yes <NA> Male 77 2
## 1402 <NA> Yes <NA> Female 60 4
## 1403 <NA> Yes <NA> Female 42 3
## 1404 <NA> Yes <NA> Male 40 1
## 1405 <NA> Yes <NA> Female 44 2
## 1406 <NA> Yes <NA> Male 46 1
## 1407 <NA> Yes <NA> Female 80 1
## 1408 <NA> Yes <NA> Male 57 2
## 1409 <NA> Yes <NA> Male 63 1
## 1410 <NA> Yes <NA> Male 68 1
## 1411 <NA> Yes <NA> Female 69 1
## 1412 <NA> Yes <NA> Female 71 1
## 1413 <NA> Yes <NA> Female 41 2
## 1414 <NA> Yes <NA> Female 51 1
## 1415 <NA> Yes <NA> Female 68 1
## 1416 <NA> Yes <NA> Male 62 1
## 1417 <NA> No Pakistan Male 42 5
## 1418 <NA> Yes <NA> Female 80 1
## 1419 <NA> Yes <NA> Male 56 3
## 1420 <NA> Yes <NA> Female 75 2
## 1421 <NA> No <NA> Male 57 1
## 1422 <NA> Yes <NA> Male 44 2
## 1423 <NA> Yes <NA> Female 53 3
## 1424 <NA> No Poland Female 32 2
## 1425 <NA> Yes <NA> Male 58 1
## 1426 <NA> Yes <NA> Male 49 4
## 1427 <NA> Yes <NA> Female 59 1
## 1428 <NA> Yes <NA> Female 35 1
## 1429 <NA> Yes <NA> Male 69 2
## 1430 <NA> Yes <NA> Female 67 2
## 1431 <NA> Yes <NA> Male 87 1
## 1432 <NA> Yes <NA> Male 67 2
## 1433 <NA> No India Male 39 4
## 1434 <NA> Yes <NA> Male 16 4
## 1435 Spain No <NA> Male 74 2
## 1436 <NA> Yes <NA> Female 73 1
## 1437 <NA> No India Male 26 1
## 1438 <NA> Yes <NA> Male 52 2
## 1439 <NA> Yes <NA> Female 83 1
## 1440 <NA> Yes <NA> Male 31 4
## 1441 <NA> Yes <NA> Male 62 2
## 1442 <NA> Yes <NA> Female 40 2
## 1443 <NA> Yes <NA> Male 70 2
## 1444 <NA> Yes <NA> Female 59 1
## 1445 <NA> Yes <NA> Male 28 6
## 1446 <NA> Yes <NA> Male 23 2
## 1447 <NA> Yes <NA> Female 51 4
## 1448 <NA> Yes <NA> Male 18 4
## 1449 <NA> Yes <NA> Female 41 1
## 1450 <NA> Yes <NA> Female 44 1
## 1451 <NA> Yes <NA> Male 71 1
## 1452 <NA> Yes <NA> Female 84 1
## 1453 <NA> Yes <NA> Male 71 1
## 1454 <NA> Yes <NA> Male 23 4
## 1455 <NA> Yes <NA> Male 86 1
## 1456 <NA> Yes <NA> Female 53 2
## 1457 <NA> Yes <NA> Female 62 1
## 1458 <NA> Yes <NA> Male 48 2
## 1459 <NA> Yes <NA> Male 46 3
## 1460 <NA> Yes <NA> Female 58 2
## 1461 <NA> Yes <NA> Female 82 1
## 1462 <NA> Yes <NA> Female 38 4
## 1463 Poland No Poland Female 40 4
## 1464 <NA> Yes <NA> Female 78 2
## 1465 <NA> No India Male NA 4
## 1466 Poland No Poland Female 47 2
## 1467 <NA> Yes <NA> Female 80 1
## 1468 <NA> Yes <NA> Male 48 5
## 1469 <NA> Yes <NA> Female 81 2
## 1470 <NA> Yes <NA> Male 76 2
## 1471 <NA> Yes <NA> Male 80 2
## 1472 <NA> Yes <NA> Male 67 2
## 1473 <NA> Yes <NA> Female 48 4
## 1474 <NA> No Ireland Male 62 1
## 1475 <NA> No Poland Female 30 3
## 1476 <NA> No <NA> Male 33 2
## 1477 <NA> No <NA> Female 53 2
## 1478 <NA> Yes <NA> Female 54 3
## 1479 <NA> Yes <NA> Male 46 1
## 1480 <NA> Yes <NA> Male 64 1
## 1481 <NA> Yes <NA> Female 51 3
## 1482 <NA> Yes <NA> Female 67 2
## 1483 <NA> Yes <NA> Male 58 3
## 1484 <NA> Yes <NA> Male 69 3
## 1485 <NA> Yes <NA> Female 50 2
## 1486 <NA> Yes <NA> Female 57 2
## 1487 <NA> Yes <NA> Female 44 2
## 1488 <NA> Yes <NA> Male 77 1
## 1489 <NA> No Poland Female 44 4
## 1490 <NA> Yes <NA> Female 66 1
## 1491 <NA> Yes <NA> Female 71 2
## 1492 <NA> Yes <NA> Male 41 5
## 1493 <NA> Yes <NA> Male 71 2
## 1494 <NA> Yes <NA> Female 61 2
## 1495 <NA> Yes <NA> Female 32 2
## 1496 <NA> Yes <NA> Male 54 1
## 1497 <NA> Yes <NA> Male 61 2
## 1498 <NA> Yes <NA> Male 58 1
## 1499 <NA> Yes <NA> Female 17 2
## 1500 <NA> Yes <NA> Female 54 1
## 1501 <NA> Yes <NA> Female 71 1
## 1502 <NA> Yes <NA> Male 67 2
## 1503 Ireland No Ireland Male 70 2
## 1504 <NA> Yes <NA> Female 65 2
## 1505 <NA> Yes <NA> Female 48 1
## 1506 <NA> Yes <NA> Female 54 2
## 1507 <NA> No Jamaica Male 76 1
## 1508 <NA> Yes <NA> Female 63 1
## 1509 <NA> Yes <NA> Male 25 6
## 1510 Poland No Poland Female NA 1
## 1511 <NA> No <NA> Female 58 2
## 1512 <NA> No Kenya Female 56 5
## 1513 <NA> Yes <NA> Female 56 1
## 1514 <NA> No <NA> Female 50 4
## 1515 <NA> Yes <NA> Male 35 3
## 1516 <NA> Yes <NA> Female 82 1
## 1517 <NA> Yes <NA> Female 28 2
## 1518 <NA> Yes <NA> Female 33 3
## 1519 <NA> Yes <NA> Female 64 1
## 1520 <NA> Yes <NA> Female 54 3
## 1521 <NA> Yes <NA> Female 53 2
## 1522 <NA> No <NA> Male 61 2
## 1523 <NA> No <NA> Female 41 1
## 1524 <NA> Yes <NA> Male 55 2
## 1525 <NA> Yes <NA> Female 53 3
## 1526 <NA> No India Female 37 5
## 1527 <NA> Yes <NA> Male 18 4
## 1528 <NA> Yes <NA> Female 81 1
## 1529 <NA> Yes <NA> Male 75 2
## 1530 <NA> Yes <NA> Female 77 2
## 1531 <NA> No South Africa Female 46 3
## 1532 <NA> Yes <NA> Male 23 2
## 1533 <NA> No <NA> Male 47 5
## 1534 <NA> Yes <NA> Male 65 2
## 1535 <NA> No <NA> Female 36 4
## 1536 <NA> Yes <NA> Male 66 1
## 1537 <NA> Yes <NA> Male 61 2
## 1538 <NA> No India Male 23 3
## 1539 Poland No Poland Female 32 2
## 1540 <NA> Yes <NA> Male 63 2
## 1541 <NA> Yes <NA> Female 58 2
## 1542 <NA> Yes <NA> Male 59 2
## 1543 <NA> Yes <NA> Female 39 1
## 1544 <NA> Yes <NA> Male 70 2
## 1545 <NA> Yes <NA> Female 61 2
## 1546 <NA> Yes <NA> Female 19 3
## 1547 <NA> Yes <NA> Female 67 1
## 1548 <NA> Yes <NA> Female 81 1
## 1549 <NA> Yes <NA> Male 27 3
## 1550 <NA> Yes <NA> Female 63 2
## 1551 <NA> No Pakistan Male 43 1
## 1552 <NA> Yes <NA> Female 38 1
## 1553 <NA> Yes <NA> Male 71 2
## 1554 <NA> Yes <NA> Female 20 2
## 1555 <NA> Yes <NA> Female 71 1
## 1556 <NA> Yes <NA> Male 73 2
## 1557 Poland No Poland Female 32 5
## 1558 <NA> Yes <NA> Male 73 1
## 1559 <NA> Yes <NA> Female 83 2
## 1560 <NA> Yes <NA> Female 49 4
## 1561 <NA> Yes <NA> Female 56 2
## 1562 <NA> Yes <NA> Male 47 1
## 1563 <NA> Yes <NA> Male 82 2
## 1564 <NA> Yes <NA> Male 58 1
## 1565 <NA> Yes <NA> Male 52 3
## 1566 <NA> No Sri Lanka Female 60 2
## 1567 <NA> Yes <NA> Female 65 1
## 1568 <NA> Yes <NA> Male 51 2
## 1569 <NA> Yes <NA> Male 58 1
## 1570 India No India Male 30 1
## 1571 <NA> Yes <NA> Female 65 2
## 1572 <NA> Yes <NA> Male 50 1
## 1573 <NA> Yes <NA> Female 44 5
## 1574 <NA> Yes <NA> Female 80 1
## 1575 <NA> Yes <NA> Female 59 1
## 1576 <NA> Yes <NA> Male 51 2
## 1577 <NA> Yes <NA> Male 66 1
## 1578 <NA> Yes <NA> Male 40 4
## 1579 <NA> Yes <NA> Male 65 1
## 1580 <NA> No Pakistan Female 40 8
## 1581 <NA> Yes <NA> Male 38 4
## 1582 <NA> Yes <NA> Female 51 2
## 1583 <NA> Yes <NA> Female 21 5
## 1584 <NA> Yes <NA> Female 52 4
## 1585 <NA> No Ireland Male 81 2
## 1586 <NA> Yes <NA> Female 43 3
## 1587 <NA> Yes <NA> Female 24 3
## 1588 <NA> Yes <NA> Female 69 1
## 1589 <NA> Yes <NA> Female 15 4
## 1590 <NA> Yes <NA> Female 54 1
## 1591 <NA> Yes <NA> Female 43 4
## 1592 <NA> Yes <NA> Female 66 2
## 1593 <NA> Yes <NA> Male 78 2
## 1594 <NA> No India Male 22 4
## 1595 <NA> Yes <NA> Male 24 1
## 1596 <NA> Yes <NA> Female 48 1
## 1597 <NA> Yes <NA> Male 48 6
## 1598 <NA> Yes <NA> Female 78 1
## 1599 <NA> Yes <NA> Male 69 2
## 1600 <NA> Yes <NA> Female 45 2
## 1601 <NA> No <NA> Female 40 4
## 1602 <NA> Yes <NA> Male 67 2
## 1603 <NA> Yes <NA> Male 47 4
## 1604 <NA> Yes <NA> Male 48 2
## 1605 <NA> Yes <NA> Female 58 2
## 1606 <NA> Yes <NA> Male 66 1
## 1607 <NA> Yes <NA> Male 78 2
## 1608 <NA> No <NA> Male 56 2
## 1609 <NA> Yes <NA> Female 50 1
## 1610 <NA> Yes <NA> Male 63 2
## 1611 <NA> Yes <NA> Female 75 2
## 1612 <NA> Yes <NA> Female 23 2
## 1613 <NA> No <NA> Male 41 5
## 1614 <NA> Yes <NA> Male 57 2
## 1615 <NA> Yes <NA> Female NA 2
## 1616 <NA> Yes <NA> Female 47 1
## 1617 <NA> Yes <NA> Male 29 2
## 1618 <NA> Yes <NA> Male 18 4
## 1619 <NA> Yes <NA> Female 91 1
## 1620 <NA> Yes <NA> Female 29 4
## 1621 <NA> Yes <NA> Male 77 1
## 1622 <NA> Yes <NA> Female 88 1
## 1623 <NA> Yes <NA> Male 64 4
## 1624 <NA> Yes <NA> Male 68 1
## 1625 <NA> Yes <NA> Male 50 2
## 1626 <NA> Yes <NA> Female 78 1
## 1627 <NA> Yes <NA> Female 39 4
## 1628 <NA> Yes <NA> Male 74 1
## 1629 <NA> Yes <NA> Male 26 5
## 1630 <NA> No <NA> Female 34 5
## 1631 <NA> Yes <NA> Female 61 2
## 1632 <NA> Yes <NA> Female 34 5
## 1633 <NA> Yes <NA> Male 77 2
## 1634 <NA> Yes <NA> Female 31 3
## 1635 <NA> Yes <NA> Male 62 2
## 1636 <NA> No <NA> Female 35 3
## 1637 <NA> Yes <NA> Female 29 2
## 1638 <NA> Yes <NA> Female 42 4
## 1639 <NA> Yes <NA> Male 33 4
## 1640 <NA> Yes <NA> Male 27 1
## 1641 India No India Male 38 3
## 1642 <NA> Yes <NA> Female 56 2
## 1643 <NA> Yes <NA> Female 47 2
## 1644 <NA> Yes <NA> Female 30 4
## 1645 <NA> Yes <NA> Male 53 2
## 1646 <NA> Yes <NA> Female 57 2
## 1647 <NA> Yes <NA> Male 74 2
## 1648 <NA> Yes <NA> Male 70 2
## 1649 <NA> Yes <NA> Female 55 2
## 1650 <NA> Yes <NA> Male 73 2
## 1651 <NA> Yes <NA> Female 63 2
## 1652 <NA> Yes <NA> Male 48 4
## 1653 <NA> Yes <NA> Female 54 3
## 1654 <NA> Yes <NA> Female 68 1
## 1655 <NA> Yes <NA> Male 47 4
## 1656 <NA> Yes <NA> Female 53 2
## 1657 <NA> Yes <NA> Female 75 2
## 1658 <NA> Yes <NA> Male 80 1
## 1659 <NA> Yes <NA> Female 57 2
## 1660 <NA> Yes <NA> Female 34 5
## 1661 <NA> Yes <NA> Male 82 2
## 1662 <NA> Yes <NA> Female 62 1
## 1663 <NA> Yes <NA> Female 56 3
## 1664 <NA> Yes <NA> Female 80 1
## 1665 <NA> Yes <NA> Female 61 1
## 1666 <NA> No Germany Female 22 4
## 1667 <NA> Yes <NA> Male 30 4
## 1668 <NA> Yes <NA> Male 67 1
## 1669 <NA> Yes <NA> Female 23 2
## 1670 <NA> No Germany Female 76 2
## 1671 <NA> Yes <NA> Male 25 1
## 1672 <NA> Yes <NA> Female 15 2
## 1673 <NA> Yes <NA> Male 41 4
## 1674 <NA> No Zimbabwe Female 48 1
## 1675 <NA> Yes <NA> Female 32 2
## 1676 <NA> Yes <NA> Female 36 4
## 1677 <NA> Yes <NA> Female 53 2
## 1678 <NA> Yes <NA> Female 65 1
## 1679 <NA> Yes <NA> Male 40 1
## 1680 <NA> Yes <NA> Female 47 1
## 1681 <NA> Yes <NA> Female 71 1
## 1682 <NA> Yes <NA> Female NA 1
## 1683 <NA> Yes <NA> Female 38 6
## 1684 <NA> Yes <NA> Male 52 2
## 1685 <NA> Yes <NA> Female 49 3
## 1686 <NA> Yes <NA> Male 31 1
## 1687 <NA> Yes <NA> Female 58 2
## 1688 <NA> Yes <NA> Male 49 1
## 1689 <NA> No <NA> Female 43 6
## 1690 <NA> No South Africa Male 23 2
## 1691 <NA> Yes <NA> Female 62 1
## 1692 <NA> Yes <NA> Female 56 2
## 1693 <NA> Yes <NA> Female 69 1
## 1694 <NA> Yes <NA> Female 18 4
## 1695 <NA> Yes <NA> Male 22 1
## 1696 <NA> No <NA> Male 27 4
## 1697 <NA> Yes <NA> Male 66 2
## 1698 <NA> Yes <NA> Male 40 2
## 1699 <NA> Yes <NA> Female 59 2
## 1700 <NA> Yes <NA> Female 48 4
## 1701 <NA> No <NA> Male 39 4
## 1702 <NA> No China Female 34 2
## 1703 <NA> Yes <NA> Male 36 5
## 1704 <NA> Yes <NA> Female 91 1
## 1705 <NA> Yes <NA> Male 36 2
## 1706 <NA> No China Female 25 1
## 1707 <NA> Yes <NA> Male 59 2
## 1708 <NA> Yes <NA> Female 29 3
## 1709 <NA> Yes <NA> Female 23 3
## 1710 <NA> Yes <NA> Male 66 2
## 1711 <NA> No <NA> Female 57 4
## 1712 <NA> Yes <NA> Female 60 2
## 1713 <NA> Yes <NA> Female 65 1
## 1714 <NA> Yes <NA> Female 47 2
## 1715 <NA> Yes <NA> Male 51 2
## 1716 <NA> Yes <NA> Female 28 1
## 1717 <NA> Yes <NA> Female 64 1
## 1718 <NA> Yes <NA> Female 50 2
## 1719 <NA> Yes <NA> Female 52 1
## 1720 <NA> Yes <NA> Female 63 1
## 1721 <NA> Yes <NA> Female 18 4
## 1722 <NA> Yes <NA> Male 54 3
## 1723 <NA> No Iran, Islamic Republic of Female 64 2
## 1724 <NA> Yes <NA> Female 28 1
## 1725 Poland No Poland Male 28 2
## 1726 <NA> Yes <NA> Male 35 2
## 1727 <NA> Yes <NA> Male 38 3
## 1728 <NA> Yes <NA> Female 83 2
## 1729 <NA> Yes <NA> Female 35 1
## 1730 <NA> Yes <NA> Male 37 3
## 1731 <NA> Yes <NA> Female 42 5
## 1732 <NA> No <NA> Female 44 5
## 1733 <NA> Yes <NA> Female 64 1
## 1734 <NA> Yes <NA> Male 46 2
## 1735 <NA> Yes <NA> Male 52 2
## 1736 <NA> Yes <NA> Female 51 3
## 1737 <NA> Yes <NA> Male 78 2
## 1738 <NA> Yes <NA> Female 34 4
## 1739 <NA> Yes <NA> Female 44 2
## 1740 <NA> Yes <NA> Female 60 2
## 1741 <NA> Yes <NA> Male 30 1
## 1742 <NA> Yes <NA> Male 18 2
## 1743 <NA> Yes <NA> Female 80 2
## 1744 <NA> Yes <NA> Female 60 3
## 1745 <NA> Yes <NA> Male 56 4
## 1746 <NA> Yes <NA> Female 56 2
## 1747 <NA> Yes <NA> Female 54 3
## 1748 <NA> No <NA> Female 30 2
## 1749 <NA> Yes <NA> Female 61 2
## 1750 <NA> No Pakistan Female 39 5
## 1751 <NA> No <NA> Male 72 1
## 1752 <NA> Yes <NA> Male 40 4
## 1753 <NA> Yes <NA> Female 45 2
## 1754 <NA> Yes <NA> Female 42 4
## 1755 <NA> Yes <NA> Female 22 4
## 1756 <NA> Yes <NA> Male 81 1
## 1757 <NA> No <NA> Female 42 3
## 1758 <NA> No <NA> Male 69 1
## 1759 <NA> Yes <NA> Female 43 4
## 1760 <NA> Yes <NA> Female 62 2
## 1761 <NA> Yes <NA> Female 54 1
## 1762 <NA> Yes <NA> Male 32 2
## 1763 <NA> Yes <NA> Female 61 1
## 1764 <NA> Yes <NA> Male 35 4
## 1765 <NA> Yes <NA> Female 83 1
## 1766 <NA> Yes <NA> Male 48 5
## 1767 <NA> Yes <NA> Female 45 3
## 1768 <NA> Yes <NA> Male 36 2
## 1769 <NA> Yes <NA> Male 22 2
## 1770 <NA> Yes <NA> Female 48 5
## 1771 <NA> Yes <NA> Female 47 3
## 1772 <NA> Yes <NA> Male 55 2
## 1773 <NA> Yes <NA> Male 58 3
## 1774 Poland No Poland Male 19 3
## 1775 <NA> No Pakistan Female 45 4
## 1776 <NA> Yes <NA> Male 71 1
## 1777 <NA> Yes <NA> Male 53 1
## 1778 <NA> Yes <NA> Male 65 1
## 1779 <NA> Yes <NA> Female 59 3
## 1780 <NA> No <NA> Female 61 2
## 1781 <NA> Yes <NA> Male 63 2
## 1782 <NA> Yes <NA> Male 81 1
## 1783 <NA> Yes <NA> Male 61 1
## 1784 <NA> Yes <NA> Male 78 2
## 1785 <NA> No Iran, Islamic Republic of Female 60 2
## 1786 <NA> Yes <NA> Female 69 2
## 1787 <NA> Yes <NA> Male 36 1
## 1788 <NA> Yes <NA> Male 46 4
## 1789 <NA> Yes <NA> Female 56 3
## 1790 <NA> Yes <NA> Male 41 5
## 1791 <NA> No India Male 75 2
## 1792 <NA> Yes <NA> Female 55 4
## 1793 Poland No Poland Male 32 5
## 1794 <NA> Yes <NA> Male 65 2
## 1795 <NA> Yes <NA> Female 73 1
## 1796 <NA> Yes <NA> Female 37 2
## 1797 <NA> Yes <NA> Female 54 2
## 1798 <NA> Yes <NA> Male 51 3
## 1799 <NA> Yes <NA> Male 56 2
## 1800 <NA> No <NA> Male 36 4
## 1801 <NA> Yes <NA> Female 84 1
## 1802 <NA> Yes <NA> Female 54 4
## 1803 <NA> Yes <NA> Male 26 4
## 1804 <NA> Yes <NA> Female 80 2
## 1805 <NA> No <NA> Female 42 3
## 1806 <NA> Yes <NA> Female 54 2
## 1807 <NA> Yes <NA> Female 71 1
## 1808 <NA> Yes <NA> Male 28 1
## 1809 <NA> No Germany Female 38 2
## 1810 <NA> Yes <NA> Male 26 2
## 1811 <NA> No <NA> Male 35 2
## 1812 <NA> Yes <NA> Female 83 1
## 1813 <NA> Yes <NA> Female 27 5
## 1814 <NA> Yes <NA> Female 40 3
## 1815 <NA> Yes <NA> Female 69 3
## 1816 <NA> Yes <NA> Female 64 1
## 1817 <NA> Yes <NA> Male 70 2
## 1818 <NA> Yes <NA> Female 83 2
## 1819 <NA> Yes <NA> Male 67 2
## 1820 <NA> No <NA> Female 30 1
## 1821 <NA> Yes <NA> Male 74 1
## 1822 <NA> Yes <NA> Female 41 3
## 1823 <NA> Yes <NA> Female 30 3
## 1824 <NA> Yes <NA> Female 31 3
## 1825 <NA> Yes <NA> Female 47 3
## 1826 <NA> Yes <NA> Female 74 2
## 1827 <NA> Yes <NA> Male 48 4
## 1828 <NA> Yes <NA> Female 41 4
## 1829 <NA> Yes <NA> Male 44 4
## 1830 <NA> Yes <NA> Female 67 2
## 1831 <NA> Yes <NA> Female 52 2
## 1832 <NA> Yes <NA> Female 47 1
## 1833 <NA> No <NA> Female 25 3
## 1834 <NA> Yes <NA> Female 21 5
## 1835 <NA> Yes <NA> Male 37 4
## 1836 <NA> Yes <NA> Male 41 4
## 1837 <NA> Yes <NA> Male 74 1
## 1838 <NA> Yes <NA> Female 83 1
## 1839 <NA> Yes <NA> Male 53 3
## 1840 <NA> Yes <NA> Male 53 2
## 1841 <NA> Yes <NA> Male 34 4
## 1842 <NA> Yes <NA> Female 69 2
## 1843 <NA> Yes <NA> Female 68 1
## 1844 <NA> Yes <NA> Male 66 2
## 1845 <NA> Yes <NA> Female NA 1
## 1846 <NA> Yes <NA> Female 77 1
## 1847 <NA> Yes <NA> Male 86 1
## 1848 <NA> Yes <NA> Male 69 1
## 1849 <NA> Yes <NA> Female 26 4
## 1850 <NA> Yes <NA> Male NA 1
## 1851 <NA> Yes <NA> Male 78 1
## 1852 <NA> No India Male 64 1
## 1853 <NA> Yes <NA> Female 44 4
## 1854 <NA> Yes <NA> Male 29 5
## 1855 <NA> Yes <NA> Male 53 1
## 1856 <NA> Yes <NA> Female 43 3
## 1857 <NA> Yes <NA> Male 61 2
## 1858 <NA> Yes <NA> Male 53 1
## 1859 <NA> No <NA> Female 37 3
## 1860 <NA> Yes <NA> Male 62 1
## 1861 <NA> Yes <NA> Female 73 1
## 1862 <NA> Yes <NA> Female 38 1
## 1863 <NA> Yes <NA> Male 53 1
## 1864 <NA> Yes <NA> Female 50 3
## 1865 <NA> Yes <NA> Male 15 3
## 1866 <NA> Yes <NA> Male 49 5
## 1867 <NA> Yes <NA> Female 36 4
## 1868 <NA> Yes <NA> Male 47 2
## 1869 <NA> Yes <NA> Male 73 1
## 1870 <NA> Yes <NA> Female 69 2
## 1871 <NA> No Germany Female 36 2
## 1872 <NA> No <NA> Female 23 3
## 1873 <NA> Yes <NA> Male 77 2
## 1874 <NA> Yes <NA> Male 49 4
## 1875 <NA> Yes <NA> Male 72 1
## 1876 <NA> Yes <NA> Male 80 1
## 1877 <NA> Yes <NA> Male 73 2
## 1878 <NA> Yes <NA> Male 65 2
## 1879 <NA> Yes <NA> Female 31 2
## 1880 <NA> Yes <NA> Male 40 5
## 1881 <NA> Yes <NA> Female 43 4
## 1882 <NA> Yes <NA> Female 34 2
## 1883 <NA> Yes <NA> Female 80 1
## 1884 <NA> Yes <NA> Male 80 2
## 1885 <NA> Yes <NA> Female 73 1
## 1886 <NA> Yes <NA> Female 29 3
## 1887 <NA> Yes <NA> Male 56 4
## 1888 <NA> Yes <NA> Male 65 2
## 1889 <NA> Yes <NA> Female 75 2
## 1890 <NA> Yes <NA> Female 21 5
## 1891 <NA> Yes <NA> Male 29 3
## 1892 <NA> Yes <NA> Female 20 3
## 1893 <NA> No <NA> Male 84 2
## 1894 <NA> No <NA> Female 29 5
## 1895 Ireland No Ireland Female 36 5
## 1896 <NA> Yes <NA> Male NA 5
## 1897 <NA> Yes <NA> Male 57 2
## 1898 <NA> Yes <NA> Male 65 1
## 1899 <NA> Yes <NA> Female 64 1
## 1900 <NA> Yes <NA> Female 64 2
## 1901 <NA> Yes <NA> Male 80 1
## 1902 <NA> Yes <NA> Male 72 2
## 1903 <NA> Yes <NA> Female 46 5
## 1904 <NA> Yes <NA> Female 38 4
## 1905 <NA> Yes <NA> Male 34 2
## 1906 <NA> No <NA> Male 34 4
## 1907 <NA> Yes <NA> Female 81 1
## 1908 <NA> Yes <NA> Male 81 1
## 1909 <NA> Yes <NA> Female 50 5
## 1910 <NA> Yes <NA> Male 19 2
## 1911 <NA> Yes <NA> Female 45 3
## 1912 <NA> Yes <NA> Female 54 1
## 1913 <NA> No Zimbabwe Male 52 4
## 1914 <NA> Yes <NA> Female 44 2
## 1915 <NA> No <NA> Male 38 1
## 1916 <NA> No Germany Female 31 3
## 1917 <NA> Yes <NA> Male 77 2
## 1918 <NA> Yes <NA> Male 70 2
## 1919 <NA> Yes <NA> Female 43 2
## 1920 <NA> Yes <NA> Male 67 2
## 1921 <NA> Yes <NA> Female 75 2
## 1922 <NA> Yes <NA> Female 81 1
## 1923 <NA> Yes <NA> Female 49 2
## 1924 <NA> Yes <NA> Male 44 3
## 1925 <NA> Yes <NA> Female 61 2
## 1926 <NA> Yes <NA> Female 30 1
## 1927 <NA> Yes <NA> Female 36 6
## 1928 <NA> Yes <NA> Male 59 2
## 1929 <NA> Yes <NA> Male 28 3
## 1930 <NA> Yes <NA> Male 65 2
## 1931 <NA> Yes <NA> Female 55 1
## 1932 <NA> Yes <NA> Male 60 2
## 1933 <NA> Yes <NA> Male 79 2
## 1934 <NA> Yes <NA> Female 29 2
## 1935 <NA> Yes <NA> Male 64 1
## 1936 <NA> Yes <NA> Male 66 3
## 1937 <NA> No <NA> Male 34 5
## 1938 <NA> Yes <NA> Female 81 1
## 1939 <NA> Yes <NA> Female 43 3
## 1940 <NA> Yes <NA> Female 24 2
## 1941 <NA> No Pakistan Male 42 5
## 1942 <NA> Yes <NA> Female 47 4
## 1943 <NA> Yes <NA> Male 68 2
## 1944 <NA> Yes <NA> Female 71 4
## 1945 <NA> No Jamaica Male 62 3
## 1946 <NA> Yes <NA> Female 73 2
## 1947 Spain No <NA> Female 45 3
## 1948 <NA> Yes <NA> Female 38 4
## 1949 <NA> Yes <NA> Female 55 2
## 1950 <NA> Yes <NA> Male 75 2
## 1951 <NA> Yes <NA> Male 56 3
## 1952 <NA> Yes <NA> Male 52 1
## 1953 <NA> <NA> <NA> <NA> NA NA
## 1954 <NA> Yes <NA> Female 77 1
## 1955 <NA> Yes <NA> Male 27 1
## 1956 <NA> Yes <NA> Female 61 2
## 1957 <NA> Yes <NA> Female 49 1
## 1958 <NA> Yes <NA> Male 79 1
## 1959 <NA> Yes <NA> Male 17 4
## 1960 <NA> Yes <NA> Male 51 4
## 1961 <NA> No <NA> Female 36 2
## 1962 <NA> Yes <NA> Male 53 1
## 1963 <NA> Yes <NA> Female 69 1
## 1964 <NA> Yes <NA> Female 86 1
## 1965 <NA> Yes <NA> Female 25 5
## 1966 <NA> Yes <NA> Male 69 1
## 1967 <NA> Yes <NA> Female 51 1
## 1968 <NA> Yes <NA> Male 79 2
## 1969 <NA> Yes <NA> Male 75 1
## 1970 <NA> Yes <NA> Male 36 2
## 1971 <NA> Yes <NA> Male 29 4
## 1972 <NA> Yes <NA> Female 73 1
## 1973 <NA> Yes <NA> Female 44 3
## 1974 <NA> Yes <NA> Male 76 2
## 1975 <NA> Yes <NA> Female 51 2
## 1976 <NA> Yes <NA> Male 71 1
## 1977 <NA> Yes <NA> Female 21 1
## 1978 <NA> Yes <NA> Male 46 1
## 1979 <NA> Yes <NA> Male 34 3
## 1980 <NA> Yes <NA> Male 67 2
## 1981 <NA> Yes <NA> Female 59 1
## 1982 <NA> Yes <NA> Female 37 3
## 1983 <NA> Yes <NA> Female 44 2
## 1984 <NA> Yes <NA> Female 27 3
## 1985 <NA> Yes <NA> Female 43 5
## 1986 <NA> Yes <NA> Female 42 2
## 1987 <NA> Yes <NA> Female 51 3
## 1988 <NA> No <NA> Female 42 4
## 1989 <NA> Yes <NA> Female 64 2
## 1990 <NA> Yes <NA> Female 55 2
## 1991 <NA> Yes <NA> Male 92 1
## 1992 <NA> Yes <NA> Male 57 2
## 1993 <NA> No Pakistan Male 60 4
## 1994 <NA> Yes <NA> Male 63 2
## 1995 <NA> Yes <NA> Female 81 3
## 1996 <NA> Yes <NA> Male 55 2
## 1997 <NA> Yes <NA> Female 65 2
## 1998 <NA> Yes <NA> Female 74 1
## 1999 <NA> Yes <NA> Female 26 1
## 2000 <NA> Yes <NA> Female 73 1
## 2001 <NA> Yes <NA> Male 52 2
## 2002 <NA> Yes <NA> Female 17 3
## 2003 <NA> Yes <NA> Male 71 2
## 2004 <NA> Yes <NA> Male 64 1
## 2005 <NA> Yes <NA> Female 60 3
## 2006 <NA> Yes <NA> Male 59 2
## 2007 <NA> Yes <NA> Female 23 3
## 2008 Poland No Poland Female 37 3
## 2009 <NA> Yes <NA> Female 43 2
## 2010 <NA> Yes <NA> Female 51 1
## 2011 <NA> Yes <NA> Male 70 1
## 2012 <NA> Yes <NA> Female 49 4
## 2013 <NA> Yes <NA> Male 25 3
## 2014 <NA> Yes <NA> Female 50 1
## 2015 <NA> Yes <NA> Female 54 2
## 2016 <NA> Yes <NA> Male 66 2
## 2017 <NA> No Ireland Female 29 3
## 2018 <NA> No <NA> Female 63 2
## 2019 <NA> No Iran, Islamic Republic of Female 68 1
## 2020 <NA> Yes <NA> Male 87 2
## 2021 <NA> Yes <NA> Female 63 1
## 2022 <NA> No Pakistan Male NA 3
## 2023 <NA> Yes <NA> Male 62 2
## 2024 <NA> Yes <NA> Male 50 1
## 2025 <NA> Yes <NA> Male 70 1
## 2026 <NA> Yes <NA> Male 72 2
## 2027 <NA> Yes <NA> Female 47 3
## 2028 <NA> Yes <NA> Male 46 1
## 2029 <NA> Yes <NA> Female 19 4
## 2030 <NA> Yes <NA> Female 45 4
## 2031 <NA> Yes <NA> Female 34 2
## 2032 <NA> Yes <NA> Male 40 4
## 2033 <NA> Yes <NA> Female 37 2
## 2034 Poland No Poland Female 32 2
## 2035 <NA> Yes <NA> Male 23 1
## 2036 <NA> Yes <NA> Male 76 1
## 2037 <NA> No South Africa Male 31 4
## 2038 <NA> Yes <NA> Male 61 2
## 2039 <NA> Yes <NA> Male 86 1
## 2040 <NA> Yes <NA> Female 71 1
## 2041 <NA> Yes <NA> Male 72 2
## 2042 <NA> Yes <NA> Male 18 3
## 2043 <NA> Yes <NA> Male 69 2
## 2044 <NA> Yes <NA> Female 54 1
## 2045 <NA> Yes <NA> Female 58 1
## 2046 <NA> Yes <NA> Male 71 1
## 2047 <NA> Yes <NA> Male 29 3
## 2048 <NA> Yes <NA> Female 46 2
## 2049 <NA> Yes <NA> Male 94 1
## 2050 <NA> Yes <NA> Male 57 3
## 2051 <NA> Yes <NA> Female 25 2
## 2052 <NA> Yes <NA> Male 78 1
## 2053 <NA> Yes <NA> Female 50 1
## 2054 <NA> No <NA> Female 36 1
## 2055 <NA> Yes <NA> Male 44 3
## 2056 <NA> Yes <NA> Male 21 3
## 2057 <NA> Yes <NA> Female 82 1
## 2058 <NA> Yes <NA> Female 75 1
## 2059 <NA> Yes <NA> Female 60 2
## 2060 <NA> Yes <NA> Male 23 3
## 2061 <NA> Yes <NA> Female 66 2
## 2062 <NA> Yes <NA> Male 67 2
## 2063 <NA> Yes <NA> Male 30 2
## 2064 <NA> Yes <NA> Female 66 1
## 2065 <NA> Yes <NA> Male 30 2
## 2066 <NA> Yes <NA> Male 70 1
## 2067 <NA> Yes <NA> Female 52 2
## 2068 <NA> Yes <NA> Female 54 2
## 2069 <NA> Yes <NA> Male 91 1
## 2070 <NA> Yes <NA> Male 43 6
## 2071 <NA> No <NA> Female 22 1
## 2072 <NA> Yes <NA> Male 70 2
## 2073 <NA> Yes <NA> Female 68 2
## 2074 <NA> Yes <NA> Female 69 2
## 2075 <NA> Yes <NA> Female 72 2
## 2076 <NA> Yes <NA> Female 71 1
## 2077 <NA> Yes <NA> Female 55 2
## 2078 <NA> Yes <NA> Male 40 1
## 2079 <NA> Yes <NA> Female 17 3
## 2080 <NA> Yes <NA> Male 50 1
## 2081 <NA> Yes <NA> Female 21 4
## 2082 <NA> Yes <NA> Female 24 2
## 2083 <NA> Yes <NA> Female 46 3
## 2084 Poland No Poland Male 35 4
## 2085 <NA> Yes <NA> Male 58 2
## 2086 <NA> Yes <NA> Male 62 3
## 2087 <NA> Yes <NA> Male 30 2
## 2088 <NA> Yes <NA> Male 69 2
## 2089 <NA> Yes <NA> Female 48 4
## 2090 <NA> Yes <NA> Female 24 4
## 2091 <NA> Yes <NA> Female 40 6
## 2092 <NA> Yes <NA> Male 51 3
## 2093 <NA> Yes <NA> Male 47 2
## 2094 <NA> Yes <NA> Male 54 1
## 2095 <NA> Yes <NA> Female 75 1
## 2096 <NA> Yes <NA> Female 64 2
## 2097 <NA> Yes <NA> Male 49 4
## 2098 <NA> Yes <NA> Female 26 1
## 2099 <NA> Yes <NA> Female 40 4
## 2100 <NA> Yes <NA> Female 53 2
## 2101 <NA> No <NA> Female 34 1
## 2102 <NA> Yes <NA> Female 36 4
## 2103 <NA> No Pakistan Male 38 1
## 2104 <NA> Yes <NA> Male 32 3
## 2105 <NA> Yes <NA> Male 17 4
## 2106 <NA> Yes <NA> Female 61 1
## 2107 Poland No Poland Female 35 4
## 2108 <NA> No India Female 56 1
## 2109 <NA> Yes <NA> Female 41 6
## 2110 <NA> Yes <NA> Male 39 4
## 2111 <NA> Yes <NA> Female 72 2
## 2112 <NA> Yes <NA> Female 81 1
## 2113 <NA> Yes <NA> Male 68 1
## 2114 <NA> No India Male 37 4
## 2115 <NA> Yes <NA> Male 28 2
## 2116 <NA> Yes <NA> Female 53 3
## 2117 <NA> Yes <NA> Female 69 2
## 2118 <NA> No <NA> Female 35 5
## 2119 <NA> Yes <NA> Female 32 4
## 2120 <NA> Yes <NA> Female 25 4
## 2121 <NA> No Pakistan Female 25 3
## 2122 <NA> No <NA> Female 20 1
## 2123 <NA> Yes <NA> Female 56 3
## 2124 <NA> Yes <NA> Male 60 4
## 2125 <NA> No <NA> Female 74 3
## 2126 <NA> Yes <NA> Female 31 5
## 2127 <NA> Yes <NA> Female 61 1
## 2128 <NA> Yes <NA> Female 65 1
## 2129 <NA> Yes <NA> Female 63 1
## 2130 <NA> Yes <NA> Male 82 2
## 2131 <NA> Yes <NA> Male 42 4
## 2132 <NA> Yes <NA> Male 51 2
## 2133 <NA> Yes <NA> Male 59 1
## 2134 <NA> Yes <NA> Male 30 3
## 2135 India No India Female 36 4
## 2136 <NA> Yes <NA> Female 79 1
## 2137 <NA> Yes <NA> Female 24 2
## 2138 <NA> Yes <NA> Male 68 2
## 2139 <NA> Yes <NA> Female 37 4
## 2140 <NA> Yes <NA> Female 65 2
## 2141 <NA> No Sri Lanka Male 55 3
## 2142 <NA> Yes <NA> Male 45 2
## 2143 <NA> Yes <NA> Male 48 5
## 2144 <NA> Yes <NA> Female 59 1
## 2145 <NA> Yes <NA> Female 72 1
## 2146 <NA> Yes <NA> Male 46 1
## 2147 <NA> Yes <NA> Male 79 2
## 2148 <NA> Yes <NA> Male 75 3
## 2149 <NA> Yes <NA> Male 39 4
## 2150 <NA> Yes <NA> Female 75 1
## 2151 <NA> Yes <NA> Male 24 5
## 2152 <NA> Yes <NA> Female 85 3
## 2153 <NA> Yes <NA> Male 42 1
## 2154 <NA> Yes <NA> Male 27 2
## 2155 <NA> Yes <NA> Male 63 1
## 2156 <NA> Yes <NA> Male 51 5
## 2157 <NA> No <NA> Female 63 2
## 2158 <NA> Yes <NA> Female 34 5
## 2159 <NA> Yes <NA> Female 64 3
## 2160 <NA> No <NA> Male 29 4
## 2161 <NA> Yes <NA> Female 53 4
## 2162 <NA> Yes <NA> Female 59 1
## 2163 <NA> Yes <NA> Female 76 1
## 2164 <NA> Yes <NA> Female 40 3
## 2165 <NA> Yes <NA> Male 76 2
## 2166 <NA> Yes <NA> Male 49 1
## 2167 <NA> Yes <NA> Female 48 3
## 2168 <NA> Yes <NA> Male 77 1
## 2169 <NA> Yes <NA> Female 56 2
## 2170 <NA> Yes <NA> Female 47 4
## 2171 <NA> No <NA> Male NA 1
## 2172 <NA> Yes <NA> Female 47 5
## 2173 <NA> Yes <NA> Male 87 2
## 2174 <NA> Yes <NA> Female 61 3
## 2175 <NA> Yes <NA> Female 75 2
## 2176 <NA> Yes <NA> Male 61 2
## 2177 <NA> Yes <NA> Female 18 2
## 2178 <NA> Yes <NA> Female 51 4
## 2179 <NA> Yes <NA> Female 25 3
## 2180 <NA> Yes <NA> Male 46 1
## 2181 <NA> Yes <NA> Male 30 2
## 2182 <NA> Yes <NA> Male 44 4
## 2183 <NA> Yes <NA> Female 40 4
## 2184 <NA> Yes <NA> Female 72 2
## 2185 <NA> Yes <NA> Female 51 2
## 2186 <NA> Yes <NA> Female 44 2
## 2187 <NA> Yes <NA> Male 53 2
## 2188 <NA> Yes <NA> Male 18 6
## 2189 <NA> Yes <NA> Male 42 4
## 2190 <NA> No <NA> Female 41 2
## 2191 <NA> Yes <NA> Female 63 1
## 2192 <NA> Yes <NA> Male 34 3
## 2193 <NA> Yes <NA> Female 63 2
## 2194 <NA> No <NA> Female 59 3
## 2195 <NA> Yes <NA> Male 48 2
## 2196 <NA> Yes <NA> Female 36 2
## 2197 <NA> Yes <NA> Female 83 2
## 2198 <NA> No <NA> Female 73 1
## 2199 <NA> Yes <NA> Female 49 1
## 2200 <NA> No India Male 34 5
## 2201 <NA> Yes <NA> Male 20 1
## 2202 <NA> Yes <NA> Male 31 4
## 2203 <NA> Yes <NA> Female 48 2
## 2204 <NA> Yes <NA> Male 68 1
## 2205 <NA> Yes <NA> Female 80 1
## 2206 <NA> Yes <NA> Male 64 2
## 2207 <NA> Yes <NA> Female 49 4
## 2208 <NA> Yes <NA> Male 46 2
## 2209 <NA> Yes <NA> Male 44 1
## 2210 <NA> Yes <NA> Male 73 2
## 2211 <NA> Yes <NA> Female 36 2
## 2212 <NA> No Kenya Male 44 1
## 2213 <NA> Yes <NA> Female 71 1
## 2214 <NA> Yes <NA> Female 57 1
## 2215 <NA> Yes <NA> Male 85 1
## 2216 <NA> Yes <NA> Male 57 1
## 2217 <NA> Yes <NA> Male 31 4
## 2218 Ireland No Ireland Female 34 2
## 2219 <NA> Yes <NA> Male 69 1
## 2220 <NA> Yes <NA> Female 52 1
## 2221 <NA> Yes <NA> Female 79 1
## 2222 <NA> Yes <NA> Female 47 1
## 2223 <NA> Yes <NA> Female 32 1
## 2224 <NA> No Poland Female 55 1
## 2225 <NA> No <NA> Female 52 1
## 2226 <NA> Yes <NA> Female 41 4
## 2227 <NA> Yes <NA> Male 37 3
## 2228 <NA> Yes <NA> Female 86 1
## 2229 <NA> No <NA> Female 66 1
## 2230 <NA> Yes <NA> Female 24 4
## 2231 <NA> Yes <NA> Male 36 6
## 2232 <NA> No <NA> Male 28 2
## 2233 <NA> No <NA> Female 18 7
## 2234 <NA> Yes <NA> Female 66 2
## 2235 <NA> Yes <NA> Male 64 1
## 2236 <NA> No China Female 31 1
## 2237 <NA> Yes <NA> Female 69 1
## 2238 <NA> Yes <NA> Male 41 1
## 2239 <NA> Yes <NA> Male 57 2
## 2240 <NA> Yes <NA> Male 75 2
## 2241 <NA> Yes <NA> Male 65 2
## 2242 <NA> Yes <NA> Male 36 1
## 2243 <NA> Yes <NA> Male 35 2
## 2244 <NA> Yes <NA> Female 32 2
## 2245 <NA> No <NA> Male 19 1
## 2246 <NA> Yes <NA> Female 27 4
## 2247 <NA> Yes <NA> Female 53 2
## 2248 <NA> Yes <NA> Female 78 1
## 2249 <NA> Yes <NA> Male 49 2
## 2250 <NA> Yes <NA> Male 75 2
## 2251 <NA> Yes <NA> Female 63 4
## 2252 <NA> Yes <NA> Male 67 2
## 2253 <NA> Yes <NA> Female 30 4
## 2254 <NA> Yes <NA> Female 43 1
## 2255 <NA> Yes <NA> Female 27 3
## 2256 <NA> Yes <NA> Male 54 1
## 2257 <NA> Yes <NA> Male 80 2
## 2258 <NA> Yes <NA> Female 75 2
## 2259 <NA> Yes <NA> Female 49 4
## 2260 <NA> Yes <NA> Female 46 3
## 2261 <NA> Yes <NA> Male 44 3
## 2262 <NA> Yes <NA> Male 57 2
## 2263 <NA> Yes <NA> Female 66 2
## 2264 <NA> Yes <NA> Male 40 3
## 2265 <NA> Yes <NA> Male 87 1
## 2266 <NA> <NA> <NA> <NA> NA NA
## 2267 <NA> <NA> <NA> <NA> NA NA
## 2268 <NA> <NA> <NA> <NA> NA NA
## 2269 <NA> <NA> <NA> <NA> NA NA
## 2270 <NA> <NA> <NA> <NA> NA NA
## 2271 <NA> <NA> <NA> <NA> NA NA
## 2272 <NA> <NA> <NA> <NA> NA NA
## 2273 <NA> <NA> <NA> <NA> NA NA
## 2274 <NA> <NA> <NA> <NA> NA NA
## 2275 <NA> <NA> <NA> <NA> NA NA
## 2276 <NA> <NA> <NA> <NA> NA NA
## 2277 <NA> <NA> <NA> <NA> NA NA
## 2278 <NA> <NA> <NA> <NA> NA NA
## 2279 <NA> <NA> <NA> <NA> NA NA
## 2280 <NA> <NA> <NA> <NA> NA NA
## 2281 <NA> <NA> <NA> <NA> NA NA
## 2282 <NA> <NA> <NA> <NA> NA NA
## 2283 <NA> <NA> <NA> <NA> NA NA
## 2284 <NA> <NA> <NA> <NA> NA NA
## 2285 <NA> <NA> <NA> <NA> NA NA
## 2286 <NA> <NA> <NA> <NA> NA NA
## 2287 <NA> <NA> <NA> <NA> NA NA
## 2288 <NA> <NA> <NA> <NA> NA NA
## 2289 <NA> <NA> <NA> <NA> NA NA
## 2290 <NA> <NA> <NA> <NA> NA NA
## 2291 <NA> <NA> <NA> <NA> NA NA
## 2292 <NA> <NA> <NA> <NA> NA NA
## 2293 <NA> <NA> <NA> <NA> NA NA
## 2294 <NA> <NA> <NA> <NA> NA NA
## 2295 <NA> <NA> <NA> <NA> NA NA
## 2296 <NA> <NA> <NA> <NA> NA NA
## 2297 <NA> <NA> <NA> <NA> NA NA
## 2298 <NA> <NA> <NA> <NA> NA NA
## 2299 <NA> <NA> <NA> <NA> NA NA
## 2300 <NA> <NA> <NA> <NA> NA NA
## 2301 <NA> <NA> <NA> <NA> NA NA
## 2302 <NA> <NA> <NA> <NA> NA NA
## 2303 <NA> <NA> <NA> <NA> NA NA
## 2304 <NA> <NA> <NA> <NA> NA NA
## 2305 <NA> <NA> <NA> <NA> NA NA
## 2306 <NA> <NA> <NA> <NA> NA NA
## 2307 <NA> <NA> <NA> <NA> NA NA
## 2308 <NA> <NA> <NA> <NA> NA NA
## 2309 <NA> <NA> <NA> <NA> NA NA
## 2310 <NA> <NA> <NA> <NA> NA NA
## 2311 <NA> <NA> <NA> <NA> NA NA
## 2312 <NA> <NA> <NA> <NA> NA NA
## 2313 <NA> <NA> <NA> <NA> NA NA
## 2314 <NA> <NA> <NA> <NA> NA NA
## 2315 <NA> <NA> <NA> <NA> NA NA
## 2316 <NA> <NA> <NA> <NA> NA NA
## 2317 <NA> <NA> <NA> <NA> NA NA
## 2318 <NA> <NA> <NA> <NA> NA NA
## 2319 <NA> <NA> <NA> <NA> NA NA
## 2320 <NA> <NA> <NA> <NA> NA NA
## 2321 <NA> <NA> <NA> <NA> NA NA
## 2322 <NA> <NA> <NA> <NA> NA NA
## 2323 <NA> <NA> <NA> <NA> NA NA
## 2324 <NA> <NA> <NA> <NA> NA NA
## 2325 <NA> <NA> <NA> <NA> NA NA
## 2326 <NA> <NA> <NA> <NA> NA NA
## 2327 <NA> <NA> <NA> <NA> NA NA
## 2328 <NA> <NA> <NA> <NA> NA NA
## 2329 <NA> <NA> <NA> <NA> NA NA
## 2330 <NA> <NA> <NA> <NA> NA NA
## 2331 <NA> <NA> <NA> <NA> NA NA
## 2332 <NA> <NA> <NA> <NA> NA NA
## 2333 <NA> <NA> <NA> <NA> NA NA
## 2334 <NA> <NA> <NA> <NA> NA NA
## 2335 <NA> <NA> <NA> <NA> NA NA
## 2336 <NA> <NA> <NA> <NA> NA NA
## 2337 <NA> <NA> <NA> <NA> NA NA
## 2338 <NA> <NA> <NA> <NA> NA NA
## 2339 <NA> <NA> <NA> <NA> NA NA
## 2340 <NA> <NA> <NA> <NA> NA NA
## 2341 <NA> <NA> <NA> <NA> NA NA
## 2342 <NA> <NA> <NA> <NA> NA NA
## 2343 <NA> <NA> <NA> <NA> NA NA
## 2344 <NA> <NA> <NA> <NA> NA NA
## 2345 <NA> <NA> <NA> <NA> NA NA
## 2346 <NA> <NA> <NA> <NA> NA NA
## 2347 <NA> <NA> <NA> <NA> NA NA
## 2348 <NA> <NA> <NA> <NA> NA NA
## 2349 <NA> <NA> <NA> <NA> NA NA
## 2350 <NA> <NA> <NA> <NA> NA NA
## 2351 <NA> <NA> <NA> <NA> NA NA
## 2352 <NA> <NA> <NA> <NA> NA NA
## 2353 <NA> <NA> <NA> <NA> NA NA
## 2354 <NA> <NA> <NA> <NA> NA NA
## 2355 <NA> <NA> <NA> <NA> NA NA
## 2356 <NA> <NA> <NA> <NA> NA NA
## 2357 <NA> <NA> <NA> <NA> NA NA
## 2358 <NA> <NA> <NA> <NA> NA NA
## 2359 <NA> <NA> <NA> <NA> NA NA
## 2360 <NA> <NA> <NA> <NA> NA NA
## 2361 <NA> <NA> <NA> <NA> NA NA
## 2362 <NA> <NA> <NA> <NA> NA NA
## 2363 <NA> <NA> <NA> <NA> NA NA
## 2364 <NA> <NA> <NA> <NA> NA NA
## 2365 <NA> <NA> <NA> <NA> NA NA
## 2366 <NA> <NA> <NA> <NA> NA NA
## 2367 <NA> <NA> <NA> <NA> NA NA
## 2368 <NA> <NA> <NA> <NA> NA NA
## 2369 <NA> <NA> <NA> <NA> NA NA
## 2370 <NA> <NA> <NA> <NA> NA NA
## 2371 <NA> <NA> <NA> <NA> NA NA
## 2372 <NA> <NA> <NA> <NA> NA NA
## 2373 <NA> <NA> <NA> <NA> NA NA
## 2374 <NA> <NA> <NA> <NA> NA NA
## 2375 <NA> <NA> <NA> <NA> NA NA
## 2376 <NA> <NA> <NA> <NA> NA NA
## 2377 <NA> <NA> <NA> <NA> NA NA
## 2378 <NA> <NA> <NA> <NA> NA NA
## 2379 <NA> <NA> <NA> <NA> NA NA
## 2380 <NA> <NA> <NA> <NA> NA NA
## 2381 <NA> <NA> <NA> <NA> NA NA
## 2382 <NA> <NA> <NA> <NA> NA NA
## 2383 <NA> <NA> <NA> <NA> NA NA
## 2384 <NA> <NA> <NA> <NA> NA NA
## 2385 <NA> <NA> <NA> <NA> NA NA
## 2386 <NA> <NA> <NA> <NA> NA NA
## 2387 <NA> <NA> <NA> <NA> NA NA
## 2388 <NA> <NA> <NA> <NA> NA NA
## 2389 <NA> <NA> <NA> <NA> NA NA
## 2390 <NA> <NA> <NA> <NA> NA NA
## 2391 <NA> <NA> <NA> <NA> NA NA
## 2392 <NA> <NA> <NA> <NA> NA NA
## 2393 <NA> <NA> <NA> <NA> NA NA
## 2394 <NA> <NA> <NA> <NA> NA NA
## 2395 <NA> <NA> <NA> <NA> NA NA
## 2396 <NA> <NA> <NA> <NA> NA NA
## 2397 <NA> <NA> <NA> <NA> NA NA
## 2398 <NA> <NA> <NA> <NA> NA NA
## 2399 <NA> <NA> <NA> <NA> NA NA
## 2400 <NA> <NA> <NA> <NA> NA NA
## 2401 <NA> <NA> <NA> <NA> NA NA
## 2402 <NA> <NA> <NA> <NA> NA NA
## 2403 <NA> <NA> <NA> <NA> NA NA
## 2404 <NA> <NA> <NA> <NA> NA NA
## 2405 <NA> <NA> <NA> <NA> NA NA
## 2406 <NA> <NA> <NA> <NA> NA NA
## 2407 <NA> <NA> <NA> <NA> NA NA
## 2408 <NA> <NA> <NA> <NA> NA NA
## 2409 <NA> <NA> <NA> <NA> NA NA
## 2410 <NA> <NA> <NA> <NA> NA NA
## 2411 <NA> <NA> <NA> <NA> NA NA
## 2412 <NA> <NA> <NA> <NA> NA NA
## 2413 <NA> <NA> <NA> <NA> NA NA
## 2414 <NA> <NA> <NA> <NA> NA NA
## 2415 <NA> <NA> <NA> <NA> NA NA
## 2416 <NA> <NA> <NA> <NA> NA NA
## 2417 <NA> <NA> <NA> <NA> NA NA
## 2418 <NA> <NA> <NA> <NA> NA NA
## 2419 <NA> <NA> <NA> <NA> NA NA
## 2420 <NA> <NA> <NA> <NA> NA NA
## 2421 <NA> <NA> <NA> <NA> NA NA
## 2422 <NA> <NA> <NA> <NA> NA NA
## 2423 <NA> <NA> <NA> <NA> NA NA
## 2424 <NA> <NA> <NA> <NA> NA NA
## 2425 <NA> <NA> <NA> <NA> NA NA
## 2426 <NA> <NA> <NA> <NA> NA NA
## 2427 <NA> <NA> <NA> <NA> NA NA
## 2428 <NA> <NA> <NA> <NA> NA NA
## 2429 <NA> <NA> <NA> <NA> NA NA
## 2430 <NA> <NA> <NA> <NA> NA NA
## 2431 <NA> <NA> <NA> <NA> NA NA
## 2432 <NA> <NA> <NA> <NA> NA NA
## 2433 <NA> <NA> <NA> <NA> NA NA
## 2434 <NA> <NA> <NA> <NA> NA NA
## 2435 <NA> <NA> <NA> <NA> NA NA
## 2436 <NA> <NA> <NA> <NA> NA NA
## 2437 <NA> <NA> <NA> <NA> NA NA
## 2438 <NA> <NA> <NA> <NA> NA NA
## 2439 <NA> <NA> <NA> <NA> NA NA
## 2440 <NA> <NA> <NA> <NA> NA NA
## 2441 <NA> <NA> <NA> <NA> NA NA
## 2442 <NA> <NA> <NA> <NA> NA NA
## 2443 <NA> <NA> <NA> <NA> NA NA
## 2444 <NA> <NA> <NA> <NA> NA NA
## 2445 <NA> <NA> <NA> <NA> NA NA
## 2446 <NA> <NA> <NA> <NA> NA NA
## 2447 <NA> <NA> <NA> <NA> NA NA
## 2448 <NA> <NA> <NA> <NA> NA NA
## 2449 <NA> <NA> <NA> <NA> NA NA
## 2450 <NA> <NA> <NA> <NA> NA NA
## 2451 <NA> <NA> <NA> <NA> NA NA
## 2452 <NA> <NA> <NA> <NA> NA NA
## 2453 <NA> <NA> <NA> <NA> NA NA
## 2454 <NA> <NA> <NA> <NA> NA NA
## 2455 <NA> <NA> <NA> <NA> NA NA
## 2456 <NA> <NA> <NA> <NA> NA NA
## 2457 <NA> <NA> <NA> <NA> NA NA
## 2458 <NA> <NA> <NA> <NA> NA NA
## 2459 <NA> <NA> <NA> <NA> NA NA
## 2460 <NA> <NA> <NA> <NA> NA NA
## 2461 <NA> <NA> <NA> <NA> NA NA
## 2462 <NA> <NA> <NA> <NA> NA NA
## 2463 <NA> <NA> <NA> <NA> NA NA
## 2464 <NA> <NA> <NA> <NA> NA NA
## 2465 <NA> <NA> <NA> <NA> NA NA
## 2466 <NA> <NA> <NA> <NA> NA NA
## 2467 <NA> <NA> <NA> <NA> NA NA
## 2468 <NA> <NA> <NA> <NA> NA NA
## 2469 <NA> <NA> <NA> <NA> NA NA
## 2470 <NA> <NA> <NA> <NA> NA NA
## 2471 <NA> <NA> <NA> <NA> NA NA
## 2472 <NA> <NA> <NA> <NA> NA NA
## 2473 <NA> <NA> <NA> <NA> NA NA
## 2474 <NA> <NA> <NA> <NA> NA NA
## 2475 <NA> <NA> <NA> <NA> NA NA
## 2476 <NA> <NA> <NA> <NA> NA NA
## 2477 <NA> <NA> <NA> <NA> NA NA
## 2478 <NA> <NA> <NA> <NA> NA NA
## 2479 <NA> <NA> <NA> <NA> NA NA
## 2480 <NA> <NA> <NA> <NA> NA NA
## 2481 <NA> <NA> <NA> <NA> NA NA
## 2482 <NA> <NA> <NA> <NA> NA NA
## 2483 <NA> <NA> <NA> <NA> NA NA
## 2484 <NA> <NA> <NA> <NA> NA NA
## 2485 <NA> <NA> <NA> <NA> NA NA
## 2486 <NA> <NA> <NA> <NA> NA NA
## 2487 <NA> <NA> <NA> <NA> NA NA
## 2488 <NA> <NA> <NA> <NA> NA NA
## 2489 <NA> <NA> <NA> <NA> NA NA
## 2490 <NA> <NA> <NA> <NA> NA NA
## 2491 <NA> <NA> <NA> <NA> NA NA
## 2492 <NA> <NA> <NA> <NA> NA NA
## 2493 <NA> <NA> <NA> <NA> NA NA
## 2494 <NA> <NA> <NA> <NA> NA NA
## 2495 <NA> <NA> <NA> <NA> NA NA
## 2496 <NA> <NA> <NA> <NA> NA NA
## 2497 <NA> <NA> <NA> <NA> NA NA
## 2498 <NA> <NA> <NA> <NA> NA NA
## 2499 <NA> <NA> <NA> <NA> NA NA
## 2500 <NA> <NA> <NA> <NA> NA NA
## 2501 <NA> <NA> <NA> <NA> NA NA
## 2502 <NA> <NA> <NA> <NA> NA NA
## 2503 <NA> <NA> <NA> <NA> NA NA
## 2504 <NA> <NA> <NA> <NA> NA NA
## 2505 <NA> <NA> <NA> <NA> NA NA
## 2506 <NA> <NA> <NA> <NA> NA NA
## 2507 <NA> <NA> <NA> <NA> NA NA
## 2508 <NA> <NA> <NA> <NA> NA NA
## 2509 <NA> <NA> <NA> <NA> NA NA
## 2510 <NA> <NA> <NA> <NA> NA NA
## 2511 <NA> <NA> <NA> <NA> NA NA
## 2512 <NA> <NA> <NA> <NA> NA NA
## 2513 <NA> <NA> <NA> <NA> NA NA
## 2514 <NA> <NA> <NA> <NA> NA NA
## 2515 <NA> <NA> <NA> <NA> NA NA
## 2516 <NA> <NA> <NA> <NA> NA NA
## 2517 <NA> <NA> <NA> <NA> NA NA
## 2518 <NA> <NA> <NA> <NA> NA NA
## 2519 <NA> <NA> <NA> <NA> NA NA
## 2520 <NA> <NA> <NA> <NA> NA NA
## 2521 <NA> <NA> <NA> <NA> NA NA
## 2522 <NA> <NA> <NA> <NA> NA NA
## 2523 <NA> <NA> <NA> <NA> NA NA
## 2524 <NA> <NA> <NA> <NA> NA NA
## 2525 <NA> <NA> <NA> <NA> NA NA
## 2526 <NA> <NA> <NA> <NA> NA NA
## 2527 <NA> <NA> <NA> <NA> NA NA
## 2528 <NA> <NA> <NA> <NA> NA NA
## 2529 <NA> <NA> <NA> <NA> NA NA
## 2530 <NA> <NA> <NA> <NA> NA NA
## 2531 <NA> <NA> <NA> <NA> NA NA
## 2532 <NA> <NA> <NA> <NA> NA NA
## 2533 <NA> <NA> <NA> <NA> NA NA
## 2534 <NA> <NA> <NA> <NA> NA NA
## 2535 <NA> <NA> <NA> <NA> NA NA
## 2536 <NA> <NA> <NA> <NA> NA NA
## 2537 <NA> <NA> <NA> <NA> NA NA
## 2538 <NA> <NA> <NA> <NA> NA NA
## 2539 <NA> <NA> <NA> <NA> NA NA
## 2540 <NA> <NA> <NA> <NA> NA NA
## 2541 <NA> <NA> <NA> <NA> NA NA
## 2542 <NA> <NA> <NA> <NA> NA NA
## 2543 <NA> <NA> <NA> <NA> NA NA
## 2544 <NA> <NA> <NA> <NA> NA NA
## 2545 <NA> <NA> <NA> <NA> NA NA
## 2546 <NA> <NA> <NA> <NA> NA NA
## 2547 <NA> <NA> <NA> <NA> NA NA
## 2548 <NA> <NA> <NA> <NA> NA NA
## 2549 <NA> <NA> <NA> <NA> NA NA
## 2550 <NA> <NA> <NA> <NA> NA NA
## 2551 <NA> <NA> <NA> <NA> NA NA
## 2552 <NA> <NA> <NA> <NA> NA NA
## 2553 <NA> <NA> <NA> <NA> NA NA
## 2554 <NA> <NA> <NA> <NA> NA NA
## 2555 <NA> <NA> <NA> <NA> NA NA
## 2556 <NA> <NA> <NA> <NA> NA NA
## 2557 <NA> <NA> <NA> <NA> NA NA
## 2558 <NA> <NA> <NA> <NA> NA NA
## 2559 <NA> <NA> <NA> <NA> NA NA
## 2560 <NA> <NA> <NA> <NA> NA NA
## 2561 <NA> <NA> <NA> <NA> NA NA
## 2562 <NA> <NA> <NA> <NA> NA NA
## 2563 <NA> <NA> <NA> <NA> NA NA
## 2564 <NA> <NA> <NA> <NA> NA NA
## 2565 <NA> <NA> <NA> <NA> NA NA
## 2566 <NA> <NA> <NA> <NA> NA NA
## 2567 <NA> <NA> <NA> <NA> NA NA
## 2568 <NA> <NA> <NA> <NA> NA NA
## 2569 <NA> <NA> <NA> <NA> NA NA
## 2570 <NA> <NA> <NA> <NA> NA NA
## 2571 <NA> <NA> <NA> <NA> NA NA
## 2572 <NA> <NA> <NA> <NA> NA NA
## 2573 <NA> <NA> <NA> <NA> NA NA
## 2574 <NA> <NA> <NA> <NA> NA NA
## 2575 <NA> <NA> <NA> <NA> NA NA
## 2576 <NA> <NA> <NA> <NA> NA NA
## 2577 <NA> <NA> <NA> <NA> NA NA
## 2578 <NA> <NA> <NA> <NA> NA NA
## 2579 <NA> <NA> <NA> <NA> NA NA
## 2580 <NA> <NA> <NA> <NA> NA NA
## 2581 <NA> <NA> <NA> <NA> NA NA
## 2582 <NA> <NA> <NA> <NA> NA NA
## 2583 <NA> <NA> <NA> <NA> NA NA
## 2584 <NA> <NA> <NA> <NA> NA NA
## 2585 <NA> <NA> <NA> <NA> NA NA
## 2586 <NA> <NA> <NA> <NA> NA NA
## 2587 <NA> <NA> <NA> <NA> NA NA
## 2588 <NA> <NA> <NA> <NA> NA NA
## 2589 <NA> <NA> <NA> <NA> NA NA
## 2590 <NA> <NA> <NA> <NA> NA NA
## 2591 <NA> <NA> <NA> <NA> NA NA
## 2592 <NA> <NA> <NA> <NA> NA NA
## 2593 <NA> <NA> <NA> <NA> NA NA
## 2594 <NA> <NA> <NA> <NA> NA NA
## 2595 <NA> <NA> <NA> <NA> NA NA
## 2596 <NA> <NA> <NA> <NA> NA NA
## 2597 <NA> <NA> <NA> <NA> NA NA
## 2598 <NA> <NA> <NA> <NA> NA NA
## 2599 <NA> <NA> <NA> <NA> NA NA
## 2600 <NA> <NA> <NA> <NA> NA NA
## 2601 <NA> <NA> <NA> <NA> NA NA
## 2602 <NA> <NA> <NA> <NA> NA NA
## 2603 <NA> <NA> <NA> <NA> NA NA
## 2604 <NA> <NA> <NA> <NA> NA NA
## 2605 <NA> <NA> <NA> <NA> NA NA
## 2606 <NA> <NA> <NA> <NA> NA NA
## 2607 <NA> <NA> <NA> <NA> NA NA
## 2608 <NA> <NA> <NA> <NA> NA NA
## 2609 <NA> <NA> <NA> <NA> NA NA
## 2610 <NA> <NA> <NA> <NA> NA NA
## 2611 <NA> <NA> <NA> <NA> NA NA
## 2612 <NA> <NA> <NA> <NA> NA NA
## 2613 <NA> <NA> <NA> <NA> NA NA
## 2614 <NA> <NA> <NA> <NA> NA NA
## 2615 <NA> <NA> <NA> <NA> NA NA
## 2616 <NA> <NA> <NA> <NA> NA NA
## 2617 <NA> <NA> <NA> <NA> NA NA
## 2618 <NA> <NA> <NA> <NA> NA NA
## 2619 <NA> <NA> <NA> <NA> NA NA
## 2620 <NA> <NA> <NA> <NA> NA NA
## 2621 <NA> <NA> <NA> <NA> NA NA
## 2622 <NA> <NA> <NA> <NA> NA NA
## 2623 <NA> <NA> <NA> <NA> NA NA
## 2624 <NA> <NA> <NA> <NA> NA NA
## 2625 <NA> <NA> <NA> <NA> NA NA
## 2626 <NA> <NA> <NA> <NA> NA NA
## 2627 <NA> <NA> <NA> <NA> NA NA
## 2628 <NA> <NA> <NA> <NA> NA NA
## 2629 <NA> <NA> <NA> <NA> NA NA
## 2630 <NA> <NA> <NA> <NA> NA NA
## 2631 <NA> <NA> <NA> <NA> NA NA
## 2632 <NA> <NA> <NA> <NA> NA NA
## 2633 <NA> <NA> <NA> <NA> NA NA
## 2634 <NA> <NA> <NA> <NA> NA NA
## 2635 <NA> <NA> <NA> <NA> NA NA
## 2636 <NA> <NA> <NA> <NA> NA NA
## 2637 <NA> <NA> <NA> <NA> NA NA
## 2638 <NA> <NA> <NA> <NA> NA NA
## 2639 <NA> <NA> <NA> <NA> NA NA
## 2640 <NA> <NA> <NA> <NA> NA NA
## 2641 <NA> <NA> <NA> <NA> NA NA
## 2642 <NA> <NA> <NA> <NA> NA NA
## 2643 <NA> <NA> <NA> <NA> NA NA
## 2644 <NA> <NA> <NA> <NA> NA NA
## 2645 <NA> <NA> <NA> <NA> NA NA
## 2646 <NA> <NA> <NA> <NA> NA NA
## 2647 <NA> <NA> <NA> <NA> NA NA
## 2648 <NA> <NA> <NA> <NA> NA NA
## 2649 <NA> <NA> <NA> <NA> NA NA
## 2650 <NA> <NA> <NA> <NA> NA NA
## 2651 <NA> <NA> <NA> <NA> NA NA
## 2652 <NA> <NA> <NA> <NA> NA NA
## 2653 <NA> <NA> <NA> <NA> NA NA
## 2654 <NA> <NA> <NA> <NA> NA NA
## 2655 <NA> <NA> <NA> <NA> NA NA
## 2656 <NA> <NA> <NA> <NA> NA NA
## 2657 <NA> <NA> <NA> <NA> NA NA
## 2658 <NA> <NA> <NA> <NA> NA NA
## 2659 <NA> <NA> <NA> <NA> NA NA
## 2660 <NA> <NA> <NA> <NA> NA NA
## 2661 <NA> <NA> <NA> <NA> NA NA
## 2662 <NA> <NA> <NA> <NA> NA NA
## 2663 <NA> <NA> <NA> <NA> NA NA
## 2664 <NA> <NA> <NA> <NA> NA NA
## 2665 <NA> <NA> <NA> <NA> NA NA
## 2666 <NA> <NA> <NA> <NA> NA NA
## 2667 <NA> <NA> <NA> <NA> NA NA
## 2668 <NA> <NA> <NA> <NA> NA NA
## 2669 <NA> <NA> <NA> <NA> NA NA
## 2670 <NA> <NA> <NA> <NA> NA NA
## 2671 <NA> <NA> <NA> <NA> NA NA
## 2672 <NA> <NA> <NA> <NA> NA NA
## 2673 <NA> <NA> <NA> <NA> NA NA
## 2674 <NA> <NA> <NA> <NA> NA NA
## 2675 <NA> <NA> <NA> <NA> NA NA
## 2676 <NA> <NA> <NA> <NA> NA NA
## 2677 <NA> <NA> <NA> <NA> NA NA
## 2678 <NA> <NA> <NA> <NA> NA NA
## 2679 <NA> <NA> <NA> <NA> NA NA
## 2680 <NA> <NA> <NA> <NA> NA NA
## 2681 <NA> <NA> <NA> <NA> NA NA
## 2682 <NA> <NA> <NA> <NA> NA NA
## 2683 <NA> <NA> <NA> <NA> NA NA
## 2684 <NA> <NA> <NA> <NA> NA NA
## 2685 <NA> <NA> <NA> <NA> NA NA
## 2686 <NA> <NA> <NA> <NA> NA NA
## 2687 <NA> <NA> <NA> <NA> NA NA
## 2688 <NA> <NA> <NA> <NA> NA NA
## 2689 <NA> <NA> <NA> <NA> NA NA
## 2690 <NA> <NA> <NA> <NA> NA NA
## 2691 <NA> <NA> <NA> <NA> NA NA
## 2692 <NA> <NA> <NA> <NA> NA NA
## 2693 <NA> <NA> <NA> <NA> NA NA
## 2694 <NA> <NA> <NA> <NA> NA NA
## 2695 <NA> <NA> <NA> <NA> NA NA
## 2696 <NA> <NA> <NA> <NA> NA NA
## 2697 <NA> <NA> <NA> <NA> NA NA
## 2698 <NA> <NA> <NA> <NA> NA NA
## 2699 <NA> <NA> <NA> <NA> NA NA
## 2700 <NA> <NA> <NA> <NA> NA NA
## 2701 <NA> <NA> <NA> <NA> NA NA
## 2702 <NA> <NA> <NA> <NA> NA NA
## 2703 <NA> <NA> <NA> <NA> NA NA
## 2704 <NA> <NA> <NA> <NA> NA NA
## 2705 <NA> <NA> <NA> <NA> NA NA
## 2706 <NA> <NA> <NA> <NA> NA NA
## 2707 <NA> <NA> <NA> <NA> NA NA
## 2708 <NA> <NA> <NA> <NA> NA NA
## 2709 <NA> <NA> <NA> <NA> NA NA
## 2710 <NA> <NA> <NA> <NA> NA NA
## 2711 <NA> <NA> <NA> <NA> NA NA
## 2712 <NA> <NA> <NA> <NA> NA NA
## 2713 <NA> <NA> <NA> <NA> NA NA
## 2714 <NA> <NA> <NA> <NA> NA NA
## 2715 <NA> <NA> <NA> <NA> NA NA
## 2716 <NA> <NA> <NA> <NA> NA NA
## 2717 <NA> <NA> <NA> <NA> NA NA
## 2718 <NA> <NA> <NA> <NA> NA NA
## 2719 <NA> <NA> <NA> <NA> NA NA
## 2720 <NA> <NA> <NA> <NA> NA NA
## 2721 <NA> <NA> <NA> <NA> NA NA
## 2722 <NA> <NA> <NA> <NA> NA NA
## 2723 <NA> <NA> <NA> <NA> NA NA
## 2724 <NA> <NA> <NA> <NA> NA NA
## 2725 <NA> <NA> <NA> <NA> NA NA
## 2726 <NA> <NA> <NA> <NA> NA NA
## 2727 <NA> <NA> <NA> <NA> NA NA
## 2728 <NA> <NA> <NA> <NA> NA NA
## 2729 <NA> <NA> <NA> <NA> NA NA
## 2730 <NA> <NA> <NA> <NA> NA NA
## 2731 <NA> <NA> <NA> <NA> NA NA
## 2732 <NA> <NA> <NA> <NA> NA NA
## 2733 <NA> <NA> <NA> <NA> NA NA
## 2734 <NA> <NA> <NA> <NA> NA NA
## 2735 <NA> <NA> <NA> <NA> NA NA
## 2736 <NA> <NA> <NA> <NA> NA NA
## 2737 <NA> <NA> <NA> <NA> NA NA
## 2738 <NA> <NA> <NA> <NA> NA NA
## 2739 <NA> <NA> <NA> <NA> NA NA
## 2740 <NA> <NA> <NA> <NA> NA NA
## 2741 <NA> <NA> <NA> <NA> NA NA
## 2742 <NA> <NA> <NA> <NA> NA NA
## 2743 <NA> <NA> <NA> <NA> NA NA
## 2744 <NA> <NA> <NA> <NA> NA NA
## 2745 <NA> <NA> <NA> <NA> NA NA
## 2746 <NA> <NA> <NA> <NA> NA NA
## 2747 <NA> <NA> <NA> <NA> NA NA
## 2748 <NA> <NA> <NA> <NA> NA NA
## 2749 <NA> <NA> <NA> <NA> NA NA
## 2750 <NA> <NA> <NA> <NA> NA NA
## 2751 <NA> <NA> <NA> <NA> NA NA
## 2752 <NA> <NA> <NA> <NA> NA NA
## 2753 <NA> <NA> <NA> <NA> NA NA
## 2754 <NA> <NA> <NA> <NA> NA NA
## 2755 <NA> <NA> <NA> <NA> NA NA
## 2756 <NA> <NA> <NA> <NA> NA NA
## 2757 <NA> <NA> <NA> <NA> NA NA
## 2758 <NA> <NA> <NA> <NA> NA NA
## 2759 <NA> <NA> <NA> <NA> NA NA
## 2760 <NA> <NA> <NA> <NA> NA NA
## 2761 <NA> <NA> <NA> <NA> NA NA
## 2762 <NA> <NA> <NA> <NA> NA NA
## 2763 <NA> <NA> <NA> <NA> NA NA
## 2764 <NA> <NA> <NA> <NA> NA NA
## 2765 <NA> <NA> <NA> <NA> NA NA
## 2766 <NA> <NA> <NA> <NA> NA NA
## 2767 <NA> <NA> <NA> <NA> NA NA
## 2768 <NA> <NA> <NA> <NA> NA NA
## 2769 <NA> <NA> <NA> <NA> NA NA
## 2770 <NA> <NA> <NA> <NA> NA NA
## 2771 <NA> <NA> <NA> <NA> NA NA
## 2772 <NA> <NA> <NA> <NA> NA NA
## 2773 <NA> <NA> <NA> <NA> NA NA
## 2774 <NA> <NA> <NA> <NA> NA NA
## 2775 <NA> <NA> <NA> <NA> NA NA
## 2776 <NA> <NA> <NA> <NA> NA NA
## 2777 <NA> <NA> <NA> <NA> NA NA
## 2778 <NA> <NA> <NA> <NA> NA NA
## 2779 <NA> <NA> <NA> <NA> NA NA
## 2780 <NA> <NA> <NA> <NA> NA NA
## 2781 <NA> <NA> <NA> <NA> NA NA
## 2782 <NA> <NA> <NA> <NA> NA NA
## 2783 <NA> <NA> <NA> <NA> NA NA
## 2784 <NA> <NA> <NA> <NA> NA NA
## 2785 <NA> <NA> <NA> <NA> NA NA
## 2786 <NA> <NA> <NA> <NA> NA NA
## 2787 <NA> <NA> <NA> <NA> NA NA
## 2788 <NA> <NA> <NA> <NA> NA NA
## 2789 <NA> <NA> <NA> <NA> NA NA
## 2790 <NA> <NA> <NA> <NA> NA NA
## 2791 <NA> <NA> <NA> <NA> NA NA
## 2792 <NA> <NA> <NA> <NA> NA NA
## 2793 <NA> <NA> <NA> <NA> NA NA
## 2794 <NA> <NA> <NA> <NA> NA NA
## 2795 <NA> <NA> <NA> <NA> NA NA
## 2796 <NA> <NA> <NA> <NA> NA NA
## 2797 <NA> <NA> <NA> <NA> NA NA
## 2798 <NA> <NA> <NA> <NA> NA NA
## 2799 <NA> <NA> <NA> <NA> NA NA
## 2800 <NA> <NA> <NA> <NA> NA NA
## 2801 <NA> <NA> <NA> <NA> NA NA
## 2802 <NA> <NA> <NA> <NA> NA NA
## 2803 <NA> <NA> <NA> <NA> NA NA
## 2804 <NA> <NA> <NA> <NA> NA NA
## 2805 <NA> <NA> <NA> <NA> NA NA
## 2806 <NA> <NA> <NA> <NA> NA NA
## 2807 <NA> <NA> <NA> <NA> NA NA
## 2808 <NA> <NA> <NA> <NA> NA NA
## 2809 <NA> <NA> <NA> <NA> NA NA
## 2810 <NA> <NA> <NA> <NA> NA NA
## 2811 <NA> <NA> <NA> <NA> NA NA
## 2812 <NA> <NA> <NA> <NA> NA NA
## 2813 <NA> <NA> <NA> <NA> NA NA
## 2814 <NA> <NA> <NA> <NA> NA NA
## 2815 <NA> <NA> <NA> <NA> NA NA
## 2816 <NA> <NA> <NA> <NA> NA NA
## 2817 <NA> <NA> <NA> <NA> NA NA
## 2818 <NA> <NA> <NA> <NA> NA NA
## 2819 <NA> <NA> <NA> <NA> NA NA
## 2820 <NA> <NA> <NA> <NA> NA NA
## 2821 <NA> <NA> <NA> <NA> NA NA
## 2822 <NA> <NA> <NA> <NA> NA NA
## 2823 <NA> <NA> <NA> <NA> NA NA
## 2824 <NA> <NA> <NA> <NA> NA NA
## 2825 <NA> <NA> <NA> <NA> NA NA
## 2826 <NA> <NA> <NA> <NA> NA NA
## 2827 <NA> <NA> <NA> <NA> NA NA
## 2828 <NA> <NA> <NA> <NA> NA NA
## 2829 <NA> <NA> <NA> <NA> NA NA
## 2830 <NA> <NA> <NA> <NA> NA NA
## 2831 <NA> <NA> <NA> <NA> NA NA
## 2832 <NA> <NA> <NA> <NA> NA NA
## 2833 <NA> <NA> <NA> <NA> NA NA
## 2834 <NA> <NA> <NA> <NA> NA NA
## 2835 <NA> <NA> <NA> <NA> NA NA
## 2836 <NA> <NA> <NA> <NA> NA NA
## 2837 <NA> <NA> <NA> <NA> NA NA
## 2838 <NA> <NA> <NA> <NA> NA NA
## 2839 <NA> <NA> <NA> <NA> NA NA
## 2840 <NA> <NA> <NA> <NA> NA NA
## 2841 <NA> <NA> <NA> <NA> NA NA
## 2842 <NA> <NA> <NA> <NA> NA NA
## 2843 <NA> <NA> <NA> <NA> NA NA
## 2844 <NA> <NA> <NA> <NA> NA NA
## 2845 <NA> <NA> <NA> <NA> NA NA
## 2846 <NA> <NA> <NA> <NA> NA NA
## 2847 <NA> <NA> <NA> <NA> NA NA
## 2848 <NA> <NA> <NA> <NA> NA NA
## 2849 <NA> <NA> <NA> <NA> NA NA
## 2850 <NA> <NA> <NA> <NA> NA NA
## 2851 <NA> <NA> <NA> <NA> NA NA
## 2852 <NA> <NA> <NA> <NA> NA NA
## 2853 <NA> <NA> <NA> <NA> NA NA
## 2854 <NA> <NA> <NA> <NA> NA NA
## 2855 <NA> <NA> <NA> <NA> NA NA
## 2856 <NA> <NA> <NA> <NA> NA NA
## 2857 <NA> <NA> <NA> <NA> NA NA
## 2858 <NA> <NA> <NA> <NA> NA NA
## 2859 <NA> <NA> <NA> <NA> NA NA
## 2860 <NA> <NA> <NA> <NA> NA NA
## 2861 <NA> <NA> <NA> <NA> NA NA
## 2862 <NA> <NA> <NA> <NA> NA NA
## 2863 <NA> <NA> <NA> <NA> NA NA
## 2864 <NA> <NA> <NA> <NA> NA NA
## 2865 <NA> <NA> <NA> <NA> NA NA
## 2866 <NA> <NA> <NA> <NA> NA NA
## 2867 <NA> <NA> <NA> <NA> NA NA
## 2868 <NA> <NA> <NA> <NA> NA NA
## 2869 <NA> <NA> <NA> <NA> NA NA
## 2870 <NA> <NA> <NA> <NA> NA NA
## 2871 <NA> <NA> <NA> <NA> NA NA
## 2872 <NA> <NA> <NA> <NA> NA NA
## 2873 <NA> <NA> <NA> <NA> NA NA
## 2874 <NA> <NA> <NA> <NA> NA NA
## 2875 <NA> <NA> <NA> <NA> NA NA
## 2876 <NA> <NA> <NA> <NA> NA NA
## 2877 <NA> <NA> <NA> <NA> NA NA
## 2878 <NA> <NA> <NA> <NA> NA NA
## 2879 <NA> <NA> <NA> <NA> NA NA
## 2880 <NA> <NA> <NA> <NA> NA NA
## 2881 <NA> <NA> <NA> <NA> NA NA
## 2882 <NA> <NA> <NA> <NA> NA NA
## 2883 <NA> <NA> <NA> <NA> NA NA
## 2884 <NA> <NA> <NA> <NA> NA NA
## 2885 <NA> <NA> <NA> <NA> NA NA
## 2886 <NA> <NA> <NA> <NA> NA NA
## 2887 <NA> <NA> <NA> <NA> NA NA
## 2888 <NA> <NA> <NA> <NA> NA NA
## 2889 <NA> <NA> <NA> <NA> NA NA
## 2890 <NA> <NA> <NA> <NA> NA NA
## 2891 <NA> <NA> <NA> <NA> NA NA
## 2892 <NA> <NA> <NA> <NA> NA NA
## 2893 <NA> <NA> <NA> <NA> NA NA
## 2894 <NA> <NA> <NA> <NA> NA NA
## 2895 <NA> <NA> <NA> <NA> NA NA
## 2896 <NA> <NA> <NA> <NA> NA NA
## 2897 <NA> <NA> <NA> <NA> NA NA
## 2898 <NA> <NA> <NA> <NA> NA NA
## 2899 <NA> <NA> <NA> <NA> NA NA
## 2900 <NA> <NA> <NA> <NA> NA NA
## 2901 <NA> <NA> <NA> <NA> NA NA
## 2902 <NA> <NA> <NA> <NA> NA NA
## 2903 <NA> <NA> <NA> <NA> NA NA
## 2904 <NA> <NA> <NA> <NA> NA NA
## 2905 <NA> <NA> <NA> <NA> NA NA
## 2906 <NA> <NA> <NA> <NA> NA NA
## 2907 <NA> <NA> <NA> <NA> NA NA
## 2908 <NA> <NA> <NA> <NA> NA NA
## 2909 <NA> <NA> <NA> <NA> NA NA
## 2910 <NA> <NA> <NA> <NA> NA NA
## 2911 <NA> <NA> <NA> <NA> NA NA
## 2912 <NA> <NA> <NA> <NA> NA NA
## 2913 <NA> <NA> <NA> <NA> NA NA
## 2914 <NA> <NA> <NA> <NA> NA NA
## 2915 <NA> <NA> <NA> <NA> NA NA
## 2916 <NA> <NA> <NA> <NA> NA NA
## 2917 <NA> <NA> <NA> <NA> NA NA
## 2918 <NA> <NA> <NA> <NA> NA NA
## 2919 <NA> <NA> <NA> <NA> NA NA
## 2920 <NA> <NA> <NA> <NA> NA NA
## 2921 <NA> <NA> <NA> <NA> NA NA
## 2922 <NA> <NA> <NA> <NA> NA NA
## 2923 <NA> <NA> <NA> <NA> NA NA
## 2924 <NA> <NA> <NA> <NA> NA NA
## 2925 <NA> <NA> <NA> <NA> NA NA
## 2926 <NA> <NA> <NA> <NA> NA NA
## 2927 <NA> <NA> <NA> <NA> NA NA
## 2928 <NA> <NA> <NA> <NA> NA NA
## 2929 <NA> <NA> <NA> <NA> NA NA
## 2930 <NA> <NA> <NA> <NA> NA NA
## 2931 <NA> <NA> <NA> <NA> NA NA
## 2932 <NA> <NA> <NA> <NA> NA NA
## 2933 <NA> <NA> <NA> <NA> NA NA
## 2934 <NA> <NA> <NA> <NA> NA NA
## 2935 <NA> <NA> <NA> <NA> NA NA
## 2936 <NA> <NA> <NA> <NA> NA NA
## 2937 <NA> <NA> <NA> <NA> NA NA
## 2938 <NA> <NA> <NA> <NA> NA NA
## 2939 <NA> <NA> <NA> <NA> NA NA
## 2940 <NA> <NA> <NA> <NA> NA NA
## 2941 <NA> <NA> <NA> <NA> NA NA
## 2942 <NA> <NA> <NA> <NA> NA NA
## 2943 <NA> <NA> <NA> <NA> NA NA
## 2944 <NA> <NA> <NA> <NA> NA NA
## 2945 <NA> <NA> <NA> <NA> NA NA
## 2946 <NA> <NA> <NA> <NA> NA NA
## 2947 <NA> <NA> <NA> <NA> NA NA
## 2948 <NA> <NA> <NA> <NA> NA NA
## 2949 <NA> <NA> <NA> <NA> NA NA
## 2950 <NA> <NA> <NA> <NA> NA NA
## 2951 <NA> <NA> <NA> <NA> NA NA
## 2952 <NA> <NA> <NA> <NA> NA NA
## 2953 <NA> <NA> <NA> <NA> NA NA
## 2954 <NA> <NA> <NA> <NA> NA NA
## 2955 <NA> <NA> <NA> <NA> NA NA
## 2956 <NA> <NA> <NA> <NA> NA NA
## 2957 <NA> <NA> <NA> <NA> NA NA
## 2958 <NA> <NA> <NA> <NA> NA NA
## 2959 <NA> <NA> <NA> <NA> NA NA
## 2960 <NA> <NA> <NA> <NA> NA NA
## 2961 <NA> <NA> <NA> <NA> NA NA
## 2962 <NA> <NA> <NA> <NA> NA NA
## 2963 <NA> <NA> <NA> <NA> NA NA
## 2964 <NA> <NA> <NA> <NA> NA NA
## 2965 <NA> <NA> <NA> <NA> NA NA
## 2966 <NA> <NA> <NA> <NA> NA NA
## 2967 <NA> <NA> <NA> <NA> NA NA
## 2968 <NA> <NA> <NA> <NA> NA NA
## 2969 <NA> <NA> <NA> <NA> NA NA
## 2970 <NA> <NA> <NA> <NA> NA NA
## 2971 <NA> <NA> <NA> <NA> NA NA
## 2972 <NA> <NA> <NA> <NA> NA NA
## 2973 <NA> <NA> <NA> <NA> NA NA
## 2974 <NA> <NA> <NA> <NA> NA NA
## 2975 <NA> <NA> <NA> <NA> NA NA
## 2976 <NA> <NA> <NA> <NA> NA NA
## 2977 <NA> <NA> <NA> <NA> NA NA
## 2978 <NA> <NA> <NA> <NA> NA NA
## 2979 <NA> <NA> <NA> <NA> NA NA
## 2980 <NA> <NA> <NA> <NA> NA NA
## 2981 <NA> <NA> <NA> <NA> NA NA
## 2982 <NA> <NA> <NA> <NA> NA NA
## 2983 <NA> <NA> <NA> <NA> NA NA
## 2984 <NA> <NA> <NA> <NA> NA NA
## 2985 <NA> <NA> <NA> <NA> NA NA
## 2986 <NA> <NA> <NA> <NA> NA NA
## 2987 <NA> <NA> <NA> <NA> NA NA
## 2988 <NA> <NA> <NA> <NA> NA NA
## 2989 <NA> <NA> <NA> <NA> NA NA
## 2990 <NA> <NA> <NA> <NA> NA NA
## 2991 <NA> <NA> <NA> <NA> NA NA
## 2992 <NA> <NA> <NA> <NA> NA NA
## 2993 <NA> <NA> <NA> <NA> NA NA
## 2994 <NA> <NA> <NA> <NA> NA NA
## 2995 <NA> <NA> <NA> <NA> NA NA
## 2996 <NA> <NA> <NA> <NA> NA NA
## 2997 <NA> <NA> <NA> <NA> NA NA
## 2998 <NA> <NA> <NA> <NA> NA NA
## 2999 <NA> <NA> <NA> <NA> NA NA
## 3000 <NA> <NA> <NA> <NA> NA NA
## 3001 <NA> <NA> <NA> <NA> NA NA
## 3002 <NA> <NA> <NA> <NA> NA NA
## 3003 <NA> <NA> <NA> <NA> NA NA
## 3004 <NA> <NA> <NA> <NA> NA NA
## 3005 <NA> <NA> <NA> <NA> NA NA
## 3006 <NA> <NA> <NA> <NA> NA NA
## 3007 <NA> <NA> <NA> <NA> NA NA
## 3008 <NA> <NA> <NA> <NA> NA NA
## 3009 <NA> <NA> <NA> <NA> NA NA
## 3010 <NA> <NA> <NA> <NA> NA NA
## 3011 <NA> <NA> <NA> <NA> NA NA
## 3012 <NA> <NA> <NA> <NA> NA NA
## 3013 <NA> <NA> <NA> <NA> NA NA
## 3014 <NA> <NA> <NA> <NA> NA NA
## 3015 <NA> <NA> <NA> <NA> NA NA
## 3016 <NA> <NA> <NA> <NA> NA NA
## 3017 <NA> <NA> <NA> <NA> NA NA
## 3018 <NA> <NA> <NA> <NA> NA NA
## 3019 <NA> <NA> <NA> <NA> NA NA
## 3020 <NA> <NA> <NA> <NA> NA NA
## 3021 <NA> <NA> <NA> <NA> NA NA
## 3022 <NA> <NA> <NA> <NA> NA NA
## 3023 <NA> <NA> <NA> <NA> NA NA
## 3024 <NA> <NA> <NA> <NA> NA NA
## 3025 <NA> <NA> <NA> <NA> NA NA
## 3026 <NA> <NA> <NA> <NA> NA NA
## 3027 <NA> <NA> <NA> <NA> NA NA
## 3028 <NA> <NA> <NA> <NA> NA NA
## 3029 <NA> <NA> <NA> <NA> NA NA
## 3030 <NA> <NA> <NA> <NA> NA NA
## 3031 <NA> <NA> <NA> <NA> NA NA
## 3032 <NA> <NA> <NA> <NA> NA NA
## 3033 <NA> <NA> <NA> <NA> NA NA
## 3034 <NA> <NA> <NA> <NA> NA NA
## 3035 <NA> <NA> <NA> <NA> NA NA
## 3036 <NA> <NA> <NA> <NA> NA NA
## 3037 <NA> <NA> <NA> <NA> NA NA
## 3038 <NA> <NA> <NA> <NA> NA NA
## 3039 <NA> <NA> <NA> <NA> NA NA
## 3040 <NA> <NA> <NA> <NA> NA NA
## 3041 <NA> <NA> <NA> <NA> NA NA
## 3042 <NA> <NA> <NA> <NA> NA NA
## 3043 <NA> <NA> <NA> <NA> NA NA
## 3044 <NA> <NA> <NA> <NA> NA NA
## 3045 <NA> <NA> <NA> <NA> NA NA
## 3046 <NA> <NA> <NA> <NA> NA NA
## 3047 <NA> <NA> <NA> <NA> NA NA
## 3048 <NA> <NA> <NA> <NA> NA NA
## 3049 <NA> <NA> <NA> <NA> NA NA
## 3050 <NA> <NA> <NA> <NA> NA NA
## 3051 <NA> <NA> <NA> <NA> NA NA
## 3052 <NA> <NA> <NA> <NA> NA NA
## 3053 <NA> <NA> <NA> <NA> NA NA
## 3054 <NA> <NA> <NA> <NA> NA NA
## 3055 <NA> <NA> <NA> <NA> NA NA
## 3056 <NA> <NA> <NA> <NA> NA NA
## 3057 <NA> <NA> <NA> <NA> NA NA
## 3058 <NA> <NA> <NA> <NA> NA NA
## 3059 <NA> <NA> <NA> <NA> NA NA
## 3060 <NA> <NA> <NA> <NA> NA NA
## 3061 <NA> <NA> <NA> <NA> NA NA
## 3062 <NA> <NA> <NA> <NA> NA NA
## 3063 <NA> <NA> <NA> <NA> NA NA
## 3064 <NA> <NA> <NA> <NA> NA NA
## 3065 <NA> <NA> <NA> <NA> NA NA
## 3066 <NA> <NA> <NA> <NA> NA NA
## 3067 <NA> <NA> <NA> <NA> NA NA
## 3068 <NA> <NA> <NA> <NA> NA NA
## 3069 <NA> <NA> <NA> <NA> NA NA
## 3070 <NA> <NA> <NA> <NA> NA NA
## 3071 <NA> <NA> <NA> <NA> NA NA
## 3072 <NA> <NA> <NA> <NA> NA NA
## 3073 <NA> <NA> <NA> <NA> NA NA
## 3074 <NA> <NA> <NA> <NA> NA NA
## 3075 <NA> <NA> <NA> <NA> NA NA
## 3076 <NA> <NA> <NA> <NA> NA NA
## 3077 <NA> <NA> <NA> <NA> NA NA
## 3078 <NA> <NA> <NA> <NA> NA NA
## 3079 <NA> <NA> <NA> <NA> NA NA
## 3080 <NA> <NA> <NA> <NA> NA NA
## 3081 <NA> <NA> <NA> <NA> NA NA
## 3082 <NA> <NA> <NA> <NA> NA NA
## 3083 <NA> <NA> <NA> <NA> NA NA
## 3084 <NA> <NA> <NA> <NA> NA NA
## 3085 <NA> <NA> <NA> <NA> NA NA
## 3086 <NA> <NA> <NA> <NA> NA NA
## 3087 <NA> <NA> <NA> <NA> NA NA
## 3088 <NA> <NA> <NA> <NA> NA NA
## 3089 <NA> <NA> <NA> <NA> NA NA
## 3090 <NA> <NA> <NA> <NA> NA NA
## 3091 <NA> <NA> <NA> <NA> NA NA
## 3092 <NA> <NA> <NA> <NA> NA NA
## 3093 <NA> <NA> <NA> <NA> NA NA
## 3094 <NA> <NA> <NA> <NA> NA NA
## 3095 <NA> <NA> <NA> <NA> NA NA
## 3096 <NA> <NA> <NA> <NA> NA NA
## 3097 <NA> <NA> <NA> <NA> NA NA
## 3098 <NA> <NA> <NA> <NA> NA NA
## 3099 <NA> <NA> <NA> <NA> NA NA
## 3100 <NA> <NA> <NA> <NA> NA NA
## 3101 <NA> <NA> <NA> <NA> NA NA
## 3102 <NA> <NA> <NA> <NA> NA NA
## 3103 <NA> <NA> <NA> <NA> NA NA
## 3104 <NA> <NA> <NA> <NA> NA NA
## 3105 <NA> <NA> <NA> <NA> NA NA
## 3106 <NA> <NA> <NA> <NA> NA NA
## 3107 <NA> <NA> <NA> <NA> NA NA
## 3108 <NA> <NA> <NA> <NA> NA NA
## 3109 <NA> <NA> <NA> <NA> NA NA
## 3110 <NA> <NA> <NA> <NA> NA NA
## 3111 <NA> <NA> <NA> <NA> NA NA
## 3112 <NA> <NA> <NA> <NA> NA NA
## 3113 <NA> <NA> <NA> <NA> NA NA
## 3114 <NA> <NA> <NA> <NA> NA NA
## 3115 <NA> <NA> <NA> <NA> NA NA
## 3116 <NA> <NA> <NA> <NA> NA NA
## 3117 <NA> <NA> <NA> <NA> NA NA
## 3118 <NA> <NA> <NA> <NA> NA NA
## 3119 <NA> <NA> <NA> <NA> NA NA
## 3120 <NA> <NA> <NA> <NA> NA NA
## 3121 <NA> <NA> <NA> <NA> NA NA
## 3122 <NA> <NA> <NA> <NA> NA NA
## 3123 <NA> <NA> <NA> <NA> NA NA
## 3124 <NA> <NA> <NA> <NA> NA NA
## 3125 <NA> <NA> <NA> <NA> NA NA
## 3126 <NA> <NA> <NA> <NA> NA NA
## 3127 <NA> <NA> <NA> <NA> NA NA
## 3128 <NA> <NA> <NA> <NA> NA NA
## 3129 <NA> <NA> <NA> <NA> NA NA
## 3130 <NA> <NA> <NA> <NA> NA NA
## 3131 <NA> <NA> <NA> <NA> NA NA
## 3132 <NA> <NA> <NA> <NA> NA NA
## 3133 <NA> <NA> <NA> <NA> NA NA
## 3134 <NA> <NA> <NA> <NA> NA NA
## 3135 <NA> <NA> <NA> <NA> NA NA
## 3136 <NA> <NA> <NA> <NA> NA NA
## 3137 <NA> <NA> <NA> <NA> NA NA
## 3138 <NA> <NA> <NA> <NA> NA NA
## 3139 <NA> <NA> <NA> <NA> NA NA
## 3140 <NA> <NA> <NA> <NA> NA NA
## 3141 <NA> <NA> <NA> <NA> NA NA
## 3142 <NA> <NA> <NA> <NA> NA NA
## 3143 <NA> <NA> <NA> <NA> NA NA
## 3144 <NA> <NA> <NA> <NA> NA NA
## 3145 <NA> <NA> <NA> <NA> NA NA
## 3146 <NA> <NA> <NA> <NA> NA NA
## 3147 <NA> <NA> <NA> <NA> NA NA
## 3148 <NA> <NA> <NA> <NA> NA NA
## 3149 <NA> <NA> <NA> <NA> NA NA
## 3150 <NA> <NA> <NA> <NA> NA NA
## 3151 <NA> <NA> <NA> <NA> NA NA
## 3152 <NA> <NA> <NA> <NA> NA NA
## 3153 <NA> <NA> <NA> <NA> NA NA
## 3154 <NA> <NA> <NA> <NA> NA NA
## 3155 <NA> <NA> <NA> <NA> NA NA
## 3156 <NA> <NA> <NA> <NA> NA NA
## 3157 <NA> <NA> <NA> <NA> NA NA
## 3158 <NA> <NA> <NA> <NA> NA NA
## 3159 <NA> <NA> <NA> <NA> NA NA
## 3160 <NA> <NA> <NA> <NA> NA NA
## 3161 <NA> <NA> <NA> <NA> NA NA
## 3162 <NA> <NA> <NA> <NA> NA NA
## 3163 <NA> <NA> <NA> <NA> NA NA
## 3164 <NA> <NA> <NA> <NA> NA NA
## 3165 <NA> <NA> <NA> <NA> NA NA
## 3166 <NA> <NA> <NA> <NA> NA NA
## 3167 <NA> <NA> <NA> <NA> NA NA
## 3168 <NA> <NA> <NA> <NA> NA NA
## 3169 <NA> <NA> <NA> <NA> NA NA
## 3170 <NA> <NA> <NA> <NA> NA NA
## 3171 <NA> <NA> <NA> <NA> NA NA
## 3172 <NA> <NA> <NA> <NA> NA NA
## 3173 <NA> <NA> <NA> <NA> NA NA
## 3174 <NA> <NA> <NA> <NA> NA NA
## 3175 <NA> <NA> <NA> <NA> NA NA
## 3176 <NA> <NA> <NA> <NA> NA NA
## 3177 <NA> <NA> <NA> <NA> NA NA
## 3178 <NA> <NA> <NA> <NA> NA NA
## 3179 <NA> <NA> <NA> <NA> NA NA
## 3180 <NA> <NA> <NA> <NA> NA NA
## 3181 <NA> <NA> <NA> <NA> NA NA
## 3182 <NA> <NA> <NA> <NA> NA NA
## 3183 <NA> <NA> <NA> <NA> NA NA
## 3184 <NA> <NA> <NA> <NA> NA NA
## 3185 <NA> <NA> <NA> <NA> NA NA
## 3186 <NA> <NA> <NA> <NA> NA NA
## 3187 <NA> <NA> <NA> <NA> NA NA
## 3188 <NA> <NA> <NA> <NA> NA NA
## 3189 <NA> <NA> <NA> <NA> NA NA
## 3190 <NA> <NA> <NA> <NA> NA NA
## 3191 <NA> <NA> <NA> <NA> NA NA
## 3192 <NA> <NA> <NA> <NA> NA NA
## 3193 <NA> <NA> <NA> <NA> NA NA
## 3194 <NA> <NA> <NA> <NA> NA NA
## 3195 <NA> <NA> <NA> <NA> NA NA
## 3196 <NA> <NA> <NA> <NA> NA NA
## 3197 <NA> <NA> <NA> <NA> NA NA
## 3198 <NA> <NA> <NA> <NA> NA NA
## 3199 <NA> <NA> <NA> <NA> NA NA
## 3200 <NA> <NA> <NA> <NA> NA NA
## 3201 <NA> <NA> <NA> <NA> NA NA
## 3202 <NA> <NA> <NA> <NA> NA NA
## 3203 <NA> <NA> <NA> <NA> NA NA
## 3204 <NA> <NA> <NA> <NA> NA NA
## 3205 <NA> <NA> <NA> <NA> NA NA
## 3206 <NA> <NA> <NA> <NA> NA NA
## 3207 <NA> <NA> <NA> <NA> NA NA
## 3208 <NA> <NA> <NA> <NA> NA NA
## 3209 <NA> <NA> <NA> <NA> NA NA
## 3210 <NA> <NA> <NA> <NA> NA NA
## 3211 <NA> <NA> <NA> <NA> NA NA
## 3212 <NA> <NA> <NA> <NA> NA NA
## 3213 <NA> <NA> <NA> <NA> NA NA
## 3214 <NA> <NA> <NA> <NA> NA NA
## 3215 <NA> <NA> <NA> <NA> NA NA
## 3216 <NA> <NA> <NA> <NA> NA NA
## 3217 <NA> <NA> <NA> <NA> NA NA
## 3218 <NA> <NA> <NA> <NA> NA NA
## 3219 <NA> <NA> <NA> <NA> NA NA
## 3220 <NA> <NA> <NA> <NA> NA NA
## 3221 <NA> <NA> <NA> <NA> NA NA
## 3222 <NA> <NA> <NA> <NA> NA NA
## 3223 <NA> <NA> <NA> <NA> NA NA
## 3224 <NA> <NA> <NA> <NA> NA NA
## 3225 <NA> <NA> <NA> <NA> NA NA
## 3226 <NA> <NA> <NA> <NA> NA NA
## 3227 <NA> <NA> <NA> <NA> NA NA
## 3228 <NA> <NA> <NA> <NA> NA NA
## 3229 <NA> <NA> <NA> <NA> NA NA
## 3230 <NA> <NA> <NA> <NA> NA NA
## 3231 <NA> <NA> <NA> <NA> NA NA
## 3232 <NA> <NA> <NA> <NA> NA NA
## 3233 <NA> <NA> <NA> <NA> NA NA
## 3234 <NA> <NA> <NA> <NA> NA NA
## 3235 <NA> <NA> <NA> <NA> NA NA
## 3236 <NA> <NA> <NA> <NA> NA NA
## 3237 <NA> <NA> <NA> <NA> NA NA
## 3238 <NA> <NA> <NA> <NA> NA NA
## 3239 <NA> <NA> <NA> <NA> NA NA
## 3240 <NA> <NA> <NA> <NA> NA NA
## 3241 <NA> <NA> <NA> <NA> NA NA
## 3242 <NA> <NA> <NA> <NA> NA NA
## 3243 <NA> <NA> <NA> <NA> NA NA
## 3244 <NA> <NA> <NA> <NA> NA NA
## 3245 <NA> <NA> <NA> <NA> NA NA
## 3246 <NA> <NA> <NA> <NA> NA NA
## 3247 <NA> <NA> <NA> <NA> NA NA
## 3248 <NA> <NA> <NA> <NA> NA NA
## 3249 <NA> <NA> <NA> <NA> NA NA
## 3250 <NA> <NA> <NA> <NA> NA NA
## 3251 <NA> <NA> <NA> <NA> NA NA
## 3252 <NA> <NA> <NA> <NA> NA NA
## 3253 <NA> <NA> <NA> <NA> NA NA
## 3254 <NA> <NA> <NA> <NA> NA NA
## 3255 <NA> <NA> <NA> <NA> NA NA
## 3256 <NA> <NA> <NA> <NA> NA NA
## 3257 <NA> <NA> <NA> <NA> NA NA
## 3258 <NA> <NA> <NA> <NA> NA NA
## 3259 <NA> <NA> <NA> <NA> NA NA
## 3260 <NA> <NA> <NA> <NA> NA NA
## 3261 <NA> <NA> <NA> <NA> NA NA
## 3262 <NA> <NA> <NA> <NA> NA NA
## 3263 <NA> <NA> <NA> <NA> NA NA
## 3264 <NA> <NA> <NA> <NA> NA NA
## 3265 <NA> <NA> <NA> <NA> NA NA
## 3266 <NA> <NA> <NA> <NA> NA NA
## 3267 <NA> <NA> <NA> <NA> NA NA
## 3268 <NA> <NA> <NA> <NA> NA NA
## 3269 <NA> <NA> <NA> <NA> NA NA
## 3270 <NA> <NA> <NA> <NA> NA NA
## 3271 <NA> <NA> <NA> <NA> NA NA
## 3272 <NA> <NA> <NA> <NA> NA NA
## 3273 <NA> <NA> <NA> <NA> NA NA
## 3274 <NA> <NA> <NA> <NA> NA NA
## 3275 <NA> <NA> <NA> <NA> NA NA
## 3276 <NA> <NA> <NA> <NA> NA NA
## 3277 <NA> <NA> <NA> <NA> NA NA
## 3278 <NA> <NA> <NA> <NA> NA NA
## 3279 <NA> <NA> <NA> <NA> NA NA
## 3280 <NA> <NA> <NA> <NA> NA NA
## 3281 <NA> <NA> <NA> <NA> NA NA
## 3282 <NA> <NA> <NA> <NA> NA NA
## 3283 <NA> <NA> <NA> <NA> NA NA
## 3284 <NA> <NA> <NA> <NA> NA NA
## 3285 <NA> <NA> <NA> <NA> NA NA
## 3286 <NA> <NA> <NA> <NA> NA NA
## 3287 <NA> <NA> <NA> <NA> NA NA
## 3288 <NA> <NA> <NA> <NA> NA NA
## 3289 <NA> <NA> <NA> <NA> NA NA
## 3290 <NA> <NA> <NA> <NA> NA NA
## 3291 <NA> <NA> <NA> <NA> NA NA
## 3292 <NA> <NA> <NA> <NA> NA NA
## 3293 <NA> <NA> <NA> <NA> NA NA
## 3294 <NA> <NA> <NA> <NA> NA NA
## 3295 <NA> <NA> <NA> <NA> NA NA
## 3296 <NA> <NA> <NA> <NA> NA NA
## 3297 <NA> <NA> <NA> <NA> NA NA
## 3298 <NA> <NA> <NA> <NA> NA NA
## 3299 <NA> <NA> <NA> <NA> NA NA
## 3300 <NA> <NA> <NA> <NA> NA NA
## 3301 <NA> <NA> <NA> <NA> NA NA
## 3302 <NA> <NA> <NA> <NA> NA NA
## 3303 <NA> <NA> <NA> <NA> NA NA
## 3304 <NA> <NA> <NA> <NA> NA NA
## 3305 <NA> <NA> <NA> <NA> NA NA
## 3306 <NA> <NA> <NA> <NA> NA NA
## 3307 <NA> <NA> <NA> <NA> NA NA
## 3308 <NA> <NA> <NA> <NA> NA NA
## 3309 <NA> <NA> <NA> <NA> NA NA
## 3310 <NA> <NA> <NA> <NA> NA NA
## 3311 <NA> <NA> <NA> <NA> NA NA
## 3312 <NA> <NA> <NA> <NA> NA NA
## 3313 <NA> <NA> <NA> <NA> NA NA
## 3314 <NA> <NA> <NA> <NA> NA NA
## 3315 <NA> <NA> <NA> <NA> NA NA
## 3316 <NA> <NA> <NA> <NA> NA NA
## 3317 <NA> <NA> <NA> <NA> NA NA
## 3318 <NA> <NA> <NA> <NA> NA NA
## 3319 <NA> <NA> <NA> <NA> NA NA
## 3320 <NA> <NA> <NA> <NA> NA NA
## 3321 <NA> <NA> <NA> <NA> NA NA
## 3322 <NA> <NA> <NA> <NA> NA NA
## 3323 <NA> <NA> <NA> <NA> NA NA
## 3324 <NA> <NA> <NA> <NA> NA NA
## 3325 <NA> <NA> <NA> <NA> NA NA
## 3326 <NA> <NA> <NA> <NA> NA NA
## 3327 <NA> <NA> <NA> <NA> NA NA
## 3328 <NA> <NA> <NA> <NA> NA NA
## 3329 <NA> <NA> <NA> <NA> NA NA
## 3330 <NA> <NA> <NA> <NA> NA NA
## 3331 <NA> <NA> <NA> <NA> NA NA
## 3332 <NA> <NA> <NA> <NA> NA NA
## 3333 <NA> <NA> <NA> <NA> NA NA
## 3334 <NA> <NA> <NA> <NA> NA NA
## 3335 <NA> <NA> <NA> <NA> NA NA
## 3336 <NA> <NA> <NA> <NA> NA NA
## 3337 <NA> <NA> <NA> <NA> NA NA
## 3338 <NA> <NA> <NA> <NA> NA NA
## 3339 <NA> <NA> <NA> <NA> NA NA
## 3340 <NA> <NA> <NA> <NA> NA NA
## 3341 <NA> <NA> <NA> <NA> NA NA
## 3342 <NA> <NA> <NA> <NA> NA NA
## 3343 <NA> <NA> <NA> <NA> NA NA
## 3344 <NA> <NA> <NA> <NA> NA NA
## 3345 <NA> <NA> <NA> <NA> NA NA
## 3346 <NA> <NA> <NA> <NA> NA NA
## 3347 <NA> <NA> <NA> <NA> NA NA
## 3348 <NA> <NA> <NA> <NA> NA NA
## 3349 <NA> <NA> <NA> <NA> NA NA
## 3350 <NA> <NA> <NA> <NA> NA NA
## 3351 <NA> <NA> <NA> <NA> NA NA
## 3352 <NA> <NA> <NA> <NA> NA NA
## 3353 <NA> <NA> <NA> <NA> NA NA
## 3354 <NA> <NA> <NA> <NA> NA NA
## 3355 <NA> <NA> <NA> <NA> NA NA
## 3356 <NA> <NA> <NA> <NA> NA NA
## 3357 <NA> <NA> <NA> <NA> NA NA
## 3358 <NA> <NA> <NA> <NA> NA NA
## 3359 <NA> <NA> <NA> <NA> NA NA
## 3360 <NA> <NA> <NA> <NA> NA NA
## 3361 <NA> <NA> <NA> <NA> NA NA
## 3362 <NA> <NA> <NA> <NA> NA NA
## 3363 <NA> <NA> <NA> <NA> NA NA
## 3364 <NA> <NA> <NA> <NA> NA NA
## 3365 <NA> <NA> <NA> <NA> NA NA
## 3366 <NA> <NA> <NA> <NA> NA NA
## 3367 <NA> <NA> <NA> <NA> NA NA
## 3368 <NA> <NA> <NA> <NA> NA NA
## 3369 <NA> <NA> <NA> <NA> NA NA
## 3370 <NA> <NA> <NA> <NA> NA NA
## 3371 <NA> <NA> <NA> <NA> NA NA
## 3372 <NA> <NA> <NA> <NA> NA NA
## 3373 <NA> <NA> <NA> <NA> NA NA
## 3374 <NA> <NA> <NA> <NA> NA NA
## 3375 <NA> <NA> <NA> <NA> NA NA
## 3376 <NA> <NA> <NA> <NA> NA NA
## 3377 <NA> <NA> <NA> <NA> NA NA
## 3378 <NA> <NA> <NA> <NA> NA NA
## 3379 <NA> <NA> <NA> <NA> NA NA
## 3380 <NA> <NA> <NA> <NA> NA NA
## 3381 <NA> <NA> <NA> <NA> NA NA
## 3382 <NA> <NA> <NA> <NA> NA NA
## 3383 <NA> <NA> <NA> <NA> NA NA
## 3384 <NA> <NA> <NA> <NA> NA NA
## 3385 <NA> <NA> <NA> <NA> NA NA
## 3386 <NA> <NA> <NA> <NA> NA NA
## 3387 <NA> <NA> <NA> <NA> NA NA
## 3388 <NA> <NA> <NA> <NA> NA NA
## 3389 <NA> <NA> <NA> <NA> NA NA
## 3390 <NA> <NA> <NA> <NA> NA NA
## 3391 <NA> <NA> <NA> <NA> NA NA
## 3392 <NA> <NA> <NA> <NA> NA NA
## 3393 <NA> <NA> <NA> <NA> NA NA
## 3394 <NA> <NA> <NA> <NA> NA NA
## 3395 <NA> <NA> <NA> <NA> NA NA
## 3396 <NA> <NA> <NA> <NA> NA NA
## 3397 <NA> <NA> <NA> <NA> NA NA
## 3398 <NA> <NA> <NA> <NA> NA NA
## 3399 <NA> <NA> <NA> <NA> NA NA
## 3400 <NA> <NA> <NA> <NA> NA NA
## 3401 <NA> <NA> <NA> <NA> NA NA
## 3402 <NA> <NA> <NA> <NA> NA NA
## 3403 <NA> <NA> <NA> <NA> NA NA
## 3404 <NA> <NA> <NA> <NA> NA NA
## 3405 <NA> <NA> <NA> <NA> NA NA
## 3406 <NA> <NA> <NA> <NA> NA NA
## 3407 <NA> <NA> <NA> <NA> NA NA
## 3408 <NA> <NA> <NA> <NA> NA NA
## 3409 <NA> <NA> <NA> <NA> NA NA
## 3410 <NA> <NA> <NA> <NA> NA NA
## 3411 <NA> <NA> <NA> <NA> NA NA
## 3412 <NA> <NA> <NA> <NA> NA NA
## 3413 <NA> <NA> <NA> <NA> NA NA
## 3414 <NA> <NA> <NA> <NA> NA NA
## 3415 <NA> <NA> <NA> <NA> NA NA
## 3416 <NA> <NA> <NA> <NA> NA NA
## 3417 <NA> <NA> <NA> <NA> NA NA
## 3418 <NA> <NA> <NA> <NA> NA NA
## 3419 <NA> <NA> <NA> <NA> NA NA
## 3420 <NA> <NA> <NA> <NA> NA NA
## 3421 <NA> <NA> <NA> <NA> NA NA
## 3422 <NA> <NA> <NA> <NA> NA NA
## 3423 <NA> <NA> <NA> <NA> NA NA
## 3424 <NA> <NA> <NA> <NA> NA NA
## 3425 <NA> <NA> <NA> <NA> NA NA
## 3426 <NA> <NA> <NA> <NA> NA NA
## 3427 <NA> <NA> <NA> <NA> NA NA
## 3428 <NA> <NA> <NA> <NA> NA NA
## 3429 <NA> <NA> <NA> <NA> NA NA
## 3430 <NA> <NA> <NA> <NA> NA NA
## 3431 <NA> <NA> <NA> <NA> NA NA
## 3432 <NA> <NA> <NA> <NA> NA NA
## 3433 <NA> <NA> <NA> <NA> NA NA
## 3434 <NA> <NA> <NA> <NA> NA NA
## 3435 <NA> <NA> <NA> <NA> NA NA
## 3436 <NA> <NA> <NA> <NA> NA NA
## 3437 <NA> <NA> <NA> <NA> NA NA
## 3438 <NA> <NA> <NA> <NA> NA NA
## 3439 <NA> <NA> <NA> <NA> NA NA
## 3440 <NA> <NA> <NA> <NA> NA NA
## 3441 <NA> <NA> <NA> <NA> NA NA
## 3442 <NA> <NA> <NA> <NA> NA NA
## 3443 <NA> <NA> <NA> <NA> NA NA
## 3444 <NA> <NA> <NA> <NA> NA NA
## 3445 <NA> <NA> <NA> <NA> NA NA
## 3446 <NA> <NA> <NA> <NA> NA NA
## 3447 <NA> <NA> <NA> <NA> NA NA
## 3448 <NA> <NA> <NA> <NA> NA NA
## 3449 <NA> <NA> <NA> <NA> NA NA
## 3450 <NA> <NA> <NA> <NA> NA NA
## 3451 <NA> <NA> <NA> <NA> NA NA
## 3452 <NA> <NA> <NA> <NA> NA NA
## 3453 <NA> <NA> <NA> <NA> NA NA
## 3454 <NA> <NA> <NA> <NA> NA NA
## 3455 <NA> <NA> <NA> <NA> NA NA
## 3456 <NA> <NA> <NA> <NA> NA NA
## 3457 <NA> <NA> <NA> <NA> NA NA
## 3458 <NA> <NA> <NA> <NA> NA NA
## 3459 <NA> <NA> <NA> <NA> NA NA
## 3460 <NA> <NA> <NA> <NA> NA NA
## 3461 <NA> <NA> <NA> <NA> NA NA
## 3462 <NA> <NA> <NA> <NA> NA NA
## 3463 <NA> <NA> <NA> <NA> NA NA
## 3464 <NA> <NA> <NA> <NA> NA NA
## 3465 <NA> <NA> <NA> <NA> NA NA
## 3466 <NA> <NA> <NA> <NA> NA NA
## 3467 <NA> <NA> <NA> <NA> NA NA
## 3468 <NA> <NA> <NA> <NA> NA NA
## 3469 <NA> <NA> <NA> <NA> NA NA
## 3470 <NA> <NA> <NA> <NA> NA NA
## 3471 <NA> <NA> <NA> <NA> NA NA
## 3472 <NA> <NA> <NA> <NA> NA NA
## 3473 <NA> <NA> <NA> <NA> NA NA
## 3474 <NA> <NA> <NA> <NA> NA NA
## 3475 <NA> <NA> <NA> <NA> NA NA
## 3476 <NA> <NA> <NA> <NA> NA NA
## 3477 <NA> <NA> <NA> <NA> NA NA
## 3478 <NA> <NA> <NA> <NA> NA NA
## 3479 <NA> <NA> <NA> <NA> NA NA
## 3480 <NA> <NA> <NA> <NA> NA NA
## 3481 <NA> <NA> <NA> <NA> NA NA
## 3482 <NA> <NA> <NA> <NA> NA NA
## 3483 <NA> <NA> <NA> <NA> NA NA
## 3484 <NA> <NA> <NA> <NA> NA NA
## 3485 <NA> <NA> <NA> <NA> NA NA
## 3486 <NA> <NA> <NA> <NA> NA NA
## 3487 <NA> <NA> <NA> <NA> NA NA
## 3488 <NA> <NA> <NA> <NA> NA NA
## 3489 <NA> <NA> <NA> <NA> NA NA
## 3490 <NA> <NA> <NA> <NA> NA NA
## 3491 <NA> <NA> <NA> <NA> NA NA
## 3492 <NA> <NA> <NA> <NA> NA NA
## 3493 <NA> <NA> <NA> <NA> NA NA
## 3494 <NA> <NA> <NA> <NA> NA NA
## 3495 <NA> <NA> <NA> <NA> NA NA
## 3496 <NA> <NA> <NA> <NA> NA NA
## 3497 <NA> <NA> <NA> <NA> NA NA
## 3498 <NA> <NA> <NA> <NA> NA NA
## 3499 <NA> <NA> <NA> <NA> NA NA
## 3500 <NA> <NA> <NA> <NA> NA NA
## 3501 <NA> <NA> <NA> <NA> NA NA
## 3502 <NA> <NA> <NA> <NA> NA NA
## 3503 <NA> <NA> <NA> <NA> NA NA
## 3504 <NA> <NA> <NA> <NA> NA NA
## 3505 <NA> <NA> <NA> <NA> NA NA
## 3506 <NA> <NA> <NA> <NA> NA NA
## 3507 <NA> <NA> <NA> <NA> NA NA
## 3508 <NA> <NA> <NA> <NA> NA NA
## 3509 <NA> <NA> <NA> <NA> NA NA
## 3510 <NA> <NA> <NA> <NA> NA NA
## 3511 <NA> <NA> <NA> <NA> NA NA
## 3512 <NA> <NA> <NA> <NA> NA NA
## 3513 <NA> <NA> <NA> <NA> NA NA
## 3514 <NA> <NA> <NA> <NA> NA NA
## 3515 <NA> <NA> <NA> <NA> NA NA
## 3516 <NA> <NA> <NA> <NA> NA NA
## 3517 <NA> <NA> <NA> <NA> NA NA
## 3518 <NA> <NA> <NA> <NA> NA NA
## 3519 <NA> <NA> <NA> <NA> NA NA
## 3520 <NA> <NA> <NA> <NA> NA NA
## 3521 <NA> <NA> <NA> <NA> NA NA
## 3522 <NA> <NA> <NA> <NA> NA NA
## 3523 <NA> <NA> <NA> <NA> NA NA
## 3524 <NA> <NA> <NA> <NA> NA NA
## 3525 <NA> <NA> <NA> <NA> NA NA
## 3526 <NA> <NA> <NA> <NA> NA NA
## 3527 <NA> <NA> <NA> <NA> NA NA
## 3528 <NA> <NA> <NA> <NA> NA NA
## 3529 <NA> <NA> <NA> <NA> NA NA
## 3530 <NA> <NA> <NA> <NA> NA NA
## 3531 <NA> <NA> <NA> <NA> NA NA
## 3532 <NA> <NA> <NA> <NA> NA NA
## 3533 <NA> <NA> <NA> <NA> NA NA
## 3534 <NA> <NA> <NA> <NA> NA NA
## 3535 <NA> <NA> <NA> <NA> NA NA
## 3536 <NA> <NA> <NA> <NA> NA NA
## 3537 <NA> <NA> <NA> <NA> NA NA
## 3538 <NA> <NA> <NA> <NA> NA NA
## 3539 <NA> <NA> <NA> <NA> NA NA
## 3540 <NA> <NA> <NA> <NA> NA NA
## 3541 <NA> <NA> <NA> <NA> NA NA
## 3542 <NA> <NA> <NA> <NA> NA NA
## 3543 <NA> <NA> <NA> <NA> NA NA
## 3544 <NA> <NA> <NA> <NA> NA NA
## 3545 <NA> <NA> <NA> <NA> NA NA
## 3546 <NA> <NA> <NA> <NA> NA NA
## 3547 <NA> <NA> <NA> <NA> NA NA
## 3548 <NA> <NA> <NA> <NA> NA NA
## 3549 <NA> <NA> <NA> <NA> NA NA
## 3550 <NA> <NA> <NA> <NA> NA NA
## 3551 <NA> <NA> <NA> <NA> NA NA
## 3552 <NA> <NA> <NA> <NA> NA NA
## 3553 <NA> <NA> <NA> <NA> NA NA
## 3554 <NA> <NA> <NA> <NA> NA NA
## 3555 <NA> <NA> <NA> <NA> NA NA
## 3556 <NA> <NA> <NA> <NA> NA NA
## 3557 <NA> <NA> <NA> <NA> NA NA
## 3558 <NA> <NA> <NA> <NA> NA NA
## 3559 <NA> <NA> <NA> <NA> NA NA
## 3560 <NA> <NA> <NA> <NA> NA NA
## 3561 <NA> <NA> <NA> <NA> NA NA
## 3562 <NA> <NA> <NA> <NA> NA NA
## 3563 <NA> <NA> <NA> <NA> NA NA
## 3564 <NA> <NA> <NA> <NA> NA NA
## 3565 <NA> <NA> <NA> <NA> NA NA
## 3566 <NA> <NA> <NA> <NA> NA NA
## 3567 <NA> <NA> <NA> <NA> NA NA
## 3568 <NA> <NA> <NA> <NA> NA NA
## 3569 <NA> <NA> <NA> <NA> NA NA
## 3570 <NA> <NA> <NA> <NA> NA NA
## 3571 <NA> <NA> <NA> <NA> NA NA
## 3572 <NA> <NA> <NA> <NA> NA NA
## 3573 <NA> <NA> <NA> <NA> NA NA
## 3574 <NA> <NA> <NA> <NA> NA NA
## 3575 <NA> <NA> <NA> <NA> NA NA
## 3576 <NA> <NA> <NA> <NA> NA NA
## 3577 <NA> <NA> <NA> <NA> NA NA
## 3578 <NA> <NA> <NA> <NA> NA NA
## 3579 <NA> <NA> <NA> <NA> NA NA
## 3580 <NA> <NA> <NA> <NA> NA NA
## 3581 <NA> <NA> <NA> <NA> NA NA
## 3582 <NA> <NA> <NA> <NA> NA NA
## 3583 <NA> <NA> <NA> <NA> NA NA
## 3584 <NA> <NA> <NA> <NA> NA NA
## 3585 <NA> <NA> <NA> <NA> NA NA
## 3586 <NA> <NA> <NA> <NA> NA NA
## 3587 <NA> <NA> <NA> <NA> NA NA
## 3588 <NA> <NA> <NA> <NA> NA NA
## 3589 <NA> <NA> <NA> <NA> NA NA
## 3590 <NA> <NA> <NA> <NA> NA NA
## 3591 <NA> <NA> <NA> <NA> NA NA
## 3592 <NA> <NA> <NA> <NA> NA NA
## 3593 <NA> <NA> <NA> <NA> NA NA
## 3594 <NA> <NA> <NA> <NA> NA NA
## 3595 <NA> <NA> <NA> <NA> NA NA
## 3596 <NA> <NA> <NA> <NA> NA NA
## 3597 <NA> <NA> <NA> <NA> NA NA
## 3598 <NA> <NA> <NA> <NA> NA NA
## 3599 <NA> <NA> <NA> <NA> NA NA
## 3600 <NA> <NA> <NA> <NA> NA NA
## 3601 <NA> <NA> <NA> <NA> NA NA
## 3602 <NA> <NA> <NA> <NA> NA NA
## 3603 <NA> <NA> <NA> <NA> NA NA
## 3604 <NA> <NA> <NA> <NA> NA NA
## 3605 <NA> <NA> <NA> <NA> NA NA
## 3606 <NA> <NA> <NA> <NA> NA NA
## 3607 <NA> <NA> <NA> <NA> NA NA
## 3608 <NA> <NA> <NA> <NA> NA NA
## 3609 <NA> <NA> <NA> <NA> NA NA
## 3610 <NA> <NA> <NA> <NA> NA NA
## 3611 <NA> <NA> <NA> <NA> NA NA
## 3612 <NA> <NA> <NA> <NA> NA NA
## 3613 <NA> <NA> <NA> <NA> NA NA
## 3614 <NA> <NA> <NA> <NA> NA NA
## 3615 <NA> <NA> <NA> <NA> NA NA
## 3616 <NA> <NA> <NA> <NA> NA NA
## 3617 <NA> <NA> <NA> <NA> NA NA
## 3618 <NA> <NA> <NA> <NA> NA NA
## 3619 <NA> <NA> <NA> <NA> NA NA
## 3620 <NA> <NA> <NA> <NA> NA NA
## 3621 <NA> <NA> <NA> <NA> NA NA
## 3622 <NA> <NA> <NA> <NA> NA NA
## 3623 <NA> <NA> <NA> <NA> NA NA
## 3624 <NA> <NA> <NA> <NA> NA NA
## 3625 <NA> <NA> <NA> <NA> NA NA
## 3626 <NA> <NA> <NA> <NA> NA NA
## 3627 <NA> <NA> <NA> <NA> NA NA
## 3628 <NA> <NA> <NA> <NA> NA NA
## 3629 <NA> <NA> <NA> <NA> NA NA
## 3630 <NA> <NA> <NA> <NA> NA NA
## 3631 <NA> <NA> <NA> <NA> NA NA
## 3632 <NA> <NA> <NA> <NA> NA NA
## 3633 <NA> <NA> <NA> <NA> NA NA
## 3634 <NA> <NA> <NA> <NA> NA NA
## 3635 <NA> <NA> <NA> <NA> NA NA
## 3636 <NA> <NA> <NA> <NA> NA NA
## 3637 <NA> <NA> <NA> <NA> NA NA
## 3638 <NA> <NA> <NA> <NA> NA NA
## 3639 <NA> <NA> <NA> <NA> NA NA
## 3640 <NA> <NA> <NA> <NA> NA NA
## 3641 <NA> <NA> <NA> <NA> NA NA
## 3642 <NA> <NA> <NA> <NA> NA NA
## 3643 <NA> <NA> <NA> <NA> NA NA
## 3644 <NA> <NA> <NA> <NA> NA NA
## 3645 <NA> <NA> <NA> <NA> NA NA
## 3646 <NA> <NA> <NA> <NA> NA NA
## 3647 <NA> <NA> <NA> <NA> NA NA
## 3648 <NA> <NA> <NA> <NA> NA NA
## 3649 <NA> <NA> <NA> <NA> NA NA
## 3650 <NA> <NA> <NA> <NA> NA NA
## 3651 <NA> <NA> <NA> <NA> NA NA
## 3652 <NA> <NA> <NA> <NA> NA NA
## 3653 <NA> <NA> <NA> <NA> NA NA
## 3654 <NA> <NA> <NA> <NA> NA NA
## 3655 <NA> <NA> <NA> <NA> NA NA
## 3656 <NA> <NA> <NA> <NA> NA NA
## 3657 <NA> <NA> <NA> <NA> NA NA
## 3658 <NA> <NA> <NA> <NA> NA NA
## 3659 <NA> <NA> <NA> <NA> NA NA
## 3660 <NA> <NA> <NA> <NA> NA NA
## 3661 <NA> <NA> <NA> <NA> NA NA
## 3662 <NA> <NA> <NA> <NA> NA NA
## 3663 <NA> <NA> <NA> <NA> NA NA
## 3664 <NA> <NA> <NA> <NA> NA NA
## 3665 <NA> <NA> <NA> <NA> NA NA
## 3666 <NA> <NA> <NA> <NA> NA NA
## 3667 <NA> <NA> <NA> <NA> NA NA
## 3668 <NA> <NA> <NA> <NA> NA NA
## 3669 <NA> <NA> <NA> <NA> NA NA
## 3670 <NA> <NA> <NA> <NA> NA NA
## 3671 <NA> <NA> <NA> <NA> NA NA
## 3672 <NA> <NA> <NA> <NA> NA NA
## 3673 <NA> <NA> <NA> <NA> NA NA
## 3674 <NA> <NA> <NA> <NA> NA NA
## 3675 <NA> <NA> <NA> <NA> NA NA
## 3676 <NA> <NA> <NA> <NA> NA NA
## 3677 <NA> <NA> <NA> <NA> NA NA
## 3678 <NA> <NA> <NA> <NA> NA NA
## 3679 <NA> <NA> <NA> <NA> NA NA
## 3680 <NA> <NA> <NA> <NA> NA NA
## 3681 <NA> <NA> <NA> <NA> NA NA
## 3682 <NA> <NA> <NA> <NA> NA NA
## 3683 <NA> <NA> <NA> <NA> NA NA
## 3684 <NA> <NA> <NA> <NA> NA NA
## 3685 <NA> <NA> <NA> <NA> NA NA
## 3686 <NA> <NA> <NA> <NA> NA NA
## 3687 <NA> <NA> <NA> <NA> NA NA
## 3688 <NA> <NA> <NA> <NA> NA NA
## 3689 <NA> <NA> <NA> <NA> NA NA
## 3690 <NA> <NA> <NA> <NA> NA NA
## 3691 <NA> <NA> <NA> <NA> NA NA
## 3692 <NA> <NA> <NA> <NA> NA NA
## 3693 <NA> <NA> <NA> <NA> NA NA
## 3694 <NA> <NA> <NA> <NA> NA NA
## 3695 <NA> <NA> <NA> <NA> NA NA
## 3696 <NA> <NA> <NA> <NA> NA NA
## 3697 <NA> <NA> <NA> <NA> NA NA
## 3698 <NA> <NA> <NA> <NA> NA NA
## 3699 <NA> <NA> <NA> <NA> NA NA
## 3700 <NA> <NA> <NA> <NA> NA NA
## 3701 <NA> <NA> <NA> <NA> NA NA
## 3702 <NA> <NA> <NA> <NA> NA NA
## 3703 <NA> <NA> <NA> <NA> NA NA
## 3704 <NA> <NA> <NA> <NA> NA NA
## 3705 <NA> <NA> <NA> <NA> NA NA
## 3706 <NA> <NA> <NA> <NA> NA NA
## 3707 <NA> <NA> <NA> <NA> NA NA
## 3708 <NA> <NA> <NA> <NA> NA NA
## 3709 <NA> <NA> <NA> <NA> NA NA
## 3710 <NA> <NA> <NA> <NA> NA NA
## 3711 <NA> <NA> <NA> <NA> NA NA
## 3712 <NA> <NA> <NA> <NA> NA NA
## 3713 <NA> <NA> <NA> <NA> NA NA
## 3714 <NA> <NA> <NA> <NA> NA NA
## 3715 <NA> <NA> <NA> <NA> NA NA
## 3716 <NA> <NA> <NA> <NA> NA NA
## 3717 <NA> <NA> <NA> <NA> NA NA
## 3718 <NA> <NA> <NA> <NA> NA NA
## 3719 <NA> <NA> <NA> <NA> NA NA
## 3720 <NA> <NA> <NA> <NA> NA NA
## 3721 <NA> <NA> <NA> <NA> NA NA
## 3722 <NA> <NA> <NA> <NA> NA NA
## 3723 <NA> <NA> <NA> <NA> NA NA
## 3724 <NA> <NA> <NA> <NA> NA NA
## 3725 <NA> <NA> <NA> <NA> NA NA
## 3726 <NA> <NA> <NA> <NA> NA NA
## 3727 <NA> <NA> <NA> <NA> NA NA
## 3728 <NA> <NA> <NA> <NA> NA NA
## 3729 <NA> <NA> <NA> <NA> NA NA
## 3730 <NA> <NA> <NA> <NA> NA NA
## 3731 <NA> <NA> <NA> <NA> NA NA
## 3732 <NA> <NA> <NA> <NA> NA NA
## 3733 <NA> <NA> <NA> <NA> NA NA
## 3734 <NA> <NA> <NA> <NA> NA NA
## 3735 <NA> <NA> <NA> <NA> NA NA
## 3736 <NA> <NA> <NA> <NA> NA NA
## 3737 <NA> <NA> <NA> <NA> NA NA
## 3738 <NA> <NA> <NA> <NA> NA NA
## 3739 <NA> <NA> <NA> <NA> NA NA
## 3740 <NA> <NA> <NA> <NA> NA NA
## 3741 <NA> <NA> <NA> <NA> NA NA
## 3742 <NA> <NA> <NA> <NA> NA NA
## 3743 <NA> <NA> <NA> <NA> NA NA
## 3744 <NA> <NA> <NA> <NA> NA NA
## 3745 <NA> <NA> <NA> <NA> NA NA
## 3746 <NA> <NA> <NA> <NA> NA NA
## 3747 <NA> <NA> <NA> <NA> NA NA
## 3748 <NA> <NA> <NA> <NA> NA NA
## 3749 <NA> <NA> <NA> <NA> NA NA
## 3750 <NA> <NA> <NA> <NA> NA NA
## 3751 <NA> <NA> <NA> <NA> NA NA
## 3752 <NA> <NA> <NA> <NA> NA NA
## 3753 <NA> <NA> <NA> <NA> NA NA
## 3754 <NA> <NA> <NA> <NA> NA NA
## 3755 <NA> <NA> <NA> <NA> NA NA
## 3756 <NA> <NA> <NA> <NA> NA NA
## 3757 <NA> <NA> <NA> <NA> NA NA
## 3758 <NA> <NA> <NA> <NA> NA NA
## 3759 <NA> <NA> <NA> <NA> NA NA
## 3760 <NA> <NA> <NA> <NA> NA NA
## 3761 <NA> <NA> <NA> <NA> NA NA
## 3762 <NA> <NA> <NA> <NA> NA NA
## 3763 <NA> <NA> <NA> <NA> NA NA
## 3764 <NA> <NA> <NA> <NA> NA NA
## 3765 <NA> <NA> <NA> <NA> NA NA
## 3766 <NA> <NA> <NA> <NA> NA NA
## 3767 <NA> <NA> <NA> <NA> NA NA
## 3768 <NA> <NA> <NA> <NA> NA NA
## 3769 <NA> <NA> <NA> <NA> NA NA
## 3770 <NA> <NA> <NA> <NA> NA NA
## 3771 <NA> <NA> <NA> <NA> NA NA
## 3772 <NA> <NA> <NA> <NA> NA NA
## 3773 <NA> <NA> <NA> <NA> NA NA
## 3774 <NA> <NA> <NA> <NA> NA NA
## 3775 <NA> <NA> <NA> <NA> NA NA
## 3776 <NA> <NA> <NA> <NA> NA NA
## 3777 <NA> <NA> <NA> <NA> NA NA
## 3778 <NA> <NA> <NA> <NA> NA NA
## 3779 <NA> <NA> <NA> <NA> NA NA
## 3780 <NA> <NA> <NA> <NA> NA NA
## 3781 <NA> <NA> <NA> <NA> NA NA
## 3782 <NA> <NA> <NA> <NA> NA NA
## 3783 <NA> <NA> <NA> <NA> NA NA
## 3784 <NA> <NA> <NA> <NA> NA NA
## 3785 <NA> <NA> <NA> <NA> NA NA
## 3786 <NA> <NA> <NA> <NA> NA NA
## 3787 <NA> <NA> <NA> <NA> NA NA
## 3788 <NA> <NA> <NA> <NA> NA NA
## 3789 <NA> <NA> <NA> <NA> NA NA
## 3790 <NA> <NA> <NA> <NA> NA NA
## 3791 <NA> <NA> <NA> <NA> NA NA
## 3792 <NA> <NA> <NA> <NA> NA NA
## 3793 <NA> <NA> <NA> <NA> NA NA
## 3794 <NA> <NA> <NA> <NA> NA NA
## 3795 <NA> <NA> <NA> <NA> NA NA
## 3796 <NA> <NA> <NA> <NA> NA NA
## 3797 <NA> <NA> <NA> <NA> NA NA
## 3798 <NA> <NA> <NA> <NA> NA NA
## 3799 <NA> <NA> <NA> <NA> NA NA
## 3800 <NA> <NA> <NA> <NA> NA NA
## 3801 <NA> <NA> <NA> <NA> NA NA
## 3802 <NA> <NA> <NA> <NA> NA NA
## 3803 <NA> <NA> <NA> <NA> NA NA
## 3804 <NA> <NA> <NA> <NA> NA NA
## 3805 <NA> <NA> <NA> <NA> NA NA
## 3806 <NA> <NA> <NA> <NA> NA NA
## 3807 <NA> <NA> <NA> <NA> NA NA
## 3808 <NA> <NA> <NA> <NA> NA NA
## 3809 <NA> <NA> <NA> <NA> NA NA
## 3810 <NA> <NA> <NA> <NA> NA NA
## 3811 <NA> <NA> <NA> <NA> NA NA
## 3812 <NA> <NA> <NA> <NA> NA NA
## 3813 <NA> <NA> <NA> <NA> NA NA
## 3814 <NA> <NA> <NA> <NA> NA NA
## 3815 <NA> <NA> <NA> <NA> NA NA
## 3816 <NA> <NA> <NA> <NA> NA NA
## 3817 <NA> <NA> <NA> <NA> NA NA
## 3818 <NA> <NA> <NA> <NA> NA NA
## 3819 <NA> <NA> <NA> <NA> NA NA
## 3820 <NA> <NA> <NA> <NA> NA NA
## 3821 <NA> <NA> <NA> <NA> NA NA
## 3822 <NA> <NA> <NA> <NA> NA NA
## 3823 <NA> <NA> <NA> <NA> NA NA
## 3824 <NA> <NA> <NA> <NA> NA NA
## 3825 <NA> <NA> <NA> <NA> NA NA
## 3826 <NA> <NA> <NA> <NA> NA NA
## 3827 <NA> <NA> <NA> <NA> NA NA
## 3828 <NA> <NA> <NA> <NA> NA NA
## 3829 <NA> <NA> <NA> <NA> NA NA
## 3830 <NA> <NA> <NA> <NA> NA NA
## 3831 <NA> <NA> <NA> <NA> NA NA
## 3832 <NA> <NA> <NA> <NA> NA NA
## 3833 <NA> <NA> <NA> <NA> NA NA
## 3834 <NA> <NA> <NA> <NA> NA NA
## 3835 <NA> <NA> <NA> <NA> NA NA
## 3836 <NA> <NA> <NA> <NA> NA NA
## 3837 <NA> <NA> <NA> <NA> NA NA
## 3838 <NA> <NA> <NA> <NA> NA NA
## 3839 <NA> <NA> <NA> <NA> NA NA
## 3840 <NA> <NA> <NA> <NA> NA NA
## 3841 <NA> <NA> <NA> <NA> NA NA
## 3842 <NA> <NA> <NA> <NA> NA NA
## 3843 <NA> <NA> <NA> <NA> NA NA
## 3844 <NA> <NA> <NA> <NA> NA NA
## 3845 <NA> <NA> <NA> <NA> NA NA
## 3846 <NA> <NA> <NA> <NA> NA NA
## 3847 <NA> <NA> <NA> <NA> NA NA
## 3848 <NA> <NA> <NA> <NA> NA NA
## 3849 <NA> <NA> <NA> <NA> NA NA
## 3850 <NA> <NA> <NA> <NA> NA NA
## 3851 <NA> <NA> <NA> <NA> NA NA
## 3852 <NA> <NA> <NA> <NA> NA NA
## 3853 <NA> <NA> <NA> <NA> NA NA
## 3854 <NA> <NA> <NA> <NA> NA NA
## 3855 <NA> <NA> <NA> <NA> NA NA
## 3856 <NA> <NA> <NA> <NA> NA NA
## 3857 <NA> <NA> <NA> <NA> NA NA
## 3858 <NA> <NA> <NA> <NA> NA NA
## 3859 <NA> <NA> <NA> <NA> NA NA
## 3860 <NA> <NA> <NA> <NA> NA NA
## 3861 <NA> <NA> <NA> <NA> NA NA
## 3862 <NA> <NA> <NA> <NA> NA NA
## 3863 <NA> <NA> <NA> <NA> NA NA
## 3864 <NA> <NA> <NA> <NA> NA NA
## 3865 <NA> <NA> <NA> <NA> NA NA
## 3866 <NA> <NA> <NA> <NA> NA NA
## 3867 <NA> <NA> <NA> <NA> NA NA
## 3868 <NA> <NA> <NA> <NA> NA NA
## 3869 <NA> <NA> <NA> <NA> NA NA
## 3870 <NA> <NA> <NA> <NA> NA NA
## 3871 <NA> <NA> <NA> <NA> NA NA
## 3872 <NA> <NA> <NA> <NA> NA NA
## 3873 <NA> <NA> <NA> <NA> NA NA
## 3874 <NA> <NA> <NA> <NA> NA NA
## 3875 <NA> <NA> <NA> <NA> NA NA
## 3876 <NA> <NA> <NA> <NA> NA NA
## 3877 <NA> <NA> <NA> <NA> NA NA
## 3878 <NA> <NA> <NA> <NA> NA NA
## 3879 <NA> <NA> <NA> <NA> NA NA
## 3880 <NA> <NA> <NA> <NA> NA NA
## 3881 <NA> <NA> <NA> <NA> NA NA
## 3882 <NA> <NA> <NA> <NA> NA NA
## 3883 <NA> <NA> <NA> <NA> NA NA
## 3884 <NA> <NA> <NA> <NA> NA NA
## 3885 <NA> <NA> <NA> <NA> NA NA
## 3886 <NA> <NA> <NA> <NA> NA NA
## 3887 <NA> <NA> <NA> <NA> NA NA
## 3888 <NA> <NA> <NA> <NA> NA NA
## 3889 <NA> <NA> <NA> <NA> NA NA
## 3890 <NA> <NA> <NA> <NA> NA NA
## 3891 <NA> <NA> <NA> <NA> NA NA
## 3892 <NA> <NA> <NA> <NA> NA NA
## 3893 <NA> <NA> <NA> <NA> NA NA
## 3894 <NA> <NA> <NA> <NA> NA NA
## 3895 <NA> <NA> <NA> <NA> NA NA
## 3896 <NA> <NA> <NA> <NA> NA NA
## 3897 <NA> <NA> <NA> <NA> NA NA
## 3898 <NA> <NA> <NA> <NA> NA NA
## 3899 <NA> <NA> <NA> <NA> NA NA
## 3900 <NA> <NA> <NA> <NA> NA NA
## 3901 <NA> <NA> <NA> <NA> NA NA
## 3902 <NA> <NA> <NA> <NA> NA NA
## 3903 <NA> <NA> <NA> <NA> NA NA
## 3904 <NA> <NA> <NA> <NA> NA NA
## 3905 <NA> <NA> <NA> <NA> NA NA
## 3906 <NA> <NA> <NA> <NA> NA NA
## 3907 <NA> <NA> <NA> <NA> NA NA
## 3908 <NA> <NA> <NA> <NA> NA NA
## 3909 <NA> <NA> <NA> <NA> NA NA
## 3910 <NA> <NA> <NA> <NA> NA NA
## 3911 <NA> <NA> <NA> <NA> NA NA
## 3912 <NA> <NA> <NA> <NA> NA NA
## 3913 <NA> <NA> <NA> <NA> NA NA
## 3914 <NA> <NA> <NA> <NA> NA NA
## 3915 <NA> <NA> <NA> <NA> NA NA
## 3916 <NA> <NA> <NA> <NA> NA NA
## 3917 <NA> <NA> <NA> <NA> NA NA
## 3918 <NA> <NA> <NA> <NA> NA NA
## 3919 <NA> <NA> <NA> <NA> NA NA
## 3920 <NA> <NA> <NA> <NA> NA NA
## 3921 <NA> <NA> <NA> <NA> NA NA
## 3922 <NA> <NA> <NA> <NA> NA NA
## 3923 <NA> <NA> <NA> <NA> NA NA
## 3924 <NA> <NA> <NA> <NA> NA NA
## 3925 <NA> <NA> <NA> <NA> NA NA
## 3926 <NA> <NA> <NA> <NA> NA NA
## 3927 <NA> <NA> <NA> <NA> NA NA
## 3928 <NA> <NA> <NA> <NA> NA NA
## 3929 <NA> <NA> <NA> <NA> NA NA
## 3930 <NA> <NA> <NA> <NA> NA NA
## 3931 <NA> <NA> <NA> <NA> NA NA
## 3932 <NA> <NA> <NA> <NA> NA NA
## 3933 <NA> <NA> <NA> <NA> NA NA
## 3934 <NA> <NA> <NA> <NA> NA NA
## 3935 <NA> <NA> <NA> <NA> NA NA
## 3936 <NA> <NA> <NA> <NA> NA NA
## 3937 <NA> <NA> <NA> <NA> NA NA
## 3938 <NA> <NA> <NA> <NA> NA NA
## 3939 <NA> <NA> <NA> <NA> NA NA
## 3940 <NA> <NA> <NA> <NA> NA NA
## 3941 <NA> <NA> <NA> <NA> NA NA
## 3942 <NA> <NA> <NA> <NA> NA NA
## 3943 <NA> <NA> <NA> <NA> NA NA
## 3944 <NA> <NA> <NA> <NA> NA NA
## 3945 <NA> <NA> <NA> <NA> NA NA
## 3946 <NA> <NA> <NA> <NA> NA NA
## 3947 <NA> <NA> <NA> <NA> NA NA
## 3948 <NA> <NA> <NA> <NA> NA NA
## 3949 <NA> <NA> <NA> <NA> NA NA
## 3950 <NA> <NA> <NA> <NA> NA NA
## 3951 <NA> <NA> <NA> <NA> NA NA
## 3952 <NA> <NA> <NA> <NA> NA NA
## 3953 <NA> <NA> <NA> <NA> NA NA
## 3954 <NA> <NA> <NA> <NA> NA NA
## 3955 <NA> <NA> <NA> <NA> NA NA
## 3956 <NA> <NA> <NA> <NA> NA NA
## 3957 <NA> <NA> <NA> <NA> NA NA
## 3958 <NA> <NA> <NA> <NA> NA NA
## 3959 <NA> <NA> <NA> <NA> NA NA
## 3960 <NA> <NA> <NA> <NA> NA NA
## 3961 <NA> <NA> <NA> <NA> NA NA
## 3962 <NA> <NA> <NA> <NA> NA NA
## 3963 <NA> <NA> <NA> <NA> NA NA
## 3964 <NA> <NA> <NA> <NA> NA NA
## 3965 <NA> <NA> <NA> <NA> NA NA
## 3966 <NA> <NA> <NA> <NA> NA NA
## 3967 <NA> <NA> <NA> <NA> NA NA
## 3968 <NA> <NA> <NA> <NA> NA NA
## 3969 <NA> <NA> <NA> <NA> NA NA
## 3970 <NA> <NA> <NA> <NA> NA NA
## 3971 <NA> <NA> <NA> <NA> NA NA
## 3972 <NA> <NA> <NA> <NA> NA NA
## 3973 <NA> <NA> <NA> <NA> NA NA
## 3974 <NA> <NA> <NA> <NA> NA NA
## 3975 <NA> <NA> <NA> <NA> NA NA
## 3976 <NA> <NA> <NA> <NA> NA NA
## 3977 <NA> <NA> <NA> <NA> NA NA
## 3978 <NA> <NA> <NA> <NA> NA NA
## 3979 <NA> <NA> <NA> <NA> NA NA
## 3980 <NA> <NA> <NA> <NA> NA NA
## 3981 <NA> <NA> <NA> <NA> NA NA
## 3982 <NA> <NA> <NA> <NA> NA NA
## 3983 <NA> <NA> <NA> <NA> NA NA
## 3984 <NA> <NA> <NA> <NA> NA NA
## 3985 <NA> <NA> <NA> <NA> NA NA
## 3986 <NA> <NA> <NA> <NA> NA NA
## 3987 <NA> <NA> <NA> <NA> NA NA
## 3988 <NA> <NA> <NA> <NA> NA NA
## 3989 <NA> <NA> <NA> <NA> NA NA
## 3990 <NA> <NA> <NA> <NA> NA NA
## 3991 <NA> <NA> <NA> <NA> NA NA
## 3992 <NA> <NA> <NA> <NA> NA NA
## 3993 <NA> <NA> <NA> <NA> NA NA
## 3994 <NA> <NA> <NA> <NA> NA NA
## 3995 <NA> <NA> <NA> <NA> NA NA
## 3996 <NA> <NA> <NA> <NA> NA NA
## 3997 <NA> <NA> <NA> <NA> NA NA
## 3998 <NA> <NA> <NA> <NA> NA NA
## 3999 <NA> <NA> <NA> <NA> NA NA
## 4000 <NA> <NA> <NA> <NA> NA NA
## 4001 <NA> <NA> <NA> <NA> NA NA
## 4002 <NA> <NA> <NA> <NA> NA NA
## 4003 <NA> <NA> <NA> <NA> NA NA
## 4004 <NA> <NA> <NA> <NA> NA NA
## 4005 <NA> <NA> <NA> <NA> NA NA
## 4006 <NA> <NA> <NA> <NA> NA NA
## 4007 <NA> <NA> <NA> <NA> NA NA
## 4008 <NA> <NA> <NA> <NA> NA NA
## 4009 <NA> <NA> <NA> <NA> NA NA
## 4010 <NA> <NA> <NA> <NA> NA NA
## 4011 <NA> <NA> <NA> <NA> NA NA
## 4012 <NA> <NA> <NA> <NA> NA NA
## 4013 <NA> <NA> <NA> <NA> NA NA
## 4014 <NA> <NA> <NA> <NA> NA NA
## 4015 <NA> <NA> <NA> <NA> NA NA
## 4016 <NA> <NA> <NA> <NA> NA NA
## 4017 <NA> <NA> <NA> <NA> NA NA
## 4018 <NA> <NA> <NA> <NA> NA NA
## 4019 <NA> <NA> <NA> <NA> NA NA
## 4020 <NA> <NA> <NA> <NA> NA NA
## 4021 <NA> <NA> <NA> <NA> NA NA
## 4022 <NA> <NA> <NA> <NA> NA NA
## 4023 <NA> <NA> <NA> <NA> NA NA
## 4024 <NA> <NA> <NA> <NA> NA NA
## 4025 <NA> <NA> <NA> <NA> NA NA
## 4026 <NA> <NA> <NA> <NA> NA NA
## 4027 <NA> <NA> <NA> <NA> NA NA
## 4028 <NA> <NA> <NA> <NA> NA NA
## 4029 <NA> <NA> <NA> <NA> NA NA
## 4030 <NA> <NA> <NA> <NA> NA NA
## 4031 <NA> <NA> <NA> <NA> NA NA
## 4032 <NA> <NA> <NA> <NA> NA NA
## 4033 <NA> <NA> <NA> <NA> NA NA
## 4034 <NA> <NA> <NA> <NA> NA NA
## 4035 <NA> <NA> <NA> <NA> NA NA
## 4036 <NA> <NA> <NA> <NA> NA NA
## 4037 <NA> <NA> <NA> <NA> NA NA
## 4038 <NA> <NA> <NA> <NA> NA NA
## 4039 <NA> <NA> <NA> <NA> NA NA
## 4040 <NA> <NA> <NA> <NA> NA NA
## 4041 <NA> <NA> <NA> <NA> NA NA
## 4042 <NA> <NA> <NA> <NA> NA NA
## 4043 <NA> <NA> <NA> <NA> NA NA
## 4044 <NA> <NA> <NA> <NA> NA NA
## 4045 <NA> <NA> <NA> <NA> NA NA
## 4046 <NA> <NA> <NA> <NA> NA NA
## 4047 <NA> <NA> <NA> <NA> NA NA
## 4048 <NA> <NA> <NA> <NA> NA NA
## 4049 <NA> <NA> <NA> <NA> NA NA
## 4050 <NA> <NA> <NA> <NA> NA NA
## 4051 <NA> <NA> <NA> <NA> NA NA
## 4052 <NA> <NA> <NA> <NA> NA NA
## 4053 <NA> <NA> <NA> <NA> NA NA
## 4054 <NA> <NA> <NA> <NA> NA NA
## 4055 <NA> <NA> <NA> <NA> NA NA
## 4056 <NA> <NA> <NA> <NA> NA NA
## 4057 <NA> <NA> <NA> <NA> NA NA
## 4058 <NA> <NA> <NA> <NA> NA NA
## 4059 <NA> <NA> <NA> <NA> NA NA
## 4060 <NA> <NA> <NA> <NA> NA NA
## 4061 <NA> <NA> <NA> <NA> NA NA
## 4062 <NA> <NA> <NA> <NA> NA NA
## 4063 <NA> <NA> <NA> <NA> NA NA
## 4064 <NA> <NA> <NA> <NA> NA NA
## 4065 <NA> <NA> <NA> <NA> NA NA
## 4066 <NA> <NA> <NA> <NA> NA NA
## 4067 <NA> <NA> <NA> <NA> NA NA
## 4068 <NA> <NA> <NA> <NA> NA NA
## 4069 <NA> <NA> <NA> <NA> NA NA
## 4070 <NA> <NA> <NA> <NA> NA NA
## 4071 <NA> <NA> <NA> <NA> NA NA
## 4072 <NA> <NA> <NA> <NA> NA NA
## 4073 <NA> <NA> <NA> <NA> NA NA
## 4074 <NA> <NA> <NA> <NA> NA NA
## 4075 <NA> <NA> <NA> <NA> NA NA
## 4076 <NA> <NA> <NA> <NA> NA NA
## 4077 <NA> <NA> <NA> <NA> NA NA
## 4078 <NA> <NA> <NA> <NA> NA NA
## 4079 <NA> <NA> <NA> <NA> NA NA
## 4080 <NA> <NA> <NA> <NA> NA NA
## 4081 <NA> <NA> <NA> <NA> NA NA
## 4082 <NA> <NA> <NA> <NA> NA NA
## 4083 <NA> <NA> <NA> <NA> NA NA
## 4084 <NA> <NA> <NA> <NA> NA NA
## 4085 <NA> <NA> <NA> <NA> NA NA
## 4086 <NA> <NA> <NA> <NA> NA NA
## 4087 <NA> <NA> <NA> <NA> NA NA
## 4088 <NA> <NA> <NA> <NA> NA NA
## 4089 <NA> <NA> <NA> <NA> NA NA
## 4090 <NA> <NA> <NA> <NA> NA NA
## 4091 <NA> <NA> <NA> <NA> NA NA
## 4092 <NA> <NA> <NA> <NA> NA NA
## 4093 <NA> <NA> <NA> <NA> NA NA
## 4094 <NA> <NA> <NA> <NA> NA NA
## 4095 <NA> <NA> <NA> <NA> NA NA
## 4096 <NA> <NA> <NA> <NA> NA NA
## 4097 <NA> <NA> <NA> <NA> NA NA
## 4098 <NA> <NA> <NA> <NA> NA NA
## 4099 <NA> <NA> <NA> <NA> NA NA
## 4100 <NA> <NA> <NA> <NA> NA NA
## 4101 <NA> <NA> <NA> <NA> NA NA
## 4102 <NA> <NA> <NA> <NA> NA NA
## 4103 <NA> <NA> <NA> <NA> NA NA
## 4104 <NA> <NA> <NA> <NA> NA NA
## 4105 <NA> <NA> <NA> <NA> NA NA
## 4106 <NA> <NA> <NA> <NA> NA NA
## 4107 <NA> <NA> <NA> <NA> NA NA
## 4108 <NA> <NA> <NA> <NA> NA NA
## 4109 <NA> <NA> <NA> <NA> NA NA
## 4110 <NA> <NA> <NA> <NA> NA NA
## 4111 <NA> <NA> <NA> <NA> NA NA
## 4112 <NA> <NA> <NA> <NA> NA NA
## 4113 <NA> <NA> <NA> <NA> NA NA
## 4114 <NA> <NA> <NA> <NA> NA NA
## 4115 <NA> <NA> <NA> <NA> NA NA
## 4116 <NA> <NA> <NA> <NA> NA NA
## 4117 <NA> <NA> <NA> <NA> NA NA
## 4118 <NA> <NA> <NA> <NA> NA NA
## 4119 <NA> <NA> <NA> <NA> NA NA
## 4120 <NA> <NA> <NA> <NA> NA NA
## 4121 <NA> <NA> <NA> <NA> NA NA
## 4122 <NA> <NA> <NA> <NA> NA NA
## 4123 <NA> <NA> <NA> <NA> NA NA
## 4124 <NA> <NA> <NA> <NA> NA NA
## 4125 <NA> <NA> <NA> <NA> NA NA
## 4126 <NA> <NA> <NA> <NA> NA NA
## 4127 <NA> <NA> <NA> <NA> NA NA
## 4128 <NA> <NA> <NA> <NA> NA NA
## 4129 <NA> <NA> <NA> <NA> NA NA
## 4130 <NA> <NA> <NA> <NA> NA NA
## 4131 <NA> <NA> <NA> <NA> NA NA
## 4132 <NA> <NA> <NA> <NA> NA NA
## 4133 <NA> <NA> <NA> <NA> NA NA
## 4134 <NA> <NA> <NA> <NA> NA NA
## 4135 <NA> <NA> <NA> <NA> NA NA
## 4136 <NA> <NA> <NA> <NA> NA NA
## 4137 <NA> <NA> <NA> <NA> NA NA
## 4138 <NA> <NA> <NA> <NA> NA NA
## 4139 <NA> <NA> <NA> <NA> NA NA
## 4140 <NA> <NA> <NA> <NA> NA NA
## 4141 <NA> <NA> <NA> <NA> NA NA
## 4142 <NA> <NA> <NA> <NA> NA NA
## 4143 <NA> <NA> <NA> <NA> NA NA
## 4144 <NA> <NA> <NA> <NA> NA NA
## 4145 <NA> <NA> <NA> <NA> NA NA
## 4146 <NA> <NA> <NA> <NA> NA NA
## 4147 <NA> <NA> <NA> <NA> NA NA
## 4148 <NA> <NA> <NA> <NA> NA NA
## 4149 <NA> <NA> <NA> <NA> NA NA
## 4150 <NA> <NA> <NA> <NA> NA NA
## 4151 <NA> <NA> <NA> <NA> NA NA
## 4152 <NA> <NA> <NA> <NA> NA NA
## 4153 <NA> <NA> <NA> <NA> NA NA
## 4154 <NA> <NA> <NA> <NA> NA NA
## 4155 <NA> <NA> <NA> <NA> NA NA
## 4156 <NA> <NA> <NA> <NA> NA NA
## 4157 <NA> <NA> <NA> <NA> NA NA
## 4158 <NA> <NA> <NA> <NA> NA NA
## 4159 <NA> <NA> <NA> <NA> NA NA
## 4160 <NA> <NA> <NA> <NA> NA NA
## 4161 <NA> <NA> <NA> <NA> NA NA
## 4162 <NA> <NA> <NA> <NA> NA NA
## 4163 <NA> <NA> <NA> <NA> NA NA
## 4164 <NA> <NA> <NA> <NA> NA NA
## 4165 <NA> <NA> <NA> <NA> NA NA
## 4166 <NA> <NA> <NA> <NA> NA NA
## 4167 <NA> <NA> <NA> <NA> NA NA
## 4168 <NA> <NA> <NA> <NA> NA NA
## 4169 <NA> <NA> <NA> <NA> NA NA
## 4170 <NA> <NA> <NA> <NA> NA NA
## 4171 <NA> <NA> <NA> <NA> NA NA
## 4172 <NA> <NA> <NA> <NA> NA NA
## 4173 <NA> <NA> <NA> <NA> NA NA
## 4174 <NA> <NA> <NA> <NA> NA NA
## 4175 <NA> <NA> <NA> <NA> NA NA
## 4176 <NA> <NA> <NA> <NA> NA NA
## 4177 <NA> <NA> <NA> <NA> NA NA
## 4178 <NA> <NA> <NA> <NA> NA NA
## 4179 <NA> <NA> <NA> <NA> NA NA
## 4180 <NA> <NA> <NA> <NA> NA NA
## 4181 <NA> <NA> <NA> <NA> NA NA
## 4182 <NA> <NA> <NA> <NA> NA NA
## 4183 <NA> <NA> <NA> <NA> NA NA
## 4184 <NA> <NA> <NA> <NA> NA NA
## 4185 <NA> <NA> <NA> <NA> NA NA
## 4186 <NA> <NA> <NA> <NA> NA NA
## 4187 <NA> <NA> <NA> <NA> NA NA
## 4188 <NA> <NA> <NA> <NA> NA NA
## 4189 <NA> <NA> <NA> <NA> NA NA
## 4190 <NA> <NA> <NA> <NA> NA NA
## 4191 <NA> <NA> <NA> <NA> NA NA
## 4192 <NA> <NA> <NA> <NA> NA NA
## 4193 <NA> <NA> <NA> <NA> NA NA
## 4194 <NA> <NA> <NA> <NA> NA NA
## 4195 <NA> <NA> <NA> <NA> NA NA
## 4196 <NA> <NA> <NA> <NA> NA NA
## 4197 <NA> <NA> <NA> <NA> NA NA
## 4198 <NA> <NA> <NA> <NA> NA NA
## 4199 <NA> <NA> <NA> <NA> NA NA
## 4200 <NA> <NA> <NA> <NA> NA NA
## 4201 <NA> <NA> <NA> <NA> NA NA
## 4202 <NA> <NA> <NA> <NA> NA NA
## 4203 <NA> <NA> <NA> <NA> NA NA
## 4204 <NA> <NA> <NA> <NA> NA NA
## 4205 <NA> <NA> <NA> <NA> NA NA
## 4206 <NA> <NA> <NA> <NA> NA NA
## 4207 <NA> <NA> <NA> <NA> NA NA
## 4208 <NA> <NA> <NA> <NA> NA NA
## 4209 <NA> <NA> <NA> <NA> NA NA
## 4210 <NA> <NA> <NA> <NA> NA NA
## 4211 <NA> <NA> <NA> <NA> NA NA
## 4212 <NA> <NA> <NA> <NA> NA NA
## 4213 <NA> <NA> <NA> <NA> NA NA
## 4214 <NA> <NA> <NA> <NA> NA NA
## 4215 <NA> <NA> <NA> <NA> NA NA
## 4216 <NA> <NA> <NA> <NA> NA NA
## 4217 <NA> <NA> <NA> <NA> NA NA
## 4218 <NA> <NA> <NA> <NA> NA NA
## 4219 <NA> <NA> <NA> <NA> NA NA
## 4220 <NA> <NA> <NA> <NA> NA NA
## 4221 <NA> <NA> <NA> <NA> NA NA
## 4222 <NA> <NA> <NA> <NA> NA NA
## 4223 <NA> <NA> <NA> <NA> NA NA
## 4224 <NA> <NA> <NA> <NA> NA NA
## 4225 <NA> <NA> <NA> <NA> NA NA
## 4226 <NA> <NA> <NA> <NA> NA NA
## 4227 <NA> <NA> <NA> <NA> NA NA
## 4228 <NA> <NA> <NA> <NA> NA NA
## 4229 <NA> <NA> <NA> <NA> NA NA
## 4230 <NA> <NA> <NA> <NA> NA NA
## 4231 <NA> <NA> <NA> <NA> NA NA
## 4232 <NA> <NA> <NA> <NA> NA NA
## 4233 <NA> <NA> <NA> <NA> NA NA
## 4234 <NA> <NA> <NA> <NA> NA NA
## 4235 <NA> <NA> <NA> <NA> NA NA
## 4236 <NA> <NA> <NA> <NA> NA NA
## 4237 <NA> <NA> <NA> <NA> NA NA
## 4238 <NA> <NA> <NA> <NA> NA NA
## 4239 <NA> <NA> <NA> <NA> NA NA
## 4240 <NA> <NA> <NA> <NA> NA NA
## 4241 <NA> <NA> <NA> <NA> NA NA
## 4242 <NA> <NA> <NA> <NA> NA NA
## 4243 <NA> <NA> <NA> <NA> NA NA
## 4244 <NA> <NA> <NA> <NA> NA NA
## 4245 <NA> <NA> <NA> <NA> NA NA
## 4246 <NA> <NA> <NA> <NA> NA NA
## 4247 <NA> <NA> <NA> <NA> NA NA
## 4248 <NA> <NA> <NA> <NA> NA NA
## 4249 <NA> <NA> <NA> <NA> NA NA
## 4250 <NA> <NA> <NA> <NA> NA NA
## 4251 <NA> <NA> <NA> <NA> NA NA
## 4252 <NA> <NA> <NA> <NA> NA NA
## 4253 <NA> <NA> <NA> <NA> NA NA
## 4254 <NA> <NA> <NA> <NA> NA NA
## 4255 <NA> <NA> <NA> <NA> NA NA
## 4256 <NA> <NA> <NA> <NA> NA NA
## 4257 <NA> <NA> <NA> <NA> NA NA
## 4258 <NA> <NA> <NA> <NA> NA NA
## 4259 <NA> <NA> <NA> <NA> NA NA
## 4260 <NA> <NA> <NA> <NA> NA NA
## 4261 <NA> <NA> <NA> <NA> NA NA
## 4262 <NA> <NA> <NA> <NA> NA NA
## 4263 <NA> <NA> <NA> <NA> NA NA
## 4264 <NA> <NA> <NA> <NA> NA NA
## 4265 <NA> <NA> <NA> <NA> NA NA
## 4266 <NA> <NA> <NA> <NA> NA NA
## 4267 <NA> <NA> <NA> <NA> NA NA
## 4268 <NA> <NA> <NA> <NA> NA NA
## 4269 <NA> <NA> <NA> <NA> NA NA
## 4270 <NA> <NA> <NA> <NA> NA NA
## 4271 <NA> <NA> <NA> <NA> NA NA
## 4272 <NA> <NA> <NA> <NA> NA NA
## 4273 <NA> <NA> <NA> <NA> NA NA
## 4274 <NA> <NA> <NA> <NA> NA NA
## 4275 <NA> <NA> <NA> <NA> NA NA
## 4276 <NA> <NA> <NA> <NA> NA NA
## 4277 <NA> <NA> <NA> <NA> NA NA
## 4278 <NA> <NA> <NA> <NA> NA NA
## 4279 <NA> <NA> <NA> <NA> NA NA
## 4280 <NA> <NA> <NA> <NA> NA NA
## 4281 <NA> <NA> <NA> <NA> NA NA
## 4282 <NA> <NA> <NA> <NA> NA NA
## 4283 <NA> <NA> <NA> <NA> NA NA
## 4284 <NA> <NA> <NA> <NA> NA NA
## 4285 <NA> <NA> <NA> <NA> NA NA
## 4286 <NA> <NA> <NA> <NA> NA NA
## 4287 <NA> <NA> <NA> <NA> NA NA
## 4288 <NA> <NA> <NA> <NA> NA NA
## 4289 <NA> <NA> <NA> <NA> NA NA
## 4290 <NA> <NA> <NA> <NA> NA NA
## 4291 <NA> <NA> <NA> <NA> NA NA
## 4292 <NA> <NA> <NA> <NA> NA NA
## 4293 <NA> <NA> <NA> <NA> NA NA
## 4294 <NA> <NA> <NA> <NA> NA NA
## 4295 <NA> <NA> <NA> <NA> NA NA
## 4296 <NA> <NA> <NA> <NA> NA NA
## 4297 <NA> <NA> <NA> <NA> NA NA
## 4298 <NA> <NA> <NA> <NA> NA NA
## 4299 <NA> <NA> <NA> <NA> NA NA
## 4300 <NA> <NA> <NA> <NA> NA NA
## 4301 <NA> <NA> <NA> <NA> NA NA
## 4302 <NA> <NA> <NA> <NA> NA NA
## 4303 <NA> <NA> <NA> <NA> NA NA
## 4304 <NA> <NA> <NA> <NA> NA NA
## 4305 <NA> <NA> <NA> <NA> NA NA
## 4306 <NA> <NA> <NA> <NA> NA NA
## 4307 <NA> <NA> <NA> <NA> NA NA
## 4308 <NA> <NA> <NA> <NA> NA NA
## 4309 <NA> <NA> <NA> <NA> NA NA
## 4310 <NA> <NA> <NA> <NA> NA NA
## 4311 <NA> <NA> <NA> <NA> NA NA
## 4312 <NA> <NA> <NA> <NA> NA NA
## 4313 <NA> <NA> <NA> <NA> NA NA
## 4314 <NA> <NA> <NA> <NA> NA NA
## 4315 <NA> <NA> <NA> <NA> NA NA
## 4316 <NA> <NA> <NA> <NA> NA NA
## 4317 <NA> <NA> <NA> <NA> NA NA
## 4318 <NA> <NA> <NA> <NA> NA NA
## 4319 <NA> <NA> <NA> <NA> NA NA
## 4320 <NA> <NA> <NA> <NA> NA NA
## 4321 <NA> <NA> <NA> <NA> NA NA
## 4322 <NA> <NA> <NA> <NA> NA NA
## 4323 <NA> <NA> <NA> <NA> NA NA
## 4324 <NA> <NA> <NA> <NA> NA NA
## 4325 <NA> <NA> <NA> <NA> NA NA
## 4326 <NA> <NA> <NA> <NA> NA NA
## 4327 <NA> <NA> <NA> <NA> NA NA
## 4328 <NA> <NA> <NA> <NA> NA NA
## 4329 <NA> <NA> <NA> <NA> NA NA
## 4330 <NA> <NA> <NA> <NA> NA NA
## 4331 <NA> <NA> <NA> <NA> NA NA
## 4332 <NA> <NA> <NA> <NA> NA NA
## 4333 <NA> <NA> <NA> <NA> NA NA
## 4334 <NA> <NA> <NA> <NA> NA NA
## 4335 <NA> <NA> <NA> <NA> NA NA
## 4336 <NA> <NA> <NA> <NA> NA NA
## 4337 <NA> <NA> <NA> <NA> NA NA
## 4338 <NA> <NA> <NA> <NA> NA NA
## 4339 <NA> <NA> <NA> <NA> NA NA
## 4340 <NA> <NA> <NA> <NA> NA NA
## 4341 <NA> <NA> <NA> <NA> NA NA
## 4342 <NA> <NA> <NA> <NA> NA NA
## 4343 <NA> <NA> <NA> <NA> NA NA
## 4344 <NA> <NA> <NA> <NA> NA NA
## 4345 <NA> <NA> <NA> <NA> NA NA
## 4346 <NA> <NA> <NA> <NA> NA NA
## 4347 <NA> <NA> <NA> <NA> NA NA
## 4348 <NA> <NA> <NA> <NA> NA NA
## 4349 <NA> <NA> <NA> <NA> NA NA
## 4350 <NA> <NA> <NA> <NA> NA NA
## 4351 <NA> <NA> <NA> <NA> NA NA
## 4352 <NA> <NA> <NA> <NA> NA NA
## 4353 <NA> <NA> <NA> <NA> NA NA
## 4354 <NA> <NA> <NA> <NA> NA NA
## 4355 <NA> <NA> <NA> <NA> NA NA
## 4356 <NA> <NA> <NA> <NA> NA NA
## 4357 <NA> <NA> <NA> <NA> NA NA
## 4358 <NA> <NA> <NA> <NA> NA NA
## 4359 <NA> <NA> <NA> <NA> NA NA
## 4360 <NA> <NA> <NA> <NA> NA NA
## 4361 <NA> <NA> <NA> <NA> NA NA
## 4362 <NA> <NA> <NA> <NA> NA NA
## 4363 <NA> <NA> <NA> <NA> NA NA
## 4364 <NA> <NA> <NA> <NA> NA NA
## 4365 <NA> <NA> <NA> <NA> NA NA
## 4366 <NA> <NA> <NA> <NA> NA NA
## 4367 <NA> <NA> <NA> <NA> NA NA
## 4368 <NA> <NA> <NA> <NA> NA NA
## 4369 <NA> <NA> <NA> <NA> NA NA
## 4370 <NA> <NA> <NA> <NA> NA NA
## 4371 <NA> <NA> <NA> <NA> NA NA
## 4372 <NA> <NA> <NA> <NA> NA NA
## 4373 <NA> <NA> <NA> <NA> NA NA
## 4374 <NA> <NA> <NA> <NA> NA NA
## 4375 <NA> <NA> <NA> <NA> NA NA
## 4376 <NA> <NA> <NA> <NA> NA NA
## 4377 <NA> <NA> <NA> <NA> NA NA
## 4378 <NA> <NA> <NA> <NA> NA NA
## 4379 <NA> <NA> <NA> <NA> NA NA
## 4380 <NA> <NA> <NA> <NA> NA NA
## 4381 <NA> <NA> <NA> <NA> NA NA
## 4382 <NA> <NA> <NA> <NA> NA NA
## 4383 <NA> <NA> <NA> <NA> NA NA
## 4384 <NA> <NA> <NA> <NA> NA NA
## 4385 <NA> <NA> <NA> <NA> NA NA
## 4386 <NA> <NA> <NA> <NA> NA NA
## 4387 <NA> <NA> <NA> <NA> NA NA
## 4388 <NA> <NA> <NA> <NA> NA NA
## 4389 <NA> <NA> <NA> <NA> NA NA
## 4390 <NA> <NA> <NA> <NA> NA NA
## 4391 <NA> <NA> <NA> <NA> NA NA
## 4392 <NA> <NA> <NA> <NA> NA NA
## 4393 <NA> <NA> <NA> <NA> NA NA
## 4394 <NA> <NA> <NA> <NA> NA NA
## 4395 <NA> <NA> <NA> <NA> NA NA
## 4396 <NA> <NA> <NA> <NA> NA NA
## 4397 <NA> <NA> <NA> <NA> NA NA
## 4398 <NA> <NA> <NA> <NA> NA NA
## 4399 <NA> <NA> <NA> <NA> NA NA
## 4400 <NA> <NA> <NA> <NA> NA NA
## 4401 <NA> <NA> <NA> <NA> NA NA
## 4402 <NA> <NA> <NA> <NA> NA NA
## 4403 <NA> <NA> <NA> <NA> NA NA
## 4404 <NA> <NA> <NA> <NA> NA NA
## 4405 <NA> <NA> <NA> <NA> NA NA
## 4406 <NA> <NA> <NA> <NA> NA NA
## 4407 <NA> <NA> <NA> <NA> NA NA
## 4408 <NA> <NA> <NA> <NA> NA NA
## 4409 <NA> <NA> <NA> <NA> NA NA
## 4410 <NA> <NA> <NA> <NA> NA NA
## 4411 <NA> <NA> <NA> <NA> NA NA
## 4412 <NA> <NA> <NA> <NA> NA NA
## 4413 <NA> <NA> <NA> <NA> NA NA
## 4414 <NA> <NA> <NA> <NA> NA NA
## 4415 <NA> <NA> <NA> <NA> NA NA
## 4416 <NA> <NA> <NA> <NA> NA NA
## 4417 <NA> <NA> <NA> <NA> NA NA
## 4418 <NA> <NA> <NA> <NA> NA NA
## 4419 <NA> <NA> <NA> <NA> NA NA
## 4420 <NA> <NA> <NA> <NA> NA NA
## 4421 <NA> <NA> <NA> <NA> NA NA
## 4422 <NA> <NA> <NA> <NA> NA NA
## 4423 <NA> <NA> <NA> <NA> NA NA
## 4424 <NA> <NA> <NA> <NA> NA NA
## 4425 <NA> <NA> <NA> <NA> NA NA
## 4426 <NA> <NA> <NA> <NA> NA NA
## 4427 <NA> <NA> <NA> <NA> NA NA
## 4428 <NA> <NA> <NA> <NA> NA NA
## 4429 <NA> <NA> <NA> <NA> NA NA
## 4430 <NA> <NA> <NA> <NA> NA NA
## 4431 <NA> <NA> <NA> <NA> NA NA
## 4432 <NA> <NA> <NA> <NA> NA NA
## 4433 <NA> <NA> <NA> <NA> NA NA
## 4434 <NA> <NA> <NA> <NA> NA NA
## 4435 <NA> <NA> <NA> <NA> NA NA
## 4436 <NA> <NA> <NA> <NA> NA NA
## 4437 <NA> <NA> <NA> <NA> NA NA
## 4438 <NA> <NA> <NA> <NA> NA NA
## 4439 <NA> <NA> <NA> <NA> NA NA
## 4440 <NA> <NA> <NA> <NA> NA NA
## 4441 <NA> <NA> <NA> <NA> NA NA
## 4442 <NA> <NA> <NA> <NA> NA NA
## 4443 <NA> <NA> <NA> <NA> NA NA
## 4444 <NA> <NA> <NA> <NA> NA NA
## 4445 <NA> <NA> <NA> <NA> NA NA
## 4446 <NA> <NA> <NA> <NA> NA NA
## 4447 <NA> <NA> <NA> <NA> NA NA
## 4448 <NA> <NA> <NA> <NA> NA NA
## 4449 <NA> <NA> <NA> <NA> NA NA
## 4450 <NA> <NA> <NA> <NA> NA NA
## 4451 <NA> <NA> <NA> <NA> NA NA
## 4452 <NA> <NA> <NA> <NA> NA NA
## 4453 <NA> <NA> <NA> <NA> NA NA
## 4454 <NA> <NA> <NA> <NA> NA NA
## 4455 <NA> <NA> <NA> <NA> NA NA
## 4456 <NA> <NA> <NA> <NA> NA NA
## 4457 <NA> <NA> <NA> <NA> NA NA
## 4458 <NA> <NA> <NA> <NA> NA NA
## 4459 <NA> <NA> <NA> <NA> NA NA
## 4460 <NA> <NA> <NA> <NA> NA NA
## 4461 <NA> <NA> <NA> <NA> NA NA
## 4462 <NA> <NA> <NA> <NA> NA NA
## 4463 <NA> <NA> <NA> <NA> NA NA
## 4464 <NA> <NA> <NA> <NA> NA NA
## 4465 <NA> <NA> <NA> <NA> NA NA
## 4466 <NA> <NA> <NA> <NA> NA NA
## 4467 <NA> <NA> <NA> <NA> NA NA
## 4468 <NA> <NA> <NA> <NA> NA NA
## 4469 <NA> <NA> <NA> <NA> NA NA
## 4470 <NA> <NA> <NA> <NA> NA NA
## 4471 <NA> <NA> <NA> <NA> NA NA
## 4472 <NA> <NA> <NA> <NA> NA NA
## 4473 <NA> <NA> <NA> <NA> NA NA
## 4474 <NA> <NA> <NA> <NA> NA NA
## 4475 <NA> <NA> <NA> <NA> NA NA
## 4476 <NA> <NA> <NA> <NA> NA NA
## 4477 <NA> <NA> <NA> <NA> NA NA
## 4478 <NA> <NA> <NA> <NA> NA NA
## 4479 <NA> <NA> <NA> <NA> NA NA
## 4480 <NA> <NA> <NA> <NA> NA NA
## 4481 <NA> <NA> <NA> <NA> NA NA
## 4482 <NA> <NA> <NA> <NA> NA NA
## 4483 <NA> <NA> <NA> <NA> NA NA
## 4484 <NA> <NA> <NA> <NA> NA NA
## 4485 <NA> <NA> <NA> <NA> NA NA
## 4486 <NA> <NA> <NA> <NA> NA NA
## 4487 <NA> <NA> <NA> <NA> NA NA
## 4488 <NA> <NA> <NA> <NA> NA NA
## 4489 <NA> <NA> <NA> <NA> NA NA
## 4490 <NA> <NA> <NA> <NA> NA NA
## 4491 <NA> <NA> <NA> <NA> NA NA
## 4492 <NA> <NA> <NA> <NA> NA NA
## 4493 <NA> <NA> <NA> <NA> NA NA
## 4494 <NA> <NA> <NA> <NA> NA NA
## 4495 <NA> <NA> <NA> <NA> NA NA
## 4496 <NA> <NA> <NA> <NA> NA NA
## 4497 <NA> <NA> <NA> <NA> NA NA
## 4498 <NA> <NA> <NA> <NA> NA NA
## 4499 <NA> <NA> <NA> <NA> NA NA
## 4500 <NA> <NA> <NA> <NA> NA NA
## 4501 <NA> <NA> <NA> <NA> NA NA
## 4502 <NA> <NA> <NA> <NA> NA NA
## 4503 <NA> <NA> <NA> <NA> NA NA
## 4504 <NA> <NA> <NA> <NA> NA NA
## 4505 <NA> <NA> <NA> <NA> NA NA
## 4506 <NA> <NA> <NA> <NA> NA NA
## 4507 <NA> <NA> <NA> <NA> NA NA
## 4508 <NA> <NA> <NA> <NA> NA NA
## 4509 <NA> <NA> <NA> <NA> NA NA
## 4510 <NA> <NA> <NA> <NA> NA NA
## 4511 <NA> <NA> <NA> <NA> NA NA
## 4512 <NA> <NA> <NA> <NA> NA NA
## 4513 <NA> <NA> <NA> <NA> NA NA
## 4514 <NA> <NA> <NA> <NA> NA NA
## 4515 <NA> <NA> <NA> <NA> NA NA
## 4516 <NA> <NA> <NA> <NA> NA NA
## 4517 <NA> <NA> <NA> <NA> NA NA
## 4518 <NA> <NA> <NA> <NA> NA NA
## 4519 <NA> <NA> <NA> <NA> NA NA
## 4520 <NA> <NA> <NA> <NA> NA NA
## 4521 <NA> <NA> <NA> <NA> NA NA
## 4522 <NA> <NA> <NA> <NA> NA NA
## 4523 <NA> <NA> <NA> <NA> NA NA
## 4524 <NA> <NA> <NA> <NA> NA NA
## 4525 <NA> <NA> <NA> <NA> NA NA
## 4526 <NA> <NA> <NA> <NA> NA NA
## 4527 <NA> <NA> <NA> <NA> NA NA
## 4528 <NA> <NA> <NA> <NA> NA NA
## 4529 <NA> <NA> <NA> <NA> NA NA
## 4530 <NA> <NA> <NA> <NA> NA NA
## 4531 <NA> <NA> <NA> <NA> NA NA
## 4532 <NA> <NA> <NA> <NA> NA NA
## 4533 <NA> <NA> <NA> <NA> NA NA
## 4534 <NA> <NA> <NA> <NA> NA NA
## 4535 <NA> <NA> <NA> <NA> NA NA
## 4536 <NA> <NA> <NA> <NA> NA NA
## 4537 <NA> <NA> <NA> <NA> NA NA
## 4538 <NA> <NA> <NA> <NA> NA NA
## 4539 <NA> <NA> <NA> <NA> NA NA
## 4540 <NA> <NA> <NA> <NA> NA NA
## 4541 <NA> <NA> <NA> <NA> NA NA
## 4542 <NA> <NA> <NA> <NA> NA NA
## 4543 <NA> <NA> <NA> <NA> NA NA
## 4544 <NA> <NA> <NA> <NA> NA NA
## 4545 <NA> <NA> <NA> <NA> NA NA
## 4546 <NA> <NA> <NA> <NA> NA NA
## 4547 <NA> <NA> <NA> <NA> NA NA
## 4548 <NA> <NA> <NA> <NA> NA NA
## 4549 <NA> <NA> <NA> <NA> NA NA
## 4550 <NA> <NA> <NA> <NA> NA NA
## 4551 <NA> <NA> <NA> <NA> NA NA
## 4552 <NA> <NA> <NA> <NA> NA NA
## 4553 <NA> <NA> <NA> <NA> NA NA
## 4554 <NA> <NA> <NA> <NA> NA NA
## 4555 <NA> <NA> <NA> <NA> NA NA
## 4556 <NA> <NA> <NA> <NA> NA NA
## 4557 <NA> <NA> <NA> <NA> NA NA
## 4558 <NA> <NA> <NA> <NA> NA NA
## 4559 <NA> <NA> <NA> <NA> NA NA
## 4560 <NA> <NA> <NA> <NA> NA NA
## 4561 <NA> <NA> <NA> <NA> NA NA
## 4562 <NA> <NA> <NA> <NA> NA NA
## 4563 <NA> <NA> <NA> <NA> NA NA
## 4564 <NA> <NA> <NA> <NA> NA NA
## 4565 <NA> <NA> <NA> <NA> NA NA
## 4566 <NA> <NA> <NA> <NA> NA NA
## 4567 <NA> <NA> <NA> <NA> NA NA
## 4568 <NA> <NA> <NA> <NA> NA NA
## 4569 <NA> <NA> <NA> <NA> NA NA
## 4570 <NA> <NA> <NA> <NA> NA NA
## 4571 <NA> <NA> <NA> <NA> NA NA
## 4572 <NA> <NA> <NA> <NA> NA NA
## 4573 <NA> <NA> <NA> <NA> NA NA
## 4574 <NA> <NA> <NA> <NA> NA NA
## 4575 <NA> <NA> <NA> <NA> NA NA
## 4576 <NA> <NA> <NA> <NA> NA NA
## 4577 <NA> <NA> <NA> <NA> NA NA
## 4578 <NA> <NA> <NA> <NA> NA NA
## 4579 <NA> <NA> <NA> <NA> NA NA
## 4580 <NA> <NA> <NA> <NA> NA NA
## 4581 <NA> <NA> <NA> <NA> NA NA
## 4582 <NA> <NA> <NA> <NA> NA NA
## 4583 <NA> <NA> <NA> <NA> NA NA
## 4584 <NA> <NA> <NA> <NA> NA NA
## 4585 <NA> <NA> <NA> <NA> NA NA
## 4586 <NA> <NA> <NA> <NA> NA NA
## 4587 <NA> <NA> <NA> <NA> NA NA
## 4588 <NA> <NA> <NA> <NA> NA NA
## 4589 <NA> <NA> <NA> <NA> NA NA
## 4590 <NA> <NA> <NA> <NA> NA NA
## 4591 <NA> <NA> <NA> <NA> NA NA
## 4592 <NA> <NA> <NA> <NA> NA NA
## 4593 <NA> <NA> <NA> <NA> NA NA
## 4594 <NA> <NA> <NA> <NA> NA NA
## 4595 <NA> <NA> <NA> <NA> NA NA
## 4596 <NA> <NA> <NA> <NA> NA NA
## 4597 <NA> <NA> <NA> <NA> NA NA
## 4598 <NA> <NA> <NA> <NA> NA NA
## 4599 <NA> <NA> <NA> <NA> NA NA
## 4600 <NA> <NA> <NA> <NA> NA NA
## 4601 <NA> <NA> <NA> <NA> NA NA
## 4602 <NA> <NA> <NA> <NA> NA NA
## 4603 <NA> <NA> <NA> <NA> NA NA
## 4604 <NA> <NA> <NA> <NA> NA NA
## 4605 <NA> <NA> <NA> <NA> NA NA
## 4606 <NA> <NA> <NA> <NA> NA NA
## 4607 <NA> <NA> <NA> <NA> NA NA
## 4608 <NA> <NA> <NA> <NA> NA NA
## 4609 <NA> <NA> <NA> <NA> NA NA
## 4610 <NA> <NA> <NA> <NA> NA NA
## 4611 <NA> <NA> <NA> <NA> NA NA
## 4612 <NA> <NA> <NA> <NA> NA NA
## 4613 <NA> <NA> <NA> <NA> NA NA
## 4614 <NA> <NA> <NA> <NA> NA NA
## 4615 <NA> <NA> <NA> <NA> NA NA
## 4616 <NA> <NA> <NA> <NA> NA NA
## 4617 <NA> <NA> <NA> <NA> NA NA
## 4618 <NA> <NA> <NA> <NA> NA NA
## 4619 <NA> <NA> <NA> <NA> NA NA
## 4620 <NA> <NA> <NA> <NA> NA NA
## 4621 <NA> <NA> <NA> <NA> NA NA
## 4622 <NA> <NA> <NA> <NA> NA NA
## 4623 <NA> <NA> <NA> <NA> NA NA
## 4624 <NA> <NA> <NA> <NA> NA NA
## 4625 <NA> <NA> <NA> <NA> NA NA
## 4626 <NA> <NA> <NA> <NA> NA NA
## 4627 <NA> <NA> <NA> <NA> NA NA
## 4628 <NA> <NA> <NA> <NA> NA NA
## 4629 <NA> <NA> <NA> <NA> NA NA
## 4630 <NA> <NA> <NA> <NA> NA NA
## 4631 <NA> <NA> <NA> <NA> NA NA
## 4632 <NA> <NA> <NA> <NA> NA NA
## 4633 <NA> <NA> <NA> <NA> NA NA
## 4634 <NA> <NA> <NA> <NA> NA NA
## 4635 <NA> <NA> <NA> <NA> NA NA
## 4636 <NA> <NA> <NA> <NA> NA NA
## 4637 <NA> <NA> <NA> <NA> NA NA
## 4638 <NA> <NA> <NA> <NA> NA NA
## 4639 <NA> <NA> <NA> <NA> NA NA
## 4640 <NA> <NA> <NA> <NA> NA NA
## 4641 <NA> <NA> <NA> <NA> NA NA
## 4642 <NA> <NA> <NA> <NA> NA NA
## 4643 <NA> <NA> <NA> <NA> NA NA
## 4644 <NA> <NA> <NA> <NA> NA NA
## 4645 <NA> <NA> <NA> <NA> NA NA
## 4646 <NA> <NA> <NA> <NA> NA NA
## 4647 <NA> <NA> <NA> <NA> NA NA
## 4648 <NA> <NA> <NA> <NA> NA NA
## 4649 <NA> <NA> <NA> <NA> NA NA
## 4650 <NA> <NA> <NA> <NA> NA NA
## 4651 <NA> <NA> <NA> <NA> NA NA
## 4652 <NA> <NA> <NA> <NA> NA NA
## 4653 <NA> <NA> <NA> <NA> NA NA
## 4654 <NA> <NA> <NA> <NA> NA NA
## 4655 <NA> <NA> <NA> <NA> NA NA
## 4656 <NA> <NA> <NA> <NA> NA NA
## 4657 <NA> <NA> <NA> <NA> NA NA
## 4658 <NA> <NA> <NA> <NA> NA NA
## 4659 <NA> <NA> <NA> <NA> NA NA
## 4660 <NA> <NA> <NA> <NA> NA NA
## 4661 <NA> <NA> <NA> <NA> NA NA
## 4662 <NA> <NA> <NA> <NA> NA NA
## 4663 <NA> <NA> <NA> <NA> NA NA
## 4664 <NA> <NA> <NA> <NA> NA NA
## 4665 <NA> <NA> <NA> <NA> NA NA
## 4666 <NA> <NA> <NA> <NA> NA NA
## 4667 <NA> <NA> <NA> <NA> NA NA
## 4668 <NA> <NA> <NA> <NA> NA NA
## 4669 <NA> <NA> <NA> <NA> NA NA
## 4670 <NA> <NA> <NA> <NA> NA NA
## 4671 <NA> <NA> <NA> <NA> NA NA
## 4672 <NA> <NA> <NA> <NA> NA NA
## 4673 <NA> <NA> <NA> <NA> NA NA
## 4674 <NA> <NA> <NA> <NA> NA NA
## 4675 <NA> <NA> <NA> <NA> NA NA
## 4676 <NA> <NA> <NA> <NA> NA NA
## 4677 <NA> <NA> <NA> <NA> NA NA
## 4678 <NA> <NA> <NA> <NA> NA NA
## 4679 <NA> <NA> <NA> <NA> NA NA
## 4680 <NA> <NA> <NA> <NA> NA NA
## 4681 <NA> <NA> <NA> <NA> NA NA
## 4682 <NA> <NA> <NA> <NA> NA NA
## 4683 <NA> <NA> <NA> <NA> NA NA
## 4684 <NA> <NA> <NA> <NA> NA NA
## 4685 <NA> <NA> <NA> <NA> NA NA
## 4686 <NA> <NA> <NA> <NA> NA NA
## 4687 <NA> <NA> <NA> <NA> NA NA
## 4688 <NA> <NA> <NA> <NA> NA NA
## 4689 <NA> <NA> <NA> <NA> NA NA
## 4690 <NA> <NA> <NA> <NA> NA NA
## 4691 <NA> <NA> <NA> <NA> NA NA
## 4692 <NA> <NA> <NA> <NA> NA NA
## 4693 <NA> <NA> <NA> <NA> NA NA
## 4694 <NA> <NA> <NA> <NA> NA NA
## 4695 <NA> <NA> <NA> <NA> NA NA
## 4696 <NA> <NA> <NA> <NA> NA NA
## 4697 <NA> <NA> <NA> <NA> NA NA
## 4698 <NA> <NA> <NA> <NA> NA NA
## 4699 <NA> <NA> <NA> <NA> NA NA
## 4700 <NA> <NA> <NA> <NA> NA NA
## 4701 <NA> <NA> <NA> <NA> NA NA
## 4702 <NA> <NA> <NA> <NA> NA NA
## 4703 <NA> <NA> <NA> <NA> NA NA
## 4704 <NA> <NA> <NA> <NA> NA NA
## 4705 <NA> <NA> <NA> <NA> NA NA
## 4706 <NA> <NA> <NA> <NA> NA NA
## 4707 <NA> <NA> <NA> <NA> NA NA
## 4708 <NA> <NA> <NA> <NA> NA NA
## 4709 <NA> <NA> <NA> <NA> NA NA
## 4710 <NA> <NA> <NA> <NA> NA NA
## 4711 <NA> <NA> <NA> <NA> NA NA
## 4712 <NA> <NA> <NA> <NA> NA NA
## 4713 <NA> <NA> <NA> <NA> NA NA
## 4714 <NA> <NA> <NA> <NA> NA NA
## 4715 <NA> <NA> <NA> <NA> NA NA
## 4716 <NA> <NA> <NA> <NA> NA NA
## 4717 <NA> <NA> <NA> <NA> NA NA
## 4718 <NA> <NA> <NA> <NA> NA NA
## 4719 <NA> <NA> <NA> <NA> NA NA
## 4720 <NA> <NA> <NA> <NA> NA NA
## 4721 <NA> <NA> <NA> <NA> NA NA
## 4722 <NA> <NA> <NA> <NA> NA NA
## 4723 <NA> <NA> <NA> <NA> NA NA
## 4724 <NA> <NA> <NA> <NA> NA NA
## 4725 <NA> <NA> <NA> <NA> NA NA
## 4726 <NA> <NA> <NA> <NA> NA NA
## 4727 <NA> <NA> <NA> <NA> NA NA
## 4728 <NA> <NA> <NA> <NA> NA NA
## 4729 <NA> <NA> <NA> <NA> NA NA
## 4730 <NA> <NA> <NA> <NA> NA NA
## 4731 <NA> <NA> <NA> <NA> NA NA
## 4732 <NA> <NA> <NA> <NA> NA NA
## 4733 <NA> <NA> <NA> <NA> NA NA
## 4734 <NA> <NA> <NA> <NA> NA NA
## 4735 <NA> <NA> <NA> <NA> NA NA
## 4736 <NA> <NA> <NA> <NA> NA NA
## 4737 <NA> <NA> <NA> <NA> NA NA
## 4738 <NA> <NA> <NA> <NA> NA NA
## 4739 <NA> <NA> <NA> <NA> NA NA
## 4740 <NA> <NA> <NA> <NA> NA NA
## 4741 <NA> <NA> <NA> <NA> NA NA
## 4742 <NA> <NA> <NA> <NA> NA NA
## 4743 <NA> <NA> <NA> <NA> NA NA
## 4744 <NA> <NA> <NA> <NA> NA NA
## 4745 <NA> <NA> <NA> <NA> NA NA
## 4746 <NA> <NA> <NA> <NA> NA NA
## 4747 <NA> <NA> <NA> <NA> NA NA
## 4748 <NA> <NA> <NA> <NA> NA NA
## 4749 <NA> <NA> <NA> <NA> NA NA
## 4750 <NA> <NA> <NA> <NA> NA NA
## 4751 <NA> <NA> <NA> <NA> NA NA
## 4752 <NA> <NA> <NA> <NA> NA NA
## 4753 <NA> <NA> <NA> <NA> NA NA
## 4754 <NA> <NA> <NA> <NA> NA NA
## 4755 <NA> <NA> <NA> <NA> NA NA
## 4756 <NA> <NA> <NA> <NA> NA NA
## 4757 <NA> <NA> <NA> <NA> NA NA
## 4758 <NA> <NA> <NA> <NA> NA NA
## 4759 <NA> <NA> <NA> <NA> NA NA
## 4760 <NA> <NA> <NA> <NA> NA NA
## 4761 <NA> <NA> <NA> <NA> NA NA
## 4762 <NA> <NA> <NA> <NA> NA NA
## 4763 <NA> <NA> <NA> <NA> NA NA
## 4764 <NA> <NA> <NA> <NA> NA NA
## 4765 <NA> <NA> <NA> <NA> NA NA
## 4766 <NA> <NA> <NA> <NA> NA NA
## 4767 <NA> <NA> <NA> <NA> NA NA
## 4768 <NA> <NA> <NA> <NA> NA NA
## 4769 <NA> <NA> <NA> <NA> NA NA
## 4770 <NA> <NA> <NA> <NA> NA NA
## 4771 <NA> <NA> <NA> <NA> NA NA
## 4772 <NA> <NA> <NA> <NA> NA NA
## 4773 <NA> <NA> <NA> <NA> NA NA
## 4774 <NA> <NA> <NA> <NA> NA NA
## 4775 <NA> <NA> <NA> <NA> NA NA
## 4776 <NA> <NA> <NA> <NA> NA NA
## 4777 <NA> <NA> <NA> <NA> NA NA
## 4778 <NA> <NA> <NA> <NA> NA NA
## 4779 <NA> <NA> <NA> <NA> NA NA
## 4780 <NA> <NA> <NA> <NA> NA NA
## 4781 <NA> <NA> <NA> <NA> NA NA
## 4782 <NA> <NA> <NA> <NA> NA NA
## 4783 <NA> <NA> <NA> <NA> NA NA
## 4784 <NA> <NA> <NA> <NA> NA NA
## 4785 <NA> <NA> <NA> <NA> NA NA
## 4786 <NA> <NA> <NA> <NA> NA NA
## 4787 <NA> <NA> <NA> <NA> NA NA
## 4788 <NA> <NA> <NA> <NA> NA NA
## 4789 <NA> <NA> <NA> <NA> NA NA
## 4790 <NA> <NA> <NA> <NA> NA NA
## 4791 <NA> <NA> <NA> <NA> NA NA
## 4792 <NA> <NA> <NA> <NA> NA NA
## 4793 <NA> <NA> <NA> <NA> NA NA
## 4794 <NA> <NA> <NA> <NA> NA NA
## 4795 <NA> <NA> <NA> <NA> NA NA
## 4796 <NA> <NA> <NA> <NA> NA NA
## 4797 <NA> <NA> <NA> <NA> NA NA
## 4798 <NA> <NA> <NA> <NA> NA NA
## 4799 <NA> <NA> <NA> <NA> NA NA
## 4800 <NA> <NA> <NA> <NA> NA NA
## 4801 <NA> <NA> <NA> <NA> NA NA
## 4802 <NA> <NA> <NA> <NA> NA NA
## 4803 <NA> <NA> <NA> <NA> NA NA
## 4804 <NA> <NA> <NA> <NA> NA NA
## 4805 <NA> <NA> <NA> <NA> NA NA
## 4806 <NA> <NA> <NA> <NA> NA NA
## 4807 <NA> <NA> <NA> <NA> NA NA
## 4808 <NA> <NA> <NA> <NA> NA NA
## 4809 <NA> <NA> <NA> <NA> NA NA
## 4810 <NA> <NA> <NA> <NA> NA NA
## 4811 <NA> <NA> <NA> <NA> NA NA
## 4812 <NA> <NA> <NA> <NA> NA NA
## 4813 <NA> <NA> <NA> <NA> NA NA
## 4814 <NA> <NA> <NA> <NA> NA NA
## 4815 <NA> <NA> <NA> <NA> NA NA
## 4816 <NA> <NA> <NA> <NA> NA NA
## 4817 <NA> <NA> <NA> <NA> NA NA
## 4818 <NA> <NA> <NA> <NA> NA NA
## 4819 <NA> <NA> <NA> <NA> NA NA
## 4820 <NA> <NA> <NA> <NA> NA NA
## 4821 <NA> <NA> <NA> <NA> NA NA
## 4822 <NA> <NA> <NA> <NA> NA NA
## 4823 <NA> <NA> <NA> <NA> NA NA
## 4824 <NA> <NA> <NA> <NA> NA NA
## 4825 <NA> <NA> <NA> <NA> NA NA
## 4826 <NA> <NA> <NA> <NA> NA NA
## 4827 <NA> <NA> <NA> <NA> NA NA
## 4828 <NA> <NA> <NA> <NA> NA NA
## 4829 <NA> <NA> <NA> <NA> NA NA
## 4830 <NA> <NA> <NA> <NA> NA NA
## 4831 <NA> <NA> <NA> <NA> NA NA
## 4832 <NA> <NA> <NA> <NA> NA NA
## 4833 <NA> <NA> <NA> <NA> NA NA
## 4834 <NA> <NA> <NA> <NA> NA NA
## 4835 <NA> <NA> <NA> <NA> NA NA
## 4836 <NA> <NA> <NA> <NA> NA NA
## 4837 <NA> <NA> <NA> <NA> NA NA
## 4838 <NA> <NA> <NA> <NA> NA NA
## 4839 <NA> <NA> <NA> <NA> NA NA
## 4840 <NA> <NA> <NA> <NA> NA NA
## 4841 <NA> <NA> <NA> <NA> NA NA
## 4842 <NA> <NA> <NA> <NA> NA NA
## 4843 <NA> <NA> <NA> <NA> NA NA
## 4844 <NA> <NA> <NA> <NA> NA NA
## 4845 <NA> <NA> <NA> <NA> NA NA
## 4846 <NA> <NA> <NA> <NA> NA NA
## 4847 <NA> <NA> <NA> <NA> NA NA
## 4848 <NA> <NA> <NA> <NA> NA NA
## 4849 <NA> <NA> <NA> <NA> NA NA
## 4850 <NA> <NA> <NA> <NA> NA NA
## 4851 <NA> <NA> <NA> <NA> NA NA
## 4852 <NA> <NA> <NA> <NA> NA NA
## 4853 <NA> <NA> <NA> <NA> NA NA
## 4854 <NA> <NA> <NA> <NA> NA NA
## 4855 <NA> <NA> <NA> <NA> NA NA
## 4856 <NA> <NA> <NA> <NA> NA NA
## 4857 <NA> <NA> <NA> <NA> NA NA
## 4858 <NA> <NA> <NA> <NA> NA NA
## 4859 <NA> <NA> <NA> <NA> NA NA
## 4860 <NA> <NA> <NA> <NA> NA NA
## 4861 <NA> <NA> <NA> <NA> NA NA
## 4862 <NA> <NA> <NA> <NA> NA NA
## 4863 <NA> <NA> <NA> <NA> NA NA
## 4864 <NA> <NA> <NA> <NA> NA NA
## 4865 <NA> <NA> <NA> <NA> NA NA
## 4866 <NA> <NA> <NA> <NA> NA NA
## 4867 <NA> <NA> <NA> <NA> NA NA
## 4868 <NA> <NA> <NA> <NA> NA NA
## 4869 <NA> <NA> <NA> <NA> NA NA
## 4870 <NA> <NA> <NA> <NA> NA NA
## 4871 <NA> <NA> <NA> <NA> NA NA
## 4872 <NA> <NA> <NA> <NA> NA NA
## 4873 <NA> <NA> <NA> <NA> NA NA
## 4874 <NA> <NA> <NA> <NA> NA NA
## 4875 <NA> <NA> <NA> <NA> NA NA
## 4876 <NA> <NA> <NA> <NA> NA NA
## 4877 <NA> <NA> <NA> <NA> NA NA
## 4878 <NA> <NA> <NA> <NA> NA NA
## 4879 <NA> <NA> <NA> <NA> NA NA
## 4880 <NA> <NA> <NA> <NA> NA NA
## 4881 <NA> <NA> <NA> <NA> NA NA
## 4882 <NA> <NA> <NA> <NA> NA NA
## 4883 <NA> <NA> <NA> <NA> NA NA
## 4884 <NA> <NA> <NA> <NA> NA NA
## 4885 <NA> <NA> <NA> <NA> NA NA
## 4886 <NA> <NA> <NA> <NA> NA NA
## 4887 <NA> <NA> <NA> <NA> NA NA
## 4888 <NA> <NA> <NA> <NA> NA NA
## 4889 <NA> <NA> <NA> <NA> NA NA
## 4890 <NA> <NA> <NA> <NA> NA NA
## 4891 <NA> <NA> <NA> <NA> NA NA
## 4892 <NA> <NA> <NA> <NA> NA NA
## 4893 <NA> <NA> <NA> <NA> NA NA
## 4894 <NA> <NA> <NA> <NA> NA NA
## 4895 <NA> <NA> <NA> <NA> NA NA
## 4896 <NA> <NA> <NA> <NA> NA NA
## 4897 <NA> <NA> <NA> <NA> NA NA
## 4898 <NA> <NA> <NA> <NA> NA NA
## 4899 <NA> <NA> <NA> <NA> NA NA
## 4900 <NA> <NA> <NA> <NA> NA NA
## 4901 <NA> <NA> <NA> <NA> NA NA
## 4902 <NA> <NA> <NA> <NA> NA NA
## 4903 <NA> <NA> <NA> <NA> NA NA
## 4904 <NA> <NA> <NA> <NA> NA NA
## 4905 <NA> <NA> <NA> <NA> NA NA
## 4906 <NA> <NA> <NA> <NA> NA NA
## 4907 <NA> <NA> <NA> <NA> NA NA
## 4908 <NA> <NA> <NA> <NA> NA NA
## 4909 <NA> <NA> <NA> <NA> NA NA
## 4910 <NA> <NA> <NA> <NA> NA NA
## 4911 <NA> <NA> <NA> <NA> NA NA
## 4912 <NA> <NA> <NA> <NA> NA NA
## 4913 <NA> <NA> <NA> <NA> NA NA
## 4914 <NA> <NA> <NA> <NA> NA NA
## 4915 <NA> <NA> <NA> <NA> NA NA
## 4916 <NA> <NA> <NA> <NA> NA NA
## 4917 <NA> <NA> <NA> <NA> NA NA
## 4918 <NA> <NA> <NA> <NA> NA NA
## 4919 <NA> <NA> <NA> <NA> NA NA
## 4920 <NA> <NA> <NA> <NA> NA NA
## 4921 <NA> <NA> <NA> <NA> NA NA
## 4922 <NA> <NA> <NA> <NA> NA NA
## 4923 <NA> <NA> <NA> <NA> NA NA
## 4924 <NA> <NA> <NA> <NA> NA NA
## 4925 <NA> <NA> <NA> <NA> NA NA
## 4926 <NA> <NA> <NA> <NA> NA NA
## 4927 <NA> <NA> <NA> <NA> NA NA
## 4928 <NA> <NA> <NA> <NA> NA NA
## 4929 <NA> <NA> <NA> <NA> NA NA
## 4930 <NA> <NA> <NA> <NA> NA NA
## 4931 <NA> <NA> <NA> <NA> NA NA
## 4932 <NA> <NA> <NA> <NA> NA NA
## 4933 <NA> <NA> <NA> <NA> NA NA
## 4934 <NA> <NA> <NA> <NA> NA NA
## 4935 <NA> <NA> <NA> <NA> NA NA
## 4936 <NA> <NA> <NA> <NA> NA NA
## 4937 <NA> <NA> <NA> <NA> NA NA
## 4938 <NA> <NA> <NA> <NA> NA NA
## 4939 <NA> <NA> <NA> <NA> NA NA
## 4940 <NA> <NA> <NA> <NA> NA NA
## 4941 <NA> <NA> <NA> <NA> NA NA
## 4942 <NA> <NA> <NA> <NA> NA NA
## 4943 <NA> <NA> <NA> <NA> NA NA
## 4944 <NA> <NA> <NA> <NA> NA NA
## 4945 <NA> <NA> <NA> <NA> NA NA
## 4946 <NA> <NA> <NA> <NA> NA NA
## 4947 <NA> <NA> <NA> <NA> NA NA
## 4948 <NA> <NA> <NA> <NA> NA NA
## 4949 <NA> <NA> <NA> <NA> NA NA
## 4950 <NA> <NA> <NA> <NA> NA NA
## 4951 <NA> <NA> <NA> <NA> NA NA
## 4952 <NA> <NA> <NA> <NA> NA NA
## 4953 <NA> <NA> <NA> <NA> NA NA
## 4954 <NA> <NA> <NA> <NA> NA NA
## 4955 <NA> <NA> <NA> <NA> NA NA
## 4956 <NA> <NA> <NA> <NA> NA NA
## 4957 <NA> <NA> <NA> <NA> NA NA
## 4958 <NA> <NA> <NA> <NA> NA NA
## 4959 <NA> <NA> <NA> <NA> NA NA
## 4960 <NA> <NA> <NA> <NA> NA NA
## 4961 <NA> <NA> <NA> <NA> NA NA
## 4962 <NA> <NA> <NA> <NA> NA NA
## 4963 <NA> <NA> <NA> <NA> NA NA
## 4964 <NA> <NA> <NA> <NA> NA NA
## 4965 <NA> <NA> <NA> <NA> NA NA
## 4966 <NA> <NA> <NA> <NA> NA NA
## 4967 <NA> <NA> <NA> <NA> NA NA
## 4968 <NA> <NA> <NA> <NA> NA NA
## 4969 <NA> <NA> <NA> <NA> NA NA
## 4970 <NA> <NA> <NA> <NA> NA NA
## 4971 <NA> <NA> <NA> <NA> NA NA
## 4972 <NA> <NA> <NA> <NA> NA NA
## 4973 <NA> <NA> <NA> <NA> NA NA
## 4974 <NA> <NA> <NA> <NA> NA NA
## 4975 <NA> <NA> <NA> <NA> NA NA
## 4976 <NA> <NA> <NA> <NA> NA NA
## 4977 <NA> <NA> <NA> <NA> NA NA
## 4978 <NA> <NA> <NA> <NA> NA NA
## 4979 <NA> <NA> <NA> <NA> NA NA
## 4980 <NA> <NA> <NA> <NA> NA NA
## 4981 <NA> <NA> <NA> <NA> NA NA
## 4982 <NA> <NA> <NA> <NA> NA NA
## 4983 <NA> <NA> <NA> <NA> NA NA
## 4984 <NA> <NA> <NA> <NA> NA NA
## 4985 <NA> <NA> <NA> <NA> NA NA
## 4986 <NA> <NA> <NA> <NA> NA NA
## 4987 <NA> <NA> <NA> <NA> NA NA
## 4988 <NA> <NA> <NA> <NA> NA NA
## 4989 <NA> <NA> <NA> <NA> NA NA
## 4990 <NA> <NA> <NA> <NA> NA NA
## 4991 <NA> <NA> <NA> <NA> NA NA
## 4992 <NA> <NA> <NA> <NA> NA NA
## 4993 <NA> <NA> <NA> <NA> NA NA
## 4994 <NA> <NA> <NA> <NA> NA NA
## 4995 <NA> <NA> <NA> <NA> NA NA
## 4996 <NA> <NA> <NA> <NA> NA NA
## 4997 <NA> <NA> <NA> <NA> NA NA
## 4998 <NA> <NA> <NA> <NA> NA NA
## 4999 <NA> <NA> <NA> <NA> NA NA
## eisced pdwrk
## 1 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2 ES-ISCED V1, lower tertiary education, BA level Marked
## 3 ES-ISCED I , less than lower secondary Not marked
## 4 ES-ISCED II, lower secondary Not marked
## 5 ES-ISCED I , less than lower secondary Not marked
## 6 ES-ISCED IIIa, upper tier upper secondary Marked
## 7 ES-ISCED IIIa, upper tier upper secondary Marked
## 8 ES-ISCED II, lower secondary Marked
## 9 ES-ISCED IIIa, upper tier upper secondary Marked
## 10 ES-ISCED IIIa, upper tier upper secondary Marked
## 11 ES-ISCED IIIa, upper tier upper secondary Marked
## 12 ES-ISCED II, lower secondary Marked
## 13 ES-ISCED I , less than lower secondary Not marked
## 14 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 15 ES-ISCED V1, lower tertiary education, BA level Marked
## 16 ES-ISCED IIIa, upper tier upper secondary Marked
## 17 ES-ISCED I , less than lower secondary Not marked
## 18 ES-ISCED IIIb, lower tier upper secondary Marked
## 19 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 20 ES-ISCED II, lower secondary Not marked
## 21 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 22 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 23 ES-ISCED V1, lower tertiary education, BA level Marked
## 24 ES-ISCED V1, lower tertiary education, BA level Marked
## 25 ES-ISCED I , less than lower secondary Not marked
## 26 ES-ISCED IV, advanced vocational, sub-degree Marked
## 27 ES-ISCED IV, advanced vocational, sub-degree Marked
## 28 ES-ISCED I , less than lower secondary Not marked
## 29 ES-ISCED I , less than lower secondary Not marked
## 30 ES-ISCED IIIb, lower tier upper secondary Marked
## 31 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 32 ES-ISCED IIIb, lower tier upper secondary Marked
## 33 ES-ISCED I , less than lower secondary Not marked
## 34 ES-ISCED I , less than lower secondary Not marked
## 35 ES-ISCED IIIa, upper tier upper secondary Marked
## 36 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 37 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 38 ES-ISCED V1, lower tertiary education, BA level Marked
## 39 ES-ISCED IV, advanced vocational, sub-degree Marked
## 40 ES-ISCED IV, advanced vocational, sub-degree Marked
## 41 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 42 ES-ISCED IIIa, upper tier upper secondary Marked
## 43 ES-ISCED IV, advanced vocational, sub-degree Marked
## 44 ES-ISCED IIIb, lower tier upper secondary Marked
## 45 ES-ISCED II, lower secondary Marked
## 46 ES-ISCED IIIb, lower tier upper secondary Marked
## 47 ES-ISCED IIIb, lower tier upper secondary Marked
## 48 ES-ISCED II, lower secondary Marked
## 49 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 50 ES-ISCED I , less than lower secondary Marked
## 51 ES-ISCED IIIa, upper tier upper secondary Marked
## 52 Other Not marked
## 53 ES-ISCED V1, lower tertiary education, BA level Not marked
## 54 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 55 ES-ISCED I , less than lower secondary Marked
## 56 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 57 ES-ISCED V1, lower tertiary education, BA level Not marked
## 58 ES-ISCED II, lower secondary Not marked
## 59 Other Marked
## 60 ES-ISCED II, lower secondary Marked
## 61 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 62 ES-ISCED V1, lower tertiary education, BA level Not marked
## 63 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 64 ES-ISCED II, lower secondary Marked
## 65 ES-ISCED I , less than lower secondary Not marked
## 66 ES-ISCED V1, lower tertiary education, BA level Marked
## 67 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 68 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 69 ES-ISCED V1, lower tertiary education, BA level Marked
## 70 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 71 ES-ISCED V1, lower tertiary education, BA level Marked
## 72 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 73 ES-ISCED I , less than lower secondary Not marked
## 74 ES-ISCED IIIb, lower tier upper secondary Marked
## 75 ES-ISCED V1, lower tertiary education, BA level Marked
## 76 ES-ISCED IIIa, upper tier upper secondary Marked
## 77 ES-ISCED V1, lower tertiary education, BA level Marked
## 78 ES-ISCED IV, advanced vocational, sub-degree Marked
## 79 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 80 ES-ISCED IIIb, lower tier upper secondary Not marked
## 81 ES-ISCED V1, lower tertiary education, BA level Not marked
## 82 ES-ISCED IIIb, lower tier upper secondary Not marked
## 83 ES-ISCED IIIb, lower tier upper secondary Not marked
## 84 ES-ISCED IIIa, upper tier upper secondary Marked
## 85 ES-ISCED IIIa, upper tier upper secondary Marked
## 86 ES-ISCED I , less than lower secondary Not marked
## 87 ES-ISCED II, lower secondary Not marked
## 88 ES-ISCED II, lower secondary Not marked
## 89 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 90 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 91 ES-ISCED I , less than lower secondary Not marked
## 92 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 93 ES-ISCED IIIa, upper tier upper secondary Marked
## 94 ES-ISCED IIIa, upper tier upper secondary Marked
## 95 ES-ISCED IIIb, lower tier upper secondary Not marked
## 96 ES-ISCED I , less than lower secondary Not marked
## 97 ES-ISCED V1, lower tertiary education, BA level Marked
## 98 ES-ISCED IV, advanced vocational, sub-degree Marked
## 99 ES-ISCED IIIb, lower tier upper secondary Marked
## 100 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 101 ES-ISCED IIIa, upper tier upper secondary Not marked
## 102 ES-ISCED II, lower secondary Not marked
## 103 ES-ISCED V1, lower tertiary education, BA level Marked
## 104 ES-ISCED I , less than lower secondary Marked
## 105 ES-ISCED II, lower secondary Marked
## 106 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 107 ES-ISCED I , less than lower secondary Marked
## 108 ES-ISCED IV, advanced vocational, sub-degree Marked
## 109 ES-ISCED V1, lower tertiary education, BA level Not marked
## 110 ES-ISCED II, lower secondary Not marked
## 111 Other Not marked
## 112 ES-ISCED II, lower secondary Marked
## 113 ES-ISCED IIIb, lower tier upper secondary Not marked
## 114 ES-ISCED V1, lower tertiary education, BA level Marked
## 115 ES-ISCED I , less than lower secondary Not marked
## 116 ES-ISCED V1, lower tertiary education, BA level Marked
## 117 ES-ISCED V1, lower tertiary education, BA level Marked
## 118 ES-ISCED IV, advanced vocational, sub-degree Marked
## 119 ES-ISCED IIIa, upper tier upper secondary Marked
## 120 ES-ISCED I , less than lower secondary Not marked
## 121 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 122 ES-ISCED I , less than lower secondary Not marked
## 123 ES-ISCED II, lower secondary Not marked
## 124 ES-ISCED I , less than lower secondary Not marked
## 125 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 126 ES-ISCED II, lower secondary Not marked
## 127 ES-ISCED II, lower secondary Not marked
## 128 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 129 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 130 ES-ISCED I , less than lower secondary Not marked
## 131 ES-ISCED I , less than lower secondary Not marked
## 132 ES-ISCED I , less than lower secondary Not marked
## 133 ES-ISCED IIIa, upper tier upper secondary Not marked
## 134 Other Not marked
## 135 ES-ISCED IV, advanced vocational, sub-degree Marked
## 136 ES-ISCED II, lower secondary Not marked
## 137 ES-ISCED II, lower secondary Marked
## 138 ES-ISCED II, lower secondary Not marked
## 139 Other Not marked
## 140 ES-ISCED I , less than lower secondary Not marked
## 141 ES-ISCED I , less than lower secondary Not marked
## 142 ES-ISCED II, lower secondary Not marked
## 143 ES-ISCED IIIb, lower tier upper secondary Marked
## 144 ES-ISCED IIIb, lower tier upper secondary Marked
## 145 ES-ISCED IIIa, upper tier upper secondary Marked
## 146 ES-ISCED IIIa, upper tier upper secondary Not marked
## 147 ES-ISCED IIIa, upper tier upper secondary Marked
## 148 ES-ISCED IIIa, upper tier upper secondary Not marked
## 149 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 150 Other Not marked
## 151 ES-ISCED V1, lower tertiary education, BA level Marked
## 152 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 153 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 154 ES-ISCED IIIa, upper tier upper secondary Marked
## 155 ES-ISCED II, lower secondary Not marked
## 156 ES-ISCED I , less than lower secondary Not marked
## 157 ES-ISCED IV, advanced vocational, sub-degree Marked
## 158 ES-ISCED IIIa, upper tier upper secondary Marked
## 159 ES-ISCED I , less than lower secondary Not marked
## 160 ES-ISCED II, lower secondary Not marked
## 161 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 162 ES-ISCED IV, advanced vocational, sub-degree Marked
## 163 ES-ISCED V1, lower tertiary education, BA level Not marked
## 164 ES-ISCED I , less than lower secondary Not marked
## 165 ES-ISCED II, lower secondary Not marked
## 166 ES-ISCED IIIb, lower tier upper secondary Marked
## 167 ES-ISCED V1, lower tertiary education, BA level Marked
## 168 ES-ISCED I , less than lower secondary Not marked
## 169 ES-ISCED II, lower secondary Not marked
## 170 ES-ISCED IV, advanced vocational, sub-degree Marked
## 171 ES-ISCED V1, lower tertiary education, BA level Marked
## 172 ES-ISCED I , less than lower secondary Not marked
## 173 ES-ISCED I , less than lower secondary Not marked
## 174 ES-ISCED IIIb, lower tier upper secondary Not marked
## 175 ES-ISCED V1, lower tertiary education, BA level Not marked
## 176 ES-ISCED IIIb, lower tier upper secondary Marked
## 177 ES-ISCED IIIb, lower tier upper secondary Not marked
## 178 ES-ISCED I , less than lower secondary Not marked
## 179 ES-ISCED I , less than lower secondary Not marked
## 180 ES-ISCED IV, advanced vocational, sub-degree Marked
## 181 ES-ISCED I , less than lower secondary Not marked
## 182 ES-ISCED I , less than lower secondary Not marked
## 183 ES-ISCED II, lower secondary Not marked
## 184 ES-ISCED V1, lower tertiary education, BA level Marked
## 185 ES-ISCED I , less than lower secondary Not marked
## 186 ES-ISCED IIIa, upper tier upper secondary Marked
## 187 ES-ISCED II, lower secondary Marked
## 188 ES-ISCED I , less than lower secondary Not marked
## 189 ES-ISCED I , less than lower secondary Not marked
## 190 ES-ISCED I , less than lower secondary Not marked
## 191 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 192 ES-ISCED IIIb, lower tier upper secondary Marked
## 193 ES-ISCED IV, advanced vocational, sub-degree Marked
## 194 ES-ISCED IIIb, lower tier upper secondary Marked
## 195 ES-ISCED V1, lower tertiary education, BA level Marked
## 196 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 197 ES-ISCED I , less than lower secondary Not marked
## 198 ES-ISCED V1, lower tertiary education, BA level Marked
## 199 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 200 ES-ISCED V1, lower tertiary education, BA level Marked
## 201 ES-ISCED IIIa, upper tier upper secondary Marked
## 202 ES-ISCED II, lower secondary Not marked
## 203 ES-ISCED IIIb, lower tier upper secondary Not marked
## 204 ES-ISCED IIIa, upper tier upper secondary Not marked
## 205 ES-ISCED II, lower secondary Marked
## 206 ES-ISCED II, lower secondary Not marked
## 207 ES-ISCED IIIb, lower tier upper secondary Not marked
## 208 ES-ISCED IIIb, lower tier upper secondary Marked
## 209 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 210 ES-ISCED II, lower secondary Not marked
## 211 ES-ISCED IIIb, lower tier upper secondary Not marked
## 212 ES-ISCED II, lower secondary Marked
## 213 ES-ISCED V1, lower tertiary education, BA level Marked
## 214 ES-ISCED I , less than lower secondary Not marked
## 215 ES-ISCED IIIa, upper tier upper secondary Not marked
## 216 ES-ISCED V1, lower tertiary education, BA level Marked
## 217 ES-ISCED I , less than lower secondary Not marked
## 218 ES-ISCED V1, lower tertiary education, BA level Not marked
## 219 ES-ISCED IV, advanced vocational, sub-degree Marked
## 220 ES-ISCED II, lower secondary Not marked
## 221 ES-ISCED I , less than lower secondary Marked
## 222 ES-ISCED IIIb, lower tier upper secondary Not marked
## 223 ES-ISCED II, lower secondary Not marked
## 224 <NA> Not marked
## 225 ES-ISCED V1, lower tertiary education, BA level Marked
## 226 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 227 ES-ISCED IIIb, lower tier upper secondary Marked
## 228 ES-ISCED II, lower secondary Marked
## 229 ES-ISCED IIIa, upper tier upper secondary Marked
## 230 ES-ISCED IIIa, upper tier upper secondary Marked
## 231 ES-ISCED I , less than lower secondary Not marked
## 232 ES-ISCED I , less than lower secondary Not marked
## 233 ES-ISCED I , less than lower secondary Not marked
## 234 ES-ISCED IIIb, lower tier upper secondary Marked
## 235 ES-ISCED I , less than lower secondary Not marked
## 236 ES-ISCED IIIb, lower tier upper secondary Marked
## 237 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 238 ES-ISCED I , less than lower secondary Not marked
## 239 ES-ISCED II, lower secondary Marked
## 240 ES-ISCED V1, lower tertiary education, BA level Not marked
## 241 ES-ISCED II, lower secondary Marked
## 242 ES-ISCED IIIa, upper tier upper secondary Not marked
## 243 ES-ISCED IV, advanced vocational, sub-degree Marked
## 244 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 245 ES-ISCED V1, lower tertiary education, BA level Marked
## 246 ES-ISCED I , less than lower secondary Not marked
## 247 ES-ISCED IV, advanced vocational, sub-degree Marked
## 248 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 249 ES-ISCED IIIa, upper tier upper secondary Marked
## 250 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 251 ES-ISCED I , less than lower secondary Marked
## 252 ES-ISCED V1, lower tertiary education, BA level Marked
## 253 ES-ISCED IIIa, upper tier upper secondary Marked
## 254 ES-ISCED V1, lower tertiary education, BA level Not marked
## 255 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 256 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 257 ES-ISCED IIIb, lower tier upper secondary Marked
## 258 ES-ISCED IIIa, upper tier upper secondary Marked
## 259 ES-ISCED IIIb, lower tier upper secondary Marked
## 260 ES-ISCED V1, lower tertiary education, BA level Marked
## 261 ES-ISCED I , less than lower secondary Not marked
## 262 ES-ISCED IIIb, lower tier upper secondary Not marked
## 263 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 264 ES-ISCED IIIa, upper tier upper secondary Marked
## 265 Other Not marked
## 266 ES-ISCED IIIa, upper tier upper secondary Not marked
## 267 ES-ISCED IV, advanced vocational, sub-degree Marked
## 268 ES-ISCED IV, advanced vocational, sub-degree Marked
## 269 ES-ISCED IIIb, lower tier upper secondary Not marked
## 270 ES-ISCED V1, lower tertiary education, BA level Marked
## 271 ES-ISCED IV, advanced vocational, sub-degree Marked
## 272 ES-ISCED II, lower secondary Marked
## 273 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 274 ES-ISCED V1, lower tertiary education, BA level Marked
## 275 ES-ISCED I , less than lower secondary Marked
## 276 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 277 ES-ISCED IIIb, lower tier upper secondary Marked
## 278 ES-ISCED IV, advanced vocational, sub-degree Marked
## 279 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 280 ES-ISCED I , less than lower secondary Marked
## 281 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 282 ES-ISCED II, lower secondary Marked
## 283 ES-ISCED I , less than lower secondary Not marked
## 284 ES-ISCED I , less than lower secondary Not marked
## 285 ES-ISCED II, lower secondary Marked
## 286 ES-ISCED IV, advanced vocational, sub-degree Marked
## 287 ES-ISCED I , less than lower secondary Marked
## 288 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 289 ES-ISCED IIIa, upper tier upper secondary Marked
## 290 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 291 ES-ISCED I , less than lower secondary Marked
## 292 ES-ISCED IIIb, lower tier upper secondary Not marked
## 293 ES-ISCED IIIb, lower tier upper secondary Marked
## 294 ES-ISCED IV, advanced vocational, sub-degree Marked
## 295 ES-ISCED II, lower secondary Not marked
## 296 ES-ISCED I , less than lower secondary Not marked
## 297 ES-ISCED IIIa, upper tier upper secondary Marked
## 298 ES-ISCED I , less than lower secondary Not marked
## 299 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 300 ES-ISCED IV, advanced vocational, sub-degree Marked
## 301 ES-ISCED II, lower secondary Not marked
## 302 ES-ISCED IIIb, lower tier upper secondary Not marked
## 303 ES-ISCED IIIb, lower tier upper secondary Marked
## 304 ES-ISCED IIIb, lower tier upper secondary Marked
## 305 ES-ISCED IV, advanced vocational, sub-degree Marked
## 306 ES-ISCED I , less than lower secondary Not marked
## 307 ES-ISCED V1, lower tertiary education, BA level Not marked
## 308 ES-ISCED IIIb, lower tier upper secondary Marked
## 309 ES-ISCED II, lower secondary Not marked
## 310 ES-ISCED I , less than lower secondary Not marked
## 311 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 312 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 313 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 314 ES-ISCED I , less than lower secondary Not marked
## 315 ES-ISCED IIIb, lower tier upper secondary Not marked
## 316 ES-ISCED I , less than lower secondary Not marked
## 317 ES-ISCED IV, advanced vocational, sub-degree Marked
## 318 ES-ISCED V1, lower tertiary education, BA level Marked
## 319 ES-ISCED IIIa, upper tier upper secondary Not marked
## 320 ES-ISCED IIIa, upper tier upper secondary Marked
## 321 ES-ISCED IIIa, upper tier upper secondary Marked
## 322 ES-ISCED V1, lower tertiary education, BA level Not marked
## 323 ES-ISCED I , less than lower secondary Marked
## 324 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 325 ES-ISCED IV, advanced vocational, sub-degree Marked
## 326 ES-ISCED II, lower secondary Marked
## 327 ES-ISCED II, lower secondary Not marked
## 328 ES-ISCED IIIb, lower tier upper secondary Not marked
## 329 ES-ISCED V1, lower tertiary education, BA level Not marked
## 330 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 331 ES-ISCED I , less than lower secondary Not marked
## 332 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 333 ES-ISCED IV, advanced vocational, sub-degree Marked
## 334 ES-ISCED II, lower secondary Marked
## 335 Other Not marked
## 336 ES-ISCED I , less than lower secondary Not marked
## 337 ES-ISCED IIIb, lower tier upper secondary Not marked
## 338 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 339 ES-ISCED IV, advanced vocational, sub-degree Marked
## 340 ES-ISCED I , less than lower secondary Not marked
## 341 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 342 ES-ISCED IIIa, upper tier upper secondary Marked
## 343 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 344 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 345 ES-ISCED IIIa, upper tier upper secondary Marked
## 346 ES-ISCED IIIb, lower tier upper secondary Marked
## 347 ES-ISCED I , less than lower secondary Not marked
## 348 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 349 ES-ISCED V1, lower tertiary education, BA level Marked
## 350 ES-ISCED I , less than lower secondary Not marked
## 351 ES-ISCED IIIa, upper tier upper secondary Marked
## 352 ES-ISCED I , less than lower secondary Not marked
## 353 ES-ISCED II, lower secondary Not marked
## 354 <NA> Not marked
## 355 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 356 ES-ISCED IV, advanced vocational, sub-degree Marked
## 357 ES-ISCED V1, lower tertiary education, BA level Marked
## 358 ES-ISCED II, lower secondary Not marked
## 359 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 360 ES-ISCED I , less than lower secondary Not marked
## 361 ES-ISCED IV, advanced vocational, sub-degree Marked
## 362 ES-ISCED IIIb, lower tier upper secondary Marked
## 363 ES-ISCED I , less than lower secondary Not marked
## 364 ES-ISCED I , less than lower secondary Not marked
## 365 ES-ISCED IV, advanced vocational, sub-degree Marked
## 366 ES-ISCED II, lower secondary Marked
## 367 ES-ISCED IIIa, upper tier upper secondary Marked
## 368 ES-ISCED IIIa, upper tier upper secondary Not marked
## 369 ES-ISCED IIIa, upper tier upper secondary Not marked
## 370 ES-ISCED IIIa, upper tier upper secondary Marked
## 371 ES-ISCED IV, advanced vocational, sub-degree Marked
## 372 ES-ISCED II, lower secondary Not marked
## 373 ES-ISCED IIIa, upper tier upper secondary Not marked
## 374 ES-ISCED IIIb, lower tier upper secondary Not marked
## 375 ES-ISCED I , less than lower secondary Not marked
## 376 ES-ISCED I , less than lower secondary Marked
## 377 ES-ISCED IV, advanced vocational, sub-degree Marked
## 378 ES-ISCED II, lower secondary Marked
## 379 ES-ISCED IIIb, lower tier upper secondary Marked
## 380 ES-ISCED I , less than lower secondary Marked
## 381 ES-ISCED I , less than lower secondary Not marked
## 382 ES-ISCED V1, lower tertiary education, BA level Marked
## 383 ES-ISCED I , less than lower secondary Not marked
## 384 ES-ISCED V1, lower tertiary education, BA level Not marked
## 385 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 386 ES-ISCED I , less than lower secondary Marked
## 387 ES-ISCED IIIb, lower tier upper secondary Not marked
## 388 ES-ISCED IIIa, upper tier upper secondary Marked
## 389 ES-ISCED IIIa, upper tier upper secondary Not marked
## 390 ES-ISCED IIIb, lower tier upper secondary Not marked
## 391 ES-ISCED IV, advanced vocational, sub-degree Marked
## 392 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 393 ES-ISCED IIIb, lower tier upper secondary Marked
## 394 ES-ISCED V1, lower tertiary education, BA level Marked
## 395 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 396 ES-ISCED II, lower secondary Not marked
## 397 <NA> Not marked
## 398 ES-ISCED II, lower secondary Not marked
## 399 ES-ISCED IV, advanced vocational, sub-degree Marked
## 400 ES-ISCED V1, lower tertiary education, BA level Marked
## 401 ES-ISCED I , less than lower secondary Not marked
## 402 ES-ISCED IIIb, lower tier upper secondary Marked
## 403 ES-ISCED I , less than lower secondary Not marked
## 404 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 405 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 406 ES-ISCED V1, lower tertiary education, BA level Not marked
## 407 <NA> Not marked
## 408 ES-ISCED I , less than lower secondary Not marked
## 409 ES-ISCED V1, lower tertiary education, BA level Marked
## 410 ES-ISCED IV, advanced vocational, sub-degree Marked
## 411 ES-ISCED I , less than lower secondary Not marked
## 412 ES-ISCED II, lower secondary Marked
## 413 ES-ISCED I , less than lower secondary Marked
## 414 ES-ISCED V1, lower tertiary education, BA level Marked
## 415 ES-ISCED I , less than lower secondary Not marked
## 416 ES-ISCED II, lower secondary Marked
## 417 ES-ISCED V1, lower tertiary education, BA level Marked
## 418 ES-ISCED I , less than lower secondary Not marked
## 419 ES-ISCED I , less than lower secondary Not marked
## 420 ES-ISCED V1, lower tertiary education, BA level Not marked
## 421 ES-ISCED IIIb, lower tier upper secondary Marked
## 422 ES-ISCED IIIb, lower tier upper secondary Marked
## 423 ES-ISCED I , less than lower secondary Not marked
## 424 ES-ISCED II, lower secondary Marked
## 425 ES-ISCED V1, lower tertiary education, BA level Marked
## 426 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 427 ES-ISCED V1, lower tertiary education, BA level Not marked
## 428 ES-ISCED IIIa, upper tier upper secondary Marked
## 429 ES-ISCED I , less than lower secondary Not marked
## 430 ES-ISCED IV, advanced vocational, sub-degree Marked
## 431 ES-ISCED IIIa, upper tier upper secondary Not marked
## 432 ES-ISCED IIIa, upper tier upper secondary Not marked
## 433 ES-ISCED I , less than lower secondary Not marked
## 434 ES-ISCED II, lower secondary Not marked
## 435 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 436 ES-ISCED V1, lower tertiary education, BA level Not marked
## 437 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 438 ES-ISCED V1, lower tertiary education, BA level Marked
## 439 ES-ISCED I , less than lower secondary Not marked
## 440 ES-ISCED IIIa, upper tier upper secondary Marked
## 441 ES-ISCED IV, advanced vocational, sub-degree Marked
## 442 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 443 ES-ISCED II, lower secondary Not marked
## 444 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 445 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 446 ES-ISCED V1, lower tertiary education, BA level Marked
## 447 ES-ISCED II, lower secondary Marked
## 448 ES-ISCED IIIa, upper tier upper secondary Marked
## 449 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 450 ES-ISCED I , less than lower secondary Marked
## 451 ES-ISCED IIIa, upper tier upper secondary Marked
## 452 ES-ISCED II, lower secondary Not marked
## 453 ES-ISCED V1, lower tertiary education, BA level Not marked
## 454 ES-ISCED II, lower secondary Marked
## 455 ES-ISCED I , less than lower secondary Not marked
## 456 Other Marked
## 457 ES-ISCED II, lower secondary Not marked
## 458 ES-ISCED V1, lower tertiary education, BA level Not marked
## 459 ES-ISCED IIIa, upper tier upper secondary Not marked
## 460 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 461 ES-ISCED I , less than lower secondary Not marked
## 462 ES-ISCED II, lower secondary Marked
## 463 ES-ISCED I , less than lower secondary Marked
## 464 ES-ISCED IIIb, lower tier upper secondary Not marked
## 465 ES-ISCED IIIa, upper tier upper secondary Not marked
## 466 ES-ISCED I , less than lower secondary Not marked
## 467 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 468 ES-ISCED IV, advanced vocational, sub-degree Marked
## 469 ES-ISCED I , less than lower secondary Not marked
## 470 ES-ISCED I , less than lower secondary Not marked
## 471 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 472 ES-ISCED IIIb, lower tier upper secondary Not marked
## 473 ES-ISCED II, lower secondary Not marked
## 474 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 475 ES-ISCED IIIb, lower tier upper secondary Not marked
## 476 ES-ISCED II, lower secondary Not marked
## 477 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 478 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 479 ES-ISCED II, lower secondary Not marked
## 480 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 481 ES-ISCED I , less than lower secondary Not marked
## 482 ES-ISCED IIIa, upper tier upper secondary Not marked
## 483 ES-ISCED IIIa, upper tier upper secondary Marked
## 484 ES-ISCED IIIa, upper tier upper secondary Not marked
## 485 <NA> Not marked
## 486 ES-ISCED V1, lower tertiary education, BA level Not marked
## 487 Other Not marked
## 488 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 489 ES-ISCED II, lower secondary Marked
## 490 ES-ISCED I , less than lower secondary Not marked
## 491 ES-ISCED IV, advanced vocational, sub-degree Marked
## 492 ES-ISCED II, lower secondary Marked
## 493 ES-ISCED V1, lower tertiary education, BA level Marked
## 494 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 495 ES-ISCED V1, lower tertiary education, BA level Marked
## 496 ES-ISCED II, lower secondary Marked
## 497 ES-ISCED IV, advanced vocational, sub-degree Marked
## 498 ES-ISCED V1, lower tertiary education, BA level Not marked
## 499 ES-ISCED V1, lower tertiary education, BA level Marked
## 500 ES-ISCED I , less than lower secondary Not marked
## 501 ES-ISCED IIIa, upper tier upper secondary Marked
## 502 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 503 ES-ISCED II, lower secondary Marked
## 504 ES-ISCED I , less than lower secondary Not marked
## 505 ES-ISCED IV, advanced vocational, sub-degree Marked
## 506 ES-ISCED V1, lower tertiary education, BA level Marked
## 507 ES-ISCED IV, advanced vocational, sub-degree Marked
## 508 ES-ISCED II, lower secondary Marked
## 509 ES-ISCED IIIa, upper tier upper secondary Not marked
## 510 ES-ISCED I , less than lower secondary Marked
## 511 ES-ISCED I , less than lower secondary Not marked
## 512 ES-ISCED I , less than lower secondary Not marked
## 513 ES-ISCED I , less than lower secondary Not marked
## 514 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 515 ES-ISCED IIIa, upper tier upper secondary Marked
## 516 ES-ISCED IIIa, upper tier upper secondary Not marked
## 517 ES-ISCED I , less than lower secondary Not marked
## 518 ES-ISCED IIIb, lower tier upper secondary Marked
## 519 ES-ISCED IIIa, upper tier upper secondary Marked
## 520 ES-ISCED IIIa, upper tier upper secondary Marked
## 521 ES-ISCED I , less than lower secondary Not marked
## 522 ES-ISCED I , less than lower secondary Not marked
## 523 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 524 ES-ISCED I , less than lower secondary Not marked
## 525 ES-ISCED I , less than lower secondary Marked
## 526 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 527 ES-ISCED IIIa, upper tier upper secondary Marked
## 528 ES-ISCED IIIb, lower tier upper secondary Marked
## 529 ES-ISCED IIIa, upper tier upper secondary Marked
## 530 ES-ISCED IV, advanced vocational, sub-degree Marked
## 531 ES-ISCED IIIa, upper tier upper secondary Marked
## 532 ES-ISCED IV, advanced vocational, sub-degree Marked
## 533 ES-ISCED II, lower secondary Not marked
## 534 ES-ISCED II, lower secondary Marked
## 535 ES-ISCED I , less than lower secondary Not marked
## 536 ES-ISCED II, lower secondary Marked
## 537 ES-ISCED V1, lower tertiary education, BA level Marked
## 538 ES-ISCED II, lower secondary Marked
## 539 ES-ISCED V1, lower tertiary education, BA level Marked
## 540 ES-ISCED I , less than lower secondary Not marked
## 541 ES-ISCED V1, lower tertiary education, BA level Not marked
## 542 ES-ISCED II, lower secondary Not marked
## 543 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 544 ES-ISCED II, lower secondary Not marked
## 545 ES-ISCED IV, advanced vocational, sub-degree Marked
## 546 ES-ISCED IIIa, upper tier upper secondary Marked
## 547 ES-ISCED IIIa, upper tier upper secondary Marked
## 548 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 549 ES-ISCED I , less than lower secondary Not marked
## 550 ES-ISCED I , less than lower secondary Not marked
## 551 ES-ISCED IV, advanced vocational, sub-degree Marked
## 552 ES-ISCED I , less than lower secondary Marked
## 553 ES-ISCED V1, lower tertiary education, BA level Marked
## 554 ES-ISCED IIIa, upper tier upper secondary Marked
## 555 ES-ISCED II, lower secondary Marked
## 556 ES-ISCED I , less than lower secondary Not marked
## 557 ES-ISCED V1, lower tertiary education, BA level Not marked
## 558 ES-ISCED I , less than lower secondary Not marked
## 559 ES-ISCED IV, advanced vocational, sub-degree Marked
## 560 ES-ISCED IIIb, lower tier upper secondary Not marked
## 561 ES-ISCED IV, advanced vocational, sub-degree Marked
## 562 ES-ISCED IV, advanced vocational, sub-degree Marked
## 563 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 564 ES-ISCED V1, lower tertiary education, BA level Marked
## 565 ES-ISCED V1, lower tertiary education, BA level Marked
## 566 ES-ISCED V1, lower tertiary education, BA level Marked
## 567 ES-ISCED I , less than lower secondary Marked
## 568 ES-ISCED IIIb, lower tier upper secondary Not marked
## 569 ES-ISCED IV, advanced vocational, sub-degree Marked
## 570 ES-ISCED V1, lower tertiary education, BA level Marked
## 571 ES-ISCED IIIa, upper tier upper secondary Not marked
## 572 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 573 ES-ISCED I , less than lower secondary Marked
## 574 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 575 ES-ISCED II, lower secondary Marked
## 576 ES-ISCED I , less than lower secondary Not marked
## 577 ES-ISCED I , less than lower secondary Not marked
## 578 ES-ISCED V1, lower tertiary education, BA level Marked
## 579 ES-ISCED I , less than lower secondary Marked
## 580 ES-ISCED I , less than lower secondary Not marked
## 581 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 582 ES-ISCED II, lower secondary Marked
## 583 ES-ISCED V1, lower tertiary education, BA level Not marked
## 584 ES-ISCED I , less than lower secondary Marked
## 585 ES-ISCED I , less than lower secondary Not marked
## 586 ES-ISCED IV, advanced vocational, sub-degree Marked
## 587 ES-ISCED I , less than lower secondary Not marked
## 588 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 589 ES-ISCED IIIa, upper tier upper secondary Marked
## 590 ES-ISCED I , less than lower secondary Not marked
## 591 ES-ISCED IV, advanced vocational, sub-degree Marked
## 592 ES-ISCED IV, advanced vocational, sub-degree Marked
## 593 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 594 ES-ISCED IIIb, lower tier upper secondary Marked
## 595 ES-ISCED I , less than lower secondary Not marked
## 596 ES-ISCED I , less than lower secondary Not marked
## 597 ES-ISCED IIIb, lower tier upper secondary Marked
## 598 ES-ISCED IV, advanced vocational, sub-degree Marked
## 599 ES-ISCED V1, lower tertiary education, BA level Marked
## 600 ES-ISCED IV, advanced vocational, sub-degree Marked
## 601 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 602 ES-ISCED II, lower secondary Not marked
## 603 ES-ISCED IIIb, lower tier upper secondary Not marked
## 604 ES-ISCED II, lower secondary Marked
## 605 ES-ISCED II, lower secondary Not marked
## 606 ES-ISCED II, lower secondary Not marked
## 607 ES-ISCED I , less than lower secondary Not marked
## 608 ES-ISCED I , less than lower secondary Not marked
## 609 ES-ISCED IV, advanced vocational, sub-degree Marked
## 610 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 611 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 612 ES-ISCED IIIb, lower tier upper secondary Not marked
## 613 ES-ISCED IIIa, upper tier upper secondary Not marked
## 614 ES-ISCED II, lower secondary Not marked
## 615 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 616 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 617 ES-ISCED IIIa, upper tier upper secondary Marked
## 618 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 619 ES-ISCED IIIb, lower tier upper secondary Not marked
## 620 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 621 ES-ISCED IV, advanced vocational, sub-degree Marked
## 622 ES-ISCED II, lower secondary Marked
## 623 ES-ISCED IIIa, upper tier upper secondary Marked
## 624 ES-ISCED II, lower secondary Marked
## 625 ES-ISCED V1, lower tertiary education, BA level Not marked
## 626 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 627 ES-ISCED IIIa, upper tier upper secondary Not marked
## 628 ES-ISCED IV, advanced vocational, sub-degree Marked
## 629 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 630 ES-ISCED IV, advanced vocational, sub-degree Marked
## 631 ES-ISCED IIIb, lower tier upper secondary Not marked
## 632 ES-ISCED V1, lower tertiary education, BA level Marked
## 633 ES-ISCED IIIa, upper tier upper secondary Marked
## 634 ES-ISCED IIIa, upper tier upper secondary Marked
## 635 ES-ISCED IV, advanced vocational, sub-degree Marked
## 636 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 637 ES-ISCED IV, advanced vocational, sub-degree Marked
## 638 ES-ISCED I , less than lower secondary Not marked
## 639 ES-ISCED I , less than lower secondary Not marked
## 640 ES-ISCED IIIa, upper tier upper secondary Marked
## 641 ES-ISCED II, lower secondary Not marked
## 642 ES-ISCED II, lower secondary Marked
## 643 ES-ISCED IV, advanced vocational, sub-degree Marked
## 644 ES-ISCED IIIa, upper tier upper secondary Not marked
## 645 ES-ISCED IV, advanced vocational, sub-degree Marked
## 646 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 647 ES-ISCED I , less than lower secondary Not marked
## 648 ES-ISCED I , less than lower secondary Not marked
## 649 Other Not marked
## 650 ES-ISCED IIIb, lower tier upper secondary Marked
## 651 ES-ISCED IIIa, upper tier upper secondary Marked
## 652 ES-ISCED I , less than lower secondary Not marked
## 653 ES-ISCED IIIb, lower tier upper secondary Not marked
## 654 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 655 ES-ISCED IV, advanced vocational, sub-degree Marked
## 656 ES-ISCED I , less than lower secondary Not marked
## 657 ES-ISCED I , less than lower secondary Not marked
## 658 ES-ISCED V1, lower tertiary education, BA level Marked
## 659 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 660 ES-ISCED II, lower secondary Marked
## 661 ES-ISCED IIIa, upper tier upper secondary Marked
## 662 ES-ISCED IIIa, upper tier upper secondary Marked
## 663 ES-ISCED IIIb, lower tier upper secondary Marked
## 664 ES-ISCED IIIa, upper tier upper secondary Marked
## 665 ES-ISCED IIIa, upper tier upper secondary Not marked
## 666 ES-ISCED IIIb, lower tier upper secondary Marked
## 667 ES-ISCED II, lower secondary Marked
## 668 ES-ISCED V1, lower tertiary education, BA level Marked
## 669 ES-ISCED IIIa, upper tier upper secondary Marked
## 670 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 671 ES-ISCED IIIb, lower tier upper secondary Marked
## 672 ES-ISCED I , less than lower secondary Not marked
## 673 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 674 ES-ISCED II, lower secondary Not marked
## 675 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 676 ES-ISCED II, lower secondary Not marked
## 677 ES-ISCED IIIa, upper tier upper secondary Marked
## 678 ES-ISCED I , less than lower secondary Not marked
## 679 ES-ISCED IIIb, lower tier upper secondary Marked
## 680 ES-ISCED I , less than lower secondary Not marked
## 681 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 682 Other Not marked
## 683 ES-ISCED II, lower secondary Marked
## 684 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 685 ES-ISCED I , less than lower secondary Not marked
## 686 ES-ISCED IV, advanced vocational, sub-degree Marked
## 687 ES-ISCED IIIa, upper tier upper secondary Not marked
## 688 ES-ISCED I , less than lower secondary Not marked
## 689 ES-ISCED I , less than lower secondary Not marked
## 690 ES-ISCED II, lower secondary Not marked
## 691 ES-ISCED IIIa, upper tier upper secondary Not marked
## 692 ES-ISCED V1, lower tertiary education, BA level Not marked
## 693 ES-ISCED V1, lower tertiary education, BA level Marked
## 694 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 695 ES-ISCED I , less than lower secondary Not marked
## 696 ES-ISCED IV, advanced vocational, sub-degree Marked
## 697 ES-ISCED IIIb, lower tier upper secondary Not marked
## 698 ES-ISCED IIIa, upper tier upper secondary Not marked
## 699 ES-ISCED IV, advanced vocational, sub-degree Marked
## 700 ES-ISCED IIIa, upper tier upper secondary Marked
## 701 ES-ISCED I , less than lower secondary Not marked
## 702 ES-ISCED IIIb, lower tier upper secondary Marked
## 703 ES-ISCED IIIa, upper tier upper secondary Marked
## 704 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 705 ES-ISCED IIIa, upper tier upper secondary Marked
## 706 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 707 ES-ISCED V1, lower tertiary education, BA level Marked
## 708 ES-ISCED IIIa, upper tier upper secondary Marked
## 709 ES-ISCED I , less than lower secondary Not marked
## 710 ES-ISCED II, lower secondary Not marked
## 711 ES-ISCED V1, lower tertiary education, BA level Marked
## 712 ES-ISCED V1, lower tertiary education, BA level Marked
## 713 ES-ISCED V1, lower tertiary education, BA level Marked
## 714 ES-ISCED I , less than lower secondary Not marked
## 715 ES-ISCED II, lower secondary Not marked
## 716 ES-ISCED II, lower secondary Marked
## 717 ES-ISCED I , less than lower secondary Not marked
## 718 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 719 ES-ISCED I , less than lower secondary Not marked
## 720 ES-ISCED V1, lower tertiary education, BA level Not marked
## 721 ES-ISCED II, lower secondary Marked
## 722 ES-ISCED V1, lower tertiary education, BA level Marked
## 723 ES-ISCED IIIa, upper tier upper secondary Not marked
## 724 ES-ISCED II, lower secondary Not marked
## 725 ES-ISCED I , less than lower secondary Not marked
## 726 ES-ISCED V1, lower tertiary education, BA level Marked
## 727 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 728 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 729 ES-ISCED II, lower secondary Marked
## 730 ES-ISCED IIIb, lower tier upper secondary Marked
## 731 ES-ISCED I , less than lower secondary Marked
## 732 ES-ISCED IIIa, upper tier upper secondary Marked
## 733 ES-ISCED IIIb, lower tier upper secondary Not marked
## 734 ES-ISCED V1, lower tertiary education, BA level Marked
## 735 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 736 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 737 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 738 ES-ISCED II, lower secondary Not marked
## 739 ES-ISCED I , less than lower secondary Not marked
## 740 ES-ISCED II, lower secondary Marked
## 741 ES-ISCED I , less than lower secondary Not marked
## 742 ES-ISCED V1, lower tertiary education, BA level Marked
## 743 ES-ISCED V1, lower tertiary education, BA level Marked
## 744 ES-ISCED I , less than lower secondary Not marked
## 745 ES-ISCED IIIa, upper tier upper secondary Not marked
## 746 ES-ISCED II, lower secondary Marked
## 747 ES-ISCED II, lower secondary Marked
## 748 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 749 ES-ISCED II, lower secondary Not marked
## 750 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 751 ES-ISCED I , less than lower secondary Marked
## 752 ES-ISCED II, lower secondary Marked
## 753 ES-ISCED IV, advanced vocational, sub-degree Marked
## 754 ES-ISCED IIIa, upper tier upper secondary Not marked
## 755 ES-ISCED IIIb, lower tier upper secondary Not marked
## 756 ES-ISCED IIIb, lower tier upper secondary Marked
## 757 ES-ISCED IIIb, lower tier upper secondary Not marked
## 758 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 759 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 760 ES-ISCED IV, advanced vocational, sub-degree Marked
## 761 ES-ISCED V1, lower tertiary education, BA level Marked
## 762 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 763 ES-ISCED V1, lower tertiary education, BA level Marked
## 764 ES-ISCED I , less than lower secondary Not marked
## 765 ES-ISCED IIIb, lower tier upper secondary Marked
## 766 ES-ISCED IIIa, upper tier upper secondary Marked
## 767 ES-ISCED IIIb, lower tier upper secondary Not marked
## 768 ES-ISCED I , less than lower secondary Not marked
## 769 ES-ISCED IV, advanced vocational, sub-degree Marked
## 770 ES-ISCED IIIa, upper tier upper secondary Not marked
## 771 ES-ISCED IV, advanced vocational, sub-degree Marked
## 772 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 773 ES-ISCED I , less than lower secondary Not marked
## 774 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 775 ES-ISCED I , less than lower secondary Not marked
## 776 ES-ISCED IIIa, upper tier upper secondary Not marked
## 777 ES-ISCED V1, lower tertiary education, BA level Marked
## 778 ES-ISCED II, lower secondary Marked
## 779 ES-ISCED IIIb, lower tier upper secondary Marked
## 780 ES-ISCED IIIb, lower tier upper secondary Marked
## 781 ES-ISCED V1, lower tertiary education, BA level Marked
## 782 ES-ISCED II, lower secondary Not marked
## 783 ES-ISCED V1, lower tertiary education, BA level Not marked
## 784 ES-ISCED IV, advanced vocational, sub-degree Marked
## 785 ES-ISCED IV, advanced vocational, sub-degree Marked
## 786 ES-ISCED V1, lower tertiary education, BA level Not marked
## 787 ES-ISCED V1, lower tertiary education, BA level Marked
## 788 ES-ISCED II, lower secondary Not marked
## 789 ES-ISCED I , less than lower secondary Not marked
## 790 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 791 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 792 ES-ISCED II, lower secondary Marked
## 793 ES-ISCED IIIa, upper tier upper secondary Not marked
## 794 Other Not marked
## 795 ES-ISCED IIIa, upper tier upper secondary Marked
## 796 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 797 ES-ISCED II, lower secondary Marked
## 798 ES-ISCED IIIb, lower tier upper secondary Not marked
## 799 ES-ISCED IIIa, upper tier upper secondary Marked
## 800 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 801 ES-ISCED IV, advanced vocational, sub-degree Marked
## 802 ES-ISCED I , less than lower secondary Not marked
## 803 ES-ISCED I , less than lower secondary Not marked
## 804 ES-ISCED IV, advanced vocational, sub-degree Marked
## 805 ES-ISCED II, lower secondary Not marked
## 806 ES-ISCED IIIa, upper tier upper secondary Marked
## 807 ES-ISCED V1, lower tertiary education, BA level Marked
## 808 ES-ISCED IIIa, upper tier upper secondary Not marked
## 809 ES-ISCED IIIa, upper tier upper secondary Marked
## 810 ES-ISCED IV, advanced vocational, sub-degree Marked
## 811 ES-ISCED I , less than lower secondary Not marked
## 812 ES-ISCED I , less than lower secondary Not marked
## 813 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 814 ES-ISCED I , less than lower secondary Not marked
## 815 ES-ISCED I , less than lower secondary Not marked
## 816 ES-ISCED II, lower secondary Not marked
## 817 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 818 ES-ISCED IIIa, upper tier upper secondary Not marked
## 819 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 820 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 821 ES-ISCED V1, lower tertiary education, BA level Marked
## 822 ES-ISCED I , less than lower secondary Marked
## 823 ES-ISCED IIIb, lower tier upper secondary Marked
## 824 ES-ISCED II, lower secondary Marked
## 825 ES-ISCED I , less than lower secondary Not marked
## 826 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 827 ES-ISCED V1, lower tertiary education, BA level Not marked
## 828 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 829 ES-ISCED IIIa, upper tier upper secondary Not marked
## 830 ES-ISCED V1, lower tertiary education, BA level Marked
## 831 ES-ISCED V1, lower tertiary education, BA level Not marked
## 832 <NA> Marked
## 833 ES-ISCED V1, lower tertiary education, BA level Not marked
## 834 ES-ISCED I , less than lower secondary Marked
## 835 ES-ISCED V1, lower tertiary education, BA level Not marked
## 836 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 837 ES-ISCED V1, lower tertiary education, BA level Marked
## 838 ES-ISCED II, lower secondary Not marked
## 839 ES-ISCED IIIa, upper tier upper secondary Marked
## 840 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 841 ES-ISCED IIIa, upper tier upper secondary Marked
## 842 ES-ISCED I , less than lower secondary Marked
## 843 ES-ISCED IIIb, lower tier upper secondary Not marked
## 844 ES-ISCED IIIa, upper tier upper secondary Marked
## 845 ES-ISCED IIIb, lower tier upper secondary Not marked
## 846 ES-ISCED I , less than lower secondary Marked
## 847 ES-ISCED I , less than lower secondary Not marked
## 848 ES-ISCED V1, lower tertiary education, BA level Marked
## 849 ES-ISCED I , less than lower secondary Not marked
## 850 ES-ISCED II, lower secondary Not marked
## 851 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 852 ES-ISCED II, lower secondary Marked
## 853 ES-ISCED IIIa, upper tier upper secondary Not marked
## 854 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 855 ES-ISCED I , less than lower secondary Marked
## 856 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 857 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 858 Other Not marked
## 859 ES-ISCED V1, lower tertiary education, BA level Marked
## 860 ES-ISCED I , less than lower secondary Not marked
## 861 ES-ISCED I , less than lower secondary Not marked
## 862 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 863 ES-ISCED I , less than lower secondary Not marked
## 864 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 865 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 866 ES-ISCED V1, lower tertiary education, BA level Marked
## 867 ES-ISCED IIIa, upper tier upper secondary Not marked
## 868 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 869 ES-ISCED IV, advanced vocational, sub-degree Marked
## 870 ES-ISCED V1, lower tertiary education, BA level Marked
## 871 ES-ISCED IIIa, upper tier upper secondary Not marked
## 872 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 873 ES-ISCED I , less than lower secondary Not marked
## 874 ES-ISCED II, lower secondary Marked
## 875 <NA> Not marked
## 876 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 877 ES-ISCED IV, advanced vocational, sub-degree Marked
## 878 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 879 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 880 ES-ISCED IIIa, upper tier upper secondary Marked
## 881 ES-ISCED I , less than lower secondary Not marked
## 882 ES-ISCED I , less than lower secondary Marked
## 883 Other Not marked
## 884 ES-ISCED V1, lower tertiary education, BA level Marked
## 885 ES-ISCED I , less than lower secondary Marked
## 886 ES-ISCED IIIb, lower tier upper secondary Marked
## 887 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 888 ES-ISCED I , less than lower secondary Not marked
## 889 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 890 ES-ISCED I , less than lower secondary Marked
## 891 ES-ISCED IIIa, upper tier upper secondary Not marked
## 892 ES-ISCED II, lower secondary Not marked
## 893 ES-ISCED I , less than lower secondary Not marked
## 894 Other Marked
## 895 ES-ISCED II, lower secondary Not marked
## 896 ES-ISCED IIIa, upper tier upper secondary Not marked
## 897 ES-ISCED IIIa, upper tier upper secondary Marked
## 898 ES-ISCED IIIa, upper tier upper secondary Marked
## 899 ES-ISCED I , less than lower secondary Not marked
## 900 Other Not marked
## 901 ES-ISCED I , less than lower secondary Not marked
## 902 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 903 ES-ISCED V1, lower tertiary education, BA level Marked
## 904 ES-ISCED IIIa, upper tier upper secondary Marked
## 905 ES-ISCED IIIb, lower tier upper secondary Marked
## 906 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 907 ES-ISCED V1, lower tertiary education, BA level Not marked
## 908 ES-ISCED IIIb, lower tier upper secondary Not marked
## 909 ES-ISCED I , less than lower secondary Not marked
## 910 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 911 ES-ISCED IV, advanced vocational, sub-degree Marked
## 912 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 913 ES-ISCED IIIa, upper tier upper secondary Not marked
## 914 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 915 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 916 ES-ISCED IIIa, upper tier upper secondary Not marked
## 917 ES-ISCED V1, lower tertiary education, BA level Marked
## 918 ES-ISCED IIIa, upper tier upper secondary Marked
## 919 Other Marked
## 920 ES-ISCED II, lower secondary Not marked
## 921 ES-ISCED IIIa, upper tier upper secondary Marked
## 922 ES-ISCED IIIa, upper tier upper secondary Marked
## 923 ES-ISCED I , less than lower secondary Not marked
## 924 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 925 ES-ISCED I , less than lower secondary Not marked
## 926 ES-ISCED I , less than lower secondary Not marked
## 927 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 928 ES-ISCED IIIa, upper tier upper secondary Marked
## 929 ES-ISCED II, lower secondary Not marked
## 930 ES-ISCED I , less than lower secondary Not marked
## 931 ES-ISCED I , less than lower secondary Not marked
## 932 ES-ISCED I , less than lower secondary Not marked
## 933 ES-ISCED II, lower secondary Marked
## 934 ES-ISCED II, lower secondary Not marked
## 935 ES-ISCED IIIa, upper tier upper secondary Marked
## 936 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 937 ES-ISCED I , less than lower secondary Not marked
## 938 ES-ISCED II, lower secondary Marked
## 939 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 940 ES-ISCED V1, lower tertiary education, BA level Marked
## 941 Other Marked
## 942 ES-ISCED II, lower secondary Marked
## 943 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 944 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 945 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 946 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 947 ES-ISCED I , less than lower secondary Not marked
## 948 ES-ISCED V1, lower tertiary education, BA level Marked
## 949 ES-ISCED IIIa, upper tier upper secondary Marked
## 950 ES-ISCED V1, lower tertiary education, BA level Not marked
## 951 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 952 ES-ISCED II, lower secondary Marked
## 953 ES-ISCED IIIa, upper tier upper secondary Marked
## 954 ES-ISCED V1, lower tertiary education, BA level Marked
## 955 ES-ISCED IIIb, lower tier upper secondary Marked
## 956 ES-ISCED V1, lower tertiary education, BA level Marked
## 957 ES-ISCED II, lower secondary Marked
## 958 ES-ISCED I , less than lower secondary Not marked
## 959 ES-ISCED IIIb, lower tier upper secondary Marked
## 960 ES-ISCED IIIa, upper tier upper secondary Marked
## 961 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 962 ES-ISCED V1, lower tertiary education, BA level Marked
## 963 ES-ISCED V1, lower tertiary education, BA level Marked
## 964 ES-ISCED II, lower secondary Not marked
## 965 ES-ISCED IIIb, lower tier upper secondary Marked
## 966 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 967 ES-ISCED II, lower secondary Marked
## 968 ES-ISCED V1, lower tertiary education, BA level Marked
## 969 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 970 ES-ISCED IV, advanced vocational, sub-degree Marked
## 971 ES-ISCED IV, advanced vocational, sub-degree Marked
## 972 ES-ISCED I , less than lower secondary Not marked
## 973 ES-ISCED V1, lower tertiary education, BA level Marked
## 974 ES-ISCED V1, lower tertiary education, BA level Marked
## 975 ES-ISCED I , less than lower secondary Not marked
## 976 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 977 ES-ISCED II, lower secondary Not marked
## 978 ES-ISCED II, lower secondary Marked
## 979 ES-ISCED V1, lower tertiary education, BA level Marked
## 980 ES-ISCED I , less than lower secondary Not marked
## 981 ES-ISCED II, lower secondary Marked
## 982 ES-ISCED II, lower secondary Marked
## 983 ES-ISCED IV, advanced vocational, sub-degree Marked
## 984 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 985 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 986 ES-ISCED IIIb, lower tier upper secondary Not marked
## 987 ES-ISCED V1, lower tertiary education, BA level Marked
## 988 ES-ISCED I , less than lower secondary Not marked
## 989 ES-ISCED I , less than lower secondary Not marked
## 990 ES-ISCED I , less than lower secondary Not marked
## 991 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 992 ES-ISCED I , less than lower secondary Not marked
## 993 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 994 ES-ISCED II, lower secondary Not marked
## 995 ES-ISCED I , less than lower secondary Not marked
## 996 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 997 ES-ISCED IIIa, upper tier upper secondary Marked
## 998 ES-ISCED II, lower secondary Not marked
## 999 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1000 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1001 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1002 ES-ISCED IIIa, upper tier upper secondary Marked
## 1003 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1004 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1005 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1006 ES-ISCED I , less than lower secondary Not marked
## 1007 ES-ISCED I , less than lower secondary Not marked
## 1008 Other Not marked
## 1009 ES-ISCED II, lower secondary Not marked
## 1010 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1011 ES-ISCED IIIa, upper tier upper secondary Marked
## 1012 ES-ISCED I , less than lower secondary Not marked
## 1013 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1014 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1015 Other Not marked
## 1016 ES-ISCED IIIa, upper tier upper secondary Marked
## 1017 ES-ISCED I , less than lower secondary Not marked
## 1018 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1019 ES-ISCED II, lower secondary Marked
## 1020 ES-ISCED I , less than lower secondary Not marked
## 1021 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1022 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1023 ES-ISCED II, lower secondary Marked
## 1024 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1025 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1026 ES-ISCED II, lower secondary Not marked
## 1027 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1028 ES-ISCED I , less than lower secondary Not marked
## 1029 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1030 ES-ISCED II, lower secondary Not marked
## 1031 ES-ISCED I , less than lower secondary Not marked
## 1032 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1033 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1034 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1035 ES-ISCED IIIa, upper tier upper secondary Marked
## 1036 ES-ISCED I , less than lower secondary Not marked
## 1037 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1038 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1039 ES-ISCED V1, lower tertiary education, BA level Marked
## 1040 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1041 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1042 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1043 ES-ISCED V1, lower tertiary education, BA level Marked
## 1044 Other Not marked
## 1045 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1046 ES-ISCED I , less than lower secondary Not marked
## 1047 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1048 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1049 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1050 ES-ISCED V1, lower tertiary education, BA level Marked
## 1051 ES-ISCED I , less than lower secondary Marked
## 1052 ES-ISCED IIIa, upper tier upper secondary Marked
## 1053 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1054 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1055 ES-ISCED V1, lower tertiary education, BA level Marked
## 1056 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1057 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1058 ES-ISCED I , less than lower secondary Not marked
## 1059 ES-ISCED IIIa, upper tier upper secondary Marked
## 1060 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1061 ES-ISCED I , less than lower secondary Marked
## 1062 ES-ISCED II, lower secondary Not marked
## 1063 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1064 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1065 ES-ISCED I , less than lower secondary Marked
## 1066 ES-ISCED I , less than lower secondary Marked
## 1067 ES-ISCED IIIa, upper tier upper secondary Marked
## 1068 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1069 ES-ISCED II, lower secondary Marked
## 1070 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1071 ES-ISCED I , less than lower secondary Not marked
## 1072 ES-ISCED II, lower secondary Marked
## 1073 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1074 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1075 ES-ISCED V1, lower tertiary education, BA level Marked
## 1076 ES-ISCED I , less than lower secondary Marked
## 1077 ES-ISCED I , less than lower secondary Not marked
## 1078 ES-ISCED I , less than lower secondary Marked
## 1079 ES-ISCED I , less than lower secondary Not marked
## 1080 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1081 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1082 ES-ISCED V1, lower tertiary education, BA level Marked
## 1083 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1084 ES-ISCED V1, lower tertiary education, BA level Marked
## 1085 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1086 ES-ISCED I , less than lower secondary Not marked
## 1087 ES-ISCED II, lower secondary Not marked
## 1088 ES-ISCED II, lower secondary Not marked
## 1089 ES-ISCED V1, lower tertiary education, BA level Marked
## 1090 ES-ISCED II, lower secondary Marked
## 1091 ES-ISCED II, lower secondary Marked
## 1092 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1093 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1094 ES-ISCED II, lower secondary Not marked
## 1095 ES-ISCED I , less than lower secondary Not marked
## 1096 ES-ISCED IIIa, upper tier upper secondary Marked
## 1097 Other Not marked
## 1098 ES-ISCED IIIb, lower tier upper secondary Marked
## 1099 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1100 ES-ISCED V1, lower tertiary education, BA level Marked
## 1101 ES-ISCED I , less than lower secondary Marked
## 1102 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1103 ES-ISCED I , less than lower secondary Marked
## 1104 ES-ISCED II, lower secondary Not marked
## 1105 ES-ISCED I , less than lower secondary Not marked
## 1106 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1107 ES-ISCED V1, lower tertiary education, BA level Marked
## 1108 ES-ISCED II, lower secondary Not marked
## 1109 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1110 ES-ISCED V1, lower tertiary education, BA level Marked
## 1111 ES-ISCED IIIb, lower tier upper secondary Marked
## 1112 ES-ISCED I , less than lower secondary Not marked
## 1113 Other Not marked
## 1114 Other Not marked
## 1115 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1116 ES-ISCED II, lower secondary Not marked
## 1117 ES-ISCED IIIa, upper tier upper secondary Marked
## 1118 ES-ISCED I , less than lower secondary Not marked
## 1119 ES-ISCED I , less than lower secondary Not marked
## 1120 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1121 ES-ISCED IIIa, upper tier upper secondary Marked
## 1122 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1123 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1124 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1125 ES-ISCED I , less than lower secondary Not marked
## 1126 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1127 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1128 ES-ISCED II, lower secondary Not marked
## 1129 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1130 ES-ISCED I , less than lower secondary Not marked
## 1131 ES-ISCED I , less than lower secondary Not marked
## 1132 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1133 ES-ISCED IIIa, upper tier upper secondary Marked
## 1134 ES-ISCED IIIa, upper tier upper secondary Marked
## 1135 ES-ISCED I , less than lower secondary Not marked
## 1136 ES-ISCED V1, lower tertiary education, BA level Marked
## 1137 Other Marked
## 1138 ES-ISCED IIIb, lower tier upper secondary Marked
## 1139 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1140 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1141 ES-ISCED I , less than lower secondary Not marked
## 1142 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1143 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1144 ES-ISCED I , less than lower secondary Not marked
## 1145 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1146 ES-ISCED IIIa, upper tier upper secondary Marked
## 1147 ES-ISCED I , less than lower secondary Not marked
## 1148 ES-ISCED II, lower secondary Not marked
## 1149 ES-ISCED II, lower secondary Marked
## 1150 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1151 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1152 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1153 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1154 ES-ISCED I , less than lower secondary Marked
## 1155 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1156 ES-ISCED II, lower secondary Marked
## 1157 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1158 ES-ISCED I , less than lower secondary Not marked
## 1159 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1160 ES-ISCED V1, lower tertiary education, BA level Marked
## 1161 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1162 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1163 ES-ISCED II, lower secondary Marked
## 1164 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1165 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1166 ES-ISCED I , less than lower secondary Not marked
## 1167 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1168 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1169 ES-ISCED I , less than lower secondary Not marked
## 1170 ES-ISCED I , less than lower secondary Not marked
## 1171 ES-ISCED IIIa, upper tier upper secondary Marked
## 1172 ES-ISCED I , less than lower secondary Not marked
## 1173 ES-ISCED II, lower secondary Marked
## 1174 ES-ISCED I , less than lower secondary Marked
## 1175 ES-ISCED IIIb, lower tier upper secondary Marked
## 1176 ES-ISCED IIIa, upper tier upper secondary Marked
## 1177 ES-ISCED II, lower secondary Not marked
## 1178 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1179 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1180 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1181 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1182 ES-ISCED II, lower secondary Not marked
## 1183 ES-ISCED I , less than lower secondary Not marked
## 1184 ES-ISCED IIIa, upper tier upper secondary Marked
## 1185 ES-ISCED I , less than lower secondary Not marked
## 1186 ES-ISCED V1, lower tertiary education, BA level Marked
## 1187 ES-ISCED II, lower secondary Marked
## 1188 ES-ISCED I , less than lower secondary Marked
## 1189 ES-ISCED IIIa, upper tier upper secondary Marked
## 1190 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1191 ES-ISCED II, lower secondary Marked
## 1192 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1193 ES-ISCED I , less than lower secondary Not marked
## 1194 ES-ISCED V1, lower tertiary education, BA level Marked
## 1195 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1196 ES-ISCED V1, lower tertiary education, BA level Marked
## 1197 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1198 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1199 ES-ISCED IIIb, lower tier upper secondary Marked
## 1200 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1201 ES-ISCED V1, lower tertiary education, BA level Marked
## 1202 ES-ISCED I , less than lower secondary Not marked
## 1203 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1204 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1205 ES-ISCED I , less than lower secondary Not marked
## 1206 ES-ISCED IIIa, upper tier upper secondary Marked
## 1207 ES-ISCED I , less than lower secondary Not marked
## 1208 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1209 Other Marked
## 1210 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1211 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1212 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1213 ES-ISCED V1, lower tertiary education, BA level Marked
## 1214 ES-ISCED II, lower secondary Marked
## 1215 ES-ISCED V1, lower tertiary education, BA level Marked
## 1216 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1217 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1218 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1219 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1220 ES-ISCED I , less than lower secondary Not marked
## 1221 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1222 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1223 ES-ISCED IIIa, upper tier upper secondary Marked
## 1224 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1225 ES-ISCED I , less than lower secondary Not marked
## 1226 ES-ISCED IIIa, upper tier upper secondary Marked
## 1227 ES-ISCED I , less than lower secondary Not marked
## 1228 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1229 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1230 ES-ISCED II, lower secondary Not marked
## 1231 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1232 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1233 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1234 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1235 ES-ISCED II, lower secondary Marked
## 1236 ES-ISCED II, lower secondary Not marked
## 1237 ES-ISCED I , less than lower secondary Marked
## 1238 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1239 ES-ISCED IIIa, upper tier upper secondary Marked
## 1240 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1241 ES-ISCED I , less than lower secondary Not marked
## 1242 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1243 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1244 Other Marked
## 1245 ES-ISCED IIIa, upper tier upper secondary Marked
## 1246 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1247 ES-ISCED II, lower secondary Not marked
## 1248 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1249 ES-ISCED V1, lower tertiary education, BA level Marked
## 1250 ES-ISCED IIIb, lower tier upper secondary Marked
## 1251 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1252 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1253 ES-ISCED V1, lower tertiary education, BA level Marked
## 1254 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1255 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1256 ES-ISCED V1, lower tertiary education, BA level Marked
## 1257 ES-ISCED II, lower secondary Not marked
## 1258 ES-ISCED V1, lower tertiary education, BA level Marked
## 1259 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1260 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1261 ES-ISCED IIIb, lower tier upper secondary Marked
## 1262 ES-ISCED IIIa, upper tier upper secondary Marked
## 1263 ES-ISCED I , less than lower secondary Not marked
## 1264 ES-ISCED II, lower secondary Marked
## 1265 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1266 ES-ISCED IIIa, upper tier upper secondary Marked
## 1267 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1268 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1269 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1270 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1271 ES-ISCED I , less than lower secondary Not marked
## 1272 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1273 ES-ISCED I , less than lower secondary Marked
## 1274 ES-ISCED I , less than lower secondary Not marked
## 1275 ES-ISCED I , less than lower secondary Not marked
## 1276 Other Not marked
## 1277 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1278 ES-ISCED I , less than lower secondary Marked
## 1279 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1280 ES-ISCED I , less than lower secondary Not marked
## 1281 ES-ISCED I , less than lower secondary Marked
## 1282 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1283 ES-ISCED II, lower secondary Marked
## 1284 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1285 ES-ISCED V1, lower tertiary education, BA level Marked
## 1286 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1287 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1288 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1289 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1290 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1291 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1292 ES-ISCED IIIb, lower tier upper secondary Marked
## 1293 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1294 ES-ISCED I , less than lower secondary Not marked
## 1295 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1296 ES-ISCED I , less than lower secondary Not marked
## 1297 ES-ISCED V1, lower tertiary education, BA level Marked
## 1298 ES-ISCED IIIa, upper tier upper secondary Marked
## 1299 ES-ISCED II, lower secondary Not marked
## 1300 Other Not marked
## 1301 ES-ISCED II, lower secondary Marked
## 1302 ES-ISCED I , less than lower secondary Not marked
## 1303 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1304 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1305 ES-ISCED I , less than lower secondary Marked
## 1306 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1307 ES-ISCED II, lower secondary Not marked
## 1308 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1309 ES-ISCED V1, lower tertiary education, BA level Marked
## 1310 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1311 ES-ISCED I , less than lower secondary Not marked
## 1312 ES-ISCED V1, lower tertiary education, BA level Marked
## 1313 ES-ISCED IIIa, upper tier upper secondary Marked
## 1314 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1315 ES-ISCED I , less than lower secondary Not marked
## 1316 ES-ISCED IIIa, upper tier upper secondary Marked
## 1317 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1318 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1319 ES-ISCED I , less than lower secondary Not marked
## 1320 ES-ISCED II, lower secondary Marked
## 1321 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1322 ES-ISCED I , less than lower secondary Not marked
## 1323 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1324 ES-ISCED V1, lower tertiary education, BA level Marked
## 1325 ES-ISCED IIIa, upper tier upper secondary Marked
## 1326 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1327 ES-ISCED IIIa, upper tier upper secondary Marked
## 1328 ES-ISCED IIIa, upper tier upper secondary Marked
## 1329 ES-ISCED I , less than lower secondary Not marked
## 1330 ES-ISCED IIIa, upper tier upper secondary Marked
## 1331 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1332 ES-ISCED V1, lower tertiary education, BA level Marked
## 1333 ES-ISCED I , less than lower secondary Not marked
## 1334 ES-ISCED I , less than lower secondary Marked
## 1335 ES-ISCED V1, lower tertiary education, BA level Marked
## 1336 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1337 ES-ISCED I , less than lower secondary Not marked
## 1338 ES-ISCED I , less than lower secondary Not marked
## 1339 ES-ISCED V1, lower tertiary education, BA level Marked
## 1340 ES-ISCED I , less than lower secondary Marked
## 1341 ES-ISCED I , less than lower secondary Not marked
## 1342 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1343 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1344 ES-ISCED I , less than lower secondary Not marked
## 1345 ES-ISCED I , less than lower secondary Marked
## 1346 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1347 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1348 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1349 ES-ISCED I , less than lower secondary Marked
## 1350 ES-ISCED IIIa, upper tier upper secondary Marked
## 1351 ES-ISCED I , less than lower secondary Not marked
## 1352 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1353 ES-ISCED I , less than lower secondary Not marked
## 1354 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1355 ES-ISCED IIIb, lower tier upper secondary Marked
## 1356 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1357 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1358 ES-ISCED II, lower secondary Marked
## 1359 ES-ISCED IIIb, lower tier upper secondary Marked
## 1360 ES-ISCED I , less than lower secondary Not marked
## 1361 ES-ISCED II, lower secondary Not marked
## 1362 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1363 ES-ISCED IIIa, upper tier upper secondary Marked
## 1364 ES-ISCED II, lower secondary Not marked
## 1365 ES-ISCED I , less than lower secondary Not marked
## 1366 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1367 ES-ISCED I , less than lower secondary Marked
## 1368 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1369 ES-ISCED I , less than lower secondary Not marked
## 1370 ES-ISCED II, lower secondary Marked
## 1371 ES-ISCED I , less than lower secondary Not marked
## 1372 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1373 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1374 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1375 ES-ISCED II, lower secondary Marked
## 1376 Other Not marked
## 1377 ES-ISCED II, lower secondary Marked
## 1378 ES-ISCED I , less than lower secondary Not marked
## 1379 Other Not marked
## 1380 ES-ISCED IIIb, lower tier upper secondary Marked
## 1381 ES-ISCED IIIa, upper tier upper secondary Marked
## 1382 ES-ISCED IIIb, lower tier upper secondary Marked
## 1383 ES-ISCED II, lower secondary Not marked
## 1384 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1385 ES-ISCED I , less than lower secondary Marked
## 1386 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1387 ES-ISCED II, lower secondary Marked
## 1388 ES-ISCED II, lower secondary Marked
## 1389 ES-ISCED II, lower secondary Marked
## 1390 ES-ISCED V1, lower tertiary education, BA level Marked
## 1391 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1392 ES-ISCED V1, lower tertiary education, BA level Marked
## 1393 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1394 ES-ISCED II, lower secondary Not marked
## 1395 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1396 ES-ISCED II, lower secondary Not marked
## 1397 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1398 ES-ISCED V1, lower tertiary education, BA level Marked
## 1399 ES-ISCED II, lower secondary Not marked
## 1400 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1401 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1402 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1403 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1404 ES-ISCED V1, lower tertiary education, BA level Marked
## 1405 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1406 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1407 ES-ISCED II, lower secondary Not marked
## 1408 ES-ISCED IIIb, lower tier upper secondary Marked
## 1409 ES-ISCED I , less than lower secondary Marked
## 1410 ES-ISCED I , less than lower secondary Not marked
## 1411 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1412 ES-ISCED I , less than lower secondary Not marked
## 1413 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1414 ES-ISCED IIIa, upper tier upper secondary Marked
## 1415 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1416 ES-ISCED V1, lower tertiary education, BA level Marked
## 1417 ES-ISCED IIIa, upper tier upper secondary Marked
## 1418 ES-ISCED I , less than lower secondary Not marked
## 1419 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1420 Other Not marked
## 1421 ES-ISCED I , less than lower secondary Not marked
## 1422 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1423 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1424 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1425 ES-ISCED IIIb, lower tier upper secondary Marked
## 1426 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1427 ES-ISCED IIIa, upper tier upper secondary Marked
## 1428 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1429 ES-ISCED I , less than lower secondary Not marked
## 1430 ES-ISCED I , less than lower secondary Not marked
## 1431 ES-ISCED I , less than lower secondary Not marked
## 1432 ES-ISCED II, lower secondary Not marked
## 1433 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1434 ES-ISCED I , less than lower secondary Not marked
## 1435 ES-ISCED I , less than lower secondary Not marked
## 1436 ES-ISCED IIIb, lower tier upper secondary Marked
## 1437 ES-ISCED V1, lower tertiary education, BA level Marked
## 1438 ES-ISCED II, lower secondary Marked
## 1439 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1440 ES-ISCED IIIa, upper tier upper secondary Marked
## 1441 ES-ISCED V1, lower tertiary education, BA level Marked
## 1442 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1443 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1444 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1445 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1446 ES-ISCED IIIa, upper tier upper secondary Marked
## 1447 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1448 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1449 ES-ISCED V1, lower tertiary education, BA level Marked
## 1450 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1451 ES-ISCED I , less than lower secondary Not marked
## 1452 ES-ISCED I , less than lower secondary Not marked
## 1453 ES-ISCED I , less than lower secondary Not marked
## 1454 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1455 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1456 ES-ISCED IIIa, upper tier upper secondary Marked
## 1457 ES-ISCED I , less than lower secondary Not marked
## 1458 Other Marked
## 1459 ES-ISCED II, lower secondary Marked
## 1460 ES-ISCED IIIb, lower tier upper secondary Marked
## 1461 ES-ISCED II, lower secondary Not marked
## 1462 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1463 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1464 ES-ISCED II, lower secondary Not marked
## 1465 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1466 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1467 ES-ISCED I , less than lower secondary Not marked
## 1468 ES-ISCED IIIb, lower tier upper secondary Marked
## 1469 ES-ISCED II, lower secondary Not marked
## 1470 Other Marked
## 1471 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1472 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1473 ES-ISCED II, lower secondary Marked
## 1474 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1475 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1476 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1477 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1478 ES-ISCED II, lower secondary Marked
## 1479 ES-ISCED IIIb, lower tier upper secondary Marked
## 1480 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1481 ES-ISCED I , less than lower secondary Marked
## 1482 Other Not marked
## 1483 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1484 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1485 ES-ISCED II, lower secondary Marked
## 1486 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1487 ES-ISCED V1, lower tertiary education, BA level Marked
## 1488 ES-ISCED I , less than lower secondary Not marked
## 1489 ES-ISCED V1, lower tertiary education, BA level Marked
## 1490 ES-ISCED II, lower secondary Not marked
## 1491 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1492 ES-ISCED V1, lower tertiary education, BA level Marked
## 1493 ES-ISCED I , less than lower secondary Not marked
## 1494 ES-ISCED II, lower secondary Not marked
## 1495 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1496 ES-ISCED V1, lower tertiary education, BA level Marked
## 1497 ES-ISCED V1, lower tertiary education, BA level Marked
## 1498 ES-ISCED IIIb, lower tier upper secondary Marked
## 1499 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1500 ES-ISCED IIIa, upper tier upper secondary Marked
## 1501 ES-ISCED II, lower secondary Not marked
## 1502 ES-ISCED I , less than lower secondary Not marked
## 1503 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1504 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1505 ES-ISCED V1, lower tertiary education, BA level Marked
## 1506 ES-ISCED II, lower secondary Marked
## 1507 ES-ISCED I , less than lower secondary Not marked
## 1508 ES-ISCED I , less than lower secondary Not marked
## 1509 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1510 ES-ISCED II, lower secondary Not marked
## 1511 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1512 ES-ISCED I , less than lower secondary Not marked
## 1513 ES-ISCED I , less than lower secondary Not marked
## 1514 ES-ISCED I , less than lower secondary Marked
## 1515 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1516 ES-ISCED I , less than lower secondary Not marked
## 1517 ES-ISCED II, lower secondary Marked
## 1518 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1519 ES-ISCED I , less than lower secondary Not marked
## 1520 ES-ISCED IIIb, lower tier upper secondary Marked
## 1521 ES-ISCED IIIa, upper tier upper secondary Marked
## 1522 ES-ISCED I , less than lower secondary Marked
## 1523 ES-ISCED IIIb, lower tier upper secondary Marked
## 1524 ES-ISCED II, lower secondary Not marked
## 1525 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1526 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1527 ES-ISCED IIIa, upper tier upper secondary Marked
## 1528 ES-ISCED I , less than lower secondary Not marked
## 1529 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1530 ES-ISCED I , less than lower secondary Not marked
## 1531 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1532 ES-ISCED IIIb, lower tier upper secondary Marked
## 1533 ES-ISCED I , less than lower secondary Marked
## 1534 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1535 ES-ISCED I , less than lower secondary Not marked
## 1536 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1537 ES-ISCED I , less than lower secondary Marked
## 1538 ES-ISCED V1, lower tertiary education, BA level Marked
## 1539 ES-ISCED V1, lower tertiary education, BA level Marked
## 1540 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1541 ES-ISCED I , less than lower secondary Marked
## 1542 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1543 ES-ISCED IIIb, lower tier upper secondary Marked
## 1544 Other Not marked
## 1545 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1546 ES-ISCED II, lower secondary Not marked
## 1547 ES-ISCED I , less than lower secondary Not marked
## 1548 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1549 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1550 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1551 ES-ISCED IIIb, lower tier upper secondary Marked
## 1552 ES-ISCED IIIa, upper tier upper secondary Marked
## 1553 ES-ISCED I , less than lower secondary Not marked
## 1554 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1555 ES-ISCED I , less than lower secondary Not marked
## 1556 ES-ISCED I , less than lower secondary Not marked
## 1557 ES-ISCED I , less than lower secondary Marked
## 1558 ES-ISCED I , less than lower secondary Not marked
## 1559 ES-ISCED I , less than lower secondary Not marked
## 1560 ES-ISCED IIIa, upper tier upper secondary Marked
## 1561 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1562 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1563 ES-ISCED I , less than lower secondary Not marked
## 1564 ES-ISCED IIIb, lower tier upper secondary Marked
## 1565 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1566 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1567 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1568 ES-ISCED IIIb, lower tier upper secondary Marked
## 1569 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1570 ES-ISCED I , less than lower secondary Not marked
## 1571 ES-ISCED V1, lower tertiary education, BA level Marked
## 1572 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1573 ES-ISCED II, lower secondary Marked
## 1574 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1575 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1576 ES-ISCED I , less than lower secondary Not marked
## 1577 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1578 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1579 Other Not marked
## 1580 ES-ISCED I , less than lower secondary Not marked
## 1581 ES-ISCED V1, lower tertiary education, BA level Marked
## 1582 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1583 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1584 ES-ISCED II, lower secondary Marked
## 1585 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1586 ES-ISCED II, lower secondary Marked
## 1587 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1588 ES-ISCED II, lower secondary Not marked
## 1589 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1590 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1591 ES-ISCED II, lower secondary Marked
## 1592 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1593 ES-ISCED I , less than lower secondary Not marked
## 1594 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1595 ES-ISCED V1, lower tertiary education, BA level Marked
## 1596 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1597 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1598 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1599 ES-ISCED I , less than lower secondary Not marked
## 1600 ES-ISCED II, lower secondary Marked
## 1601 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1602 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1603 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1604 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1605 ES-ISCED II, lower secondary Marked
## 1606 ES-ISCED II, lower secondary Not marked
## 1607 Other Not marked
## 1608 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1609 ES-ISCED I , less than lower secondary Marked
## 1610 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1611 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1612 ES-ISCED IIIa, upper tier upper secondary Marked
## 1613 <NA> Marked
## 1614 ES-ISCED IIIb, lower tier upper secondary Marked
## 1615 <NA> Not marked
## 1616 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1617 ES-ISCED V1, lower tertiary education, BA level Marked
## 1618 ES-ISCED IIIa, upper tier upper secondary Marked
## 1619 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1620 ES-ISCED IIIa, upper tier upper secondary Marked
## 1621 ES-ISCED I , less than lower secondary Not marked
## 1622 ES-ISCED I , less than lower secondary Not marked
## 1623 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1624 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1625 ES-ISCED I , less than lower secondary Not marked
## 1626 ES-ISCED I , less than lower secondary Not marked
## 1627 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1628 ES-ISCED I , less than lower secondary Not marked
## 1629 ES-ISCED I , less than lower secondary Not marked
## 1630 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1631 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1632 ES-ISCED II, lower secondary Not marked
## 1633 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1634 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1635 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1636 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1637 ES-ISCED II, lower secondary Not marked
## 1638 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1639 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1640 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1641 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1642 ES-ISCED V1, lower tertiary education, BA level Marked
## 1643 ES-ISCED IIIb, lower tier upper secondary Marked
## 1644 ES-ISCED IIIa, upper tier upper secondary Marked
## 1645 ES-ISCED II, lower secondary Marked
## 1646 ES-ISCED V1, lower tertiary education, BA level Marked
## 1647 Other Not marked
## 1648 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1649 ES-ISCED IIIa, upper tier upper secondary Marked
## 1650 Other Not marked
## 1651 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1652 ES-ISCED I , less than lower secondary Not marked
## 1653 ES-ISCED II, lower secondary Marked
## 1654 ES-ISCED I , less than lower secondary Not marked
## 1655 ES-ISCED IIIb, lower tier upper secondary Marked
## 1656 ES-ISCED II, lower secondary Marked
## 1657 ES-ISCED I , less than lower secondary Not marked
## 1658 ES-ISCED I , less than lower secondary Not marked
## 1659 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1660 ES-ISCED I , less than lower secondary Not marked
## 1661 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1662 ES-ISCED I , less than lower secondary Not marked
## 1663 Other Marked
## 1664 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1665 ES-ISCED IIIb, lower tier upper secondary Marked
## 1666 Other Marked
## 1667 ES-ISCED I , less than lower secondary Marked
## 1668 ES-ISCED I , less than lower secondary Not marked
## 1669 ES-ISCED II, lower secondary Not marked
## 1670 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1671 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1672 ES-ISCED I , less than lower secondary Not marked
## 1673 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1674 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1675 ES-ISCED V1, lower tertiary education, BA level Marked
## 1676 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1677 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1678 ES-ISCED I , less than lower secondary Marked
## 1679 ES-ISCED V1, lower tertiary education, BA level Marked
## 1680 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1681 ES-ISCED I , less than lower secondary Not marked
## 1682 ES-ISCED I , less than lower secondary Not marked
## 1683 ES-ISCED V1, lower tertiary education, BA level Marked
## 1684 ES-ISCED V1, lower tertiary education, BA level Marked
## 1685 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1686 ES-ISCED II, lower secondary Marked
## 1687 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1688 ES-ISCED IIIa, upper tier upper secondary Marked
## 1689 Other Marked
## 1690 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1691 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1692 ES-ISCED I , less than lower secondary Not marked
## 1693 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1694 ES-ISCED IIIb, lower tier upper secondary Marked
## 1695 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1696 ES-ISCED I , less than lower secondary Marked
## 1697 ES-ISCED I , less than lower secondary Marked
## 1698 ES-ISCED IIIb, lower tier upper secondary Marked
## 1699 ES-ISCED II, lower secondary Not marked
## 1700 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1701 ES-ISCED I , less than lower secondary Marked
## 1702 ES-ISCED V1, lower tertiary education, BA level Marked
## 1703 ES-ISCED V1, lower tertiary education, BA level Marked
## 1704 ES-ISCED I , less than lower secondary Not marked
## 1705 ES-ISCED V1, lower tertiary education, BA level Marked
## 1706 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1707 ES-ISCED IIIb, lower tier upper secondary Marked
## 1708 ES-ISCED V1, lower tertiary education, BA level Marked
## 1709 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1710 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1711 ES-ISCED I , less than lower secondary Not marked
## 1712 ES-ISCED II, lower secondary Marked
## 1713 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1714 ES-ISCED IIIa, upper tier upper secondary Marked
## 1715 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1716 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1717 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1718 ES-ISCED II, lower secondary Marked
## 1719 ES-ISCED V1, lower tertiary education, BA level Marked
## 1720 ES-ISCED II, lower secondary Not marked
## 1721 ES-ISCED II, lower secondary Not marked
## 1722 ES-ISCED II, lower secondary Marked
## 1723 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1724 Other Not marked
## 1725 ES-ISCED I , less than lower secondary Marked
## 1726 ES-ISCED V1, lower tertiary education, BA level Marked
## 1727 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1728 ES-ISCED I , less than lower secondary Not marked
## 1729 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1730 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1731 ES-ISCED V1, lower tertiary education, BA level Marked
## 1732 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1733 ES-ISCED I , less than lower secondary Not marked
## 1734 ES-ISCED I , less than lower secondary Marked
## 1735 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1736 ES-ISCED I , less than lower secondary Not marked
## 1737 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1738 ES-ISCED IIIa, upper tier upper secondary Marked
## 1739 ES-ISCED II, lower secondary Marked
## 1740 ES-ISCED I , less than lower secondary Marked
## 1741 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1742 ES-ISCED II, lower secondary Not marked
## 1743 ES-ISCED I , less than lower secondary Not marked
## 1744 ES-ISCED I , less than lower secondary Marked
## 1745 ES-ISCED IIIb, lower tier upper secondary Marked
## 1746 ES-ISCED II, lower secondary Not marked
## 1747 ES-ISCED V1, lower tertiary education, BA level Marked
## 1748 ES-ISCED V1, lower tertiary education, BA level Marked
## 1749 ES-ISCED I , less than lower secondary Marked
## 1750 ES-ISCED I , less than lower secondary Not marked
## 1751 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1752 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1753 ES-ISCED I , less than lower secondary Marked
## 1754 ES-ISCED V1, lower tertiary education, BA level Marked
## 1755 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1756 ES-ISCED I , less than lower secondary Not marked
## 1757 ES-ISCED I , less than lower secondary Not marked
## 1758 ES-ISCED I , less than lower secondary Not marked
## 1759 ES-ISCED IIIa, upper tier upper secondary Marked
## 1760 ES-ISCED I , less than lower secondary Marked
## 1761 ES-ISCED V1, lower tertiary education, BA level Marked
## 1762 ES-ISCED I , less than lower secondary Marked
## 1763 ES-ISCED V1, lower tertiary education, BA level Marked
## 1764 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1765 ES-ISCED I , less than lower secondary Not marked
## 1766 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1767 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1768 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1769 ES-ISCED I , less than lower secondary Not marked
## 1770 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1771 ES-ISCED IIIa, upper tier upper secondary Marked
## 1772 ES-ISCED IIIb, lower tier upper secondary Marked
## 1773 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1774 ES-ISCED II, lower secondary Not marked
## 1775 ES-ISCED I , less than lower secondary Not marked
## 1776 ES-ISCED I , less than lower secondary Not marked
## 1777 ES-ISCED IIIa, upper tier upper secondary Marked
## 1778 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1779 ES-ISCED IIIa, upper tier upper secondary Marked
## 1780 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1781 ES-ISCED V1, lower tertiary education, BA level Marked
## 1782 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1783 ES-ISCED I , less than lower secondary Marked
## 1784 ES-ISCED I , less than lower secondary Not marked
## 1785 ES-ISCED II, lower secondary Marked
## 1786 ES-ISCED I , less than lower secondary Not marked
## 1787 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1788 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1789 ES-ISCED IIIb, lower tier upper secondary Marked
## 1790 ES-ISCED IIIa, upper tier upper secondary Marked
## 1791 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1792 ES-ISCED V1, lower tertiary education, BA level Marked
## 1793 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1794 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1795 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1796 ES-ISCED I , less than lower secondary Not marked
## 1797 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1798 ES-ISCED IIIb, lower tier upper secondary Marked
## 1799 ES-ISCED I , less than lower secondary Marked
## 1800 ES-ISCED I , less than lower secondary Marked
## 1801 ES-ISCED I , less than lower secondary Not marked
## 1802 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1803 ES-ISCED IIIb, lower tier upper secondary Marked
## 1804 ES-ISCED I , less than lower secondary Not marked
## 1805 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1806 ES-ISCED IIIb, lower tier upper secondary Marked
## 1807 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1808 ES-ISCED V1, lower tertiary education, BA level Marked
## 1809 ES-ISCED II, lower secondary Not marked
## 1810 ES-ISCED V1, lower tertiary education, BA level Marked
## 1811 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1812 ES-ISCED I , less than lower secondary Not marked
## 1813 ES-ISCED II, lower secondary Not marked
## 1814 ES-ISCED V1, lower tertiary education, BA level Marked
## 1815 ES-ISCED I , less than lower secondary Not marked
## 1816 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1817 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1818 ES-ISCED I , less than lower secondary Not marked
## 1819 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1820 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1821 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1822 ES-ISCED II, lower secondary Not marked
## 1823 ES-ISCED V1, lower tertiary education, BA level Marked
## 1824 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1825 ES-ISCED IIIb, lower tier upper secondary Marked
## 1826 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1827 ES-ISCED IIIb, lower tier upper secondary Marked
## 1828 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1829 ES-ISCED IIIb, lower tier upper secondary Marked
## 1830 ES-ISCED I , less than lower secondary Not marked
## 1831 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1832 ES-ISCED I , less than lower secondary Not marked
## 1833 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1834 ES-ISCED II, lower secondary Not marked
## 1835 ES-ISCED IIIa, upper tier upper secondary Marked
## 1836 ES-ISCED V1, lower tertiary education, BA level Marked
## 1837 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1838 ES-ISCED I , less than lower secondary Not marked
## 1839 ES-ISCED V1, lower tertiary education, BA level Marked
## 1840 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1841 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1842 ES-ISCED II, lower secondary Not marked
## 1843 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1844 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1845 ES-ISCED I , less than lower secondary Not marked
## 1846 ES-ISCED I , less than lower secondary Not marked
## 1847 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1848 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1849 ES-ISCED I , less than lower secondary Not marked
## 1850 ES-ISCED I , less than lower secondary Marked
## 1851 ES-ISCED I , less than lower secondary Not marked
## 1852 ES-ISCED I , less than lower secondary Marked
## 1853 ES-ISCED II, lower secondary Marked
## 1854 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1855 ES-ISCED V1, lower tertiary education, BA level Marked
## 1856 ES-ISCED II, lower secondary Not marked
## 1857 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1858 ES-ISCED I , less than lower secondary Not marked
## 1859 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1860 ES-ISCED II, lower secondary Not marked
## 1861 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1862 ES-ISCED II, lower secondary Marked
## 1863 ES-ISCED I , less than lower secondary Marked
## 1864 ES-ISCED II, lower secondary Marked
## 1865 ES-ISCED I , less than lower secondary Not marked
## 1866 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1867 ES-ISCED V1, lower tertiary education, BA level Marked
## 1868 ES-ISCED IIIa, upper tier upper secondary Marked
## 1869 ES-ISCED II, lower secondary Not marked
## 1870 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1871 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1872 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1873 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1874 ES-ISCED V1, lower tertiary education, BA level Marked
## 1875 ES-ISCED I , less than lower secondary Not marked
## 1876 ES-ISCED I , less than lower secondary Not marked
## 1877 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1878 ES-ISCED IIIb, lower tier upper secondary Marked
## 1879 ES-ISCED V1, lower tertiary education, BA level Marked
## 1880 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1881 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1882 ES-ISCED II, lower secondary Marked
## 1883 ES-ISCED I , less than lower secondary Not marked
## 1884 ES-ISCED I , less than lower secondary Not marked
## 1885 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1886 ES-ISCED V1, lower tertiary education, BA level Marked
## 1887 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1888 ES-ISCED II, lower secondary Not marked
## 1889 ES-ISCED II, lower secondary Not marked
## 1890 ES-ISCED II, lower secondary Marked
## 1891 ES-ISCED II, lower secondary Marked
## 1892 ES-ISCED II, lower secondary Not marked
## 1893 ES-ISCED IIIa, upper tier upper secondary Marked
## 1894 ES-ISCED V1, lower tertiary education, BA level Marked
## 1895 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1896 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1897 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1898 ES-ISCED I , less than lower secondary Not marked
## 1899 ES-ISCED IIIb, lower tier upper secondary Marked
## 1900 ES-ISCED I , less than lower secondary Not marked
## 1901 ES-ISCED I , less than lower secondary Not marked
## 1902 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1903 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1904 ES-ISCED IIIa, upper tier upper secondary Marked
## 1905 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1906 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1907 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1908 ES-ISCED V1, lower tertiary education, BA level Marked
## 1909 ES-ISCED IIIa, upper tier upper secondary Marked
## 1910 ES-ISCED IIIa, upper tier upper secondary Marked
## 1911 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1912 ES-ISCED IIIb, lower tier upper secondary Marked
## 1913 ES-ISCED IIIb, lower tier upper secondary Marked
## 1914 ES-ISCED IIIb, lower tier upper secondary Marked
## 1915 ES-ISCED I , less than lower secondary Marked
## 1916 ES-ISCED IIIa, upper tier upper secondary Marked
## 1917 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1918 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1919 ES-ISCED V1, lower tertiary education, BA level Marked
## 1920 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1921 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1922 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1923 ES-ISCED II, lower secondary Marked
## 1924 ES-ISCED II, lower secondary Marked
## 1925 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1926 ES-ISCED II, lower secondary Marked
## 1927 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1928 ES-ISCED I , less than lower secondary Not marked
## 1929 ES-ISCED IIIb, lower tier upper secondary Marked
## 1930 ES-ISCED I , less than lower secondary Not marked
## 1931 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1932 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1933 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1934 ES-ISCED I , less than lower secondary Not marked
## 1935 ES-ISCED IIIa, upper tier upper secondary Not marked
## 1936 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1937 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1938 ES-ISCED IIIb, lower tier upper secondary Not marked
## 1939 ES-ISCED II, lower secondary Not marked
## 1940 ES-ISCED I , less than lower secondary Not marked
## 1941 ES-ISCED IIIb, lower tier upper secondary Marked
## 1942 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1943 ES-ISCED I , less than lower secondary Not marked
## 1944 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1945 ES-ISCED V1, lower tertiary education, BA level Marked
## 1946 ES-ISCED I , less than lower secondary Not marked
## 1947 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1948 ES-ISCED II, lower secondary Marked
## 1949 ES-ISCED II, lower secondary Marked
## 1950 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1951 ES-ISCED IIIb, lower tier upper secondary Marked
## 1952 ES-ISCED I , less than lower secondary Marked
## 1953 <NA> <NA>
## 1954 ES-ISCED II, lower secondary Not marked
## 1955 ES-ISCED V1, lower tertiary education, BA level Marked
## 1956 Other Not marked
## 1957 ES-ISCED IIIa, upper tier upper secondary Marked
## 1958 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1959 ES-ISCED II, lower secondary Not marked
## 1960 ES-ISCED IIIa, upper tier upper secondary Marked
## 1961 ES-ISCED V1, lower tertiary education, BA level Marked
## 1962 ES-ISCED II, lower secondary Marked
## 1963 ES-ISCED I , less than lower secondary Not marked
## 1964 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1965 ES-ISCED V1, lower tertiary education, BA level Marked
## 1966 ES-ISCED I , less than lower secondary Not marked
## 1967 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1968 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1969 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1970 ES-ISCED IIIa, upper tier upper secondary Marked
## 1971 ES-ISCED IIIa, upper tier upper secondary Marked
## 1972 ES-ISCED I , less than lower secondary Not marked
## 1973 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1974 ES-ISCED I , less than lower secondary Not marked
## 1975 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1976 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1977 ES-ISCED IIIa, upper tier upper secondary Marked
## 1978 ES-ISCED II, lower secondary Marked
## 1979 ES-ISCED IIIa, upper tier upper secondary Marked
## 1980 Other Not marked
## 1981 ES-ISCED I , less than lower secondary Not marked
## 1982 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1983 ES-ISCED IIIb, lower tier upper secondary Marked
## 1984 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 1985 ES-ISCED II, lower secondary Marked
## 1986 ES-ISCED II, lower secondary Marked
## 1987 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1988 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 1989 ES-ISCED II, lower secondary Marked
## 1990 ES-ISCED IV, advanced vocational, sub-degree Marked
## 1991 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1992 ES-ISCED I , less than lower secondary Marked
## 1993 ES-ISCED I , less than lower secondary Not marked
## 1994 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1995 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 1996 ES-ISCED V1, lower tertiary education, BA level Not marked
## 1997 ES-ISCED I , less than lower secondary Not marked
## 1998 ES-ISCED I , less than lower secondary Not marked
## 1999 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2000 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2001 ES-ISCED IIIb, lower tier upper secondary Marked
## 2002 ES-ISCED II, lower secondary Not marked
## 2003 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2004 ES-ISCED IIIb, lower tier upper secondary Marked
## 2005 ES-ISCED I , less than lower secondary Marked
## 2006 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2007 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2008 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2009 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2010 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2011 ES-ISCED I , less than lower secondary Not marked
## 2012 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2013 ES-ISCED IIIa, upper tier upper secondary Marked
## 2014 ES-ISCED I , less than lower secondary Not marked
## 2015 ES-ISCED II, lower secondary Marked
## 2016 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2017 ES-ISCED IIIb, lower tier upper secondary Marked
## 2018 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2019 ES-ISCED II, lower secondary Not marked
## 2020 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2021 ES-ISCED IIIb, lower tier upper secondary Not marked
## 2022 ES-ISCED V1, lower tertiary education, BA level Not marked
## 2023 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2024 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2025 ES-ISCED II, lower secondary Not marked
## 2026 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2027 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2028 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2029 Other Marked
## 2030 ES-ISCED V1, lower tertiary education, BA level Marked
## 2031 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2032 ES-ISCED IIIb, lower tier upper secondary Not marked
## 2033 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2034 ES-ISCED I , less than lower secondary Not marked
## 2035 ES-ISCED II, lower secondary Marked
## 2036 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2037 ES-ISCED I , less than lower secondary Not marked
## 2038 ES-ISCED IIIb, lower tier upper secondary Not marked
## 2039 ES-ISCED II, lower secondary Not marked
## 2040 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2041 ES-ISCED IIIb, lower tier upper secondary Not marked
## 2042 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2043 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2044 ES-ISCED I , less than lower secondary Marked
## 2045 ES-ISCED I , less than lower secondary Not marked
## 2046 ES-ISCED I , less than lower secondary Not marked
## 2047 ES-ISCED II, lower secondary Marked
## 2048 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2049 Other Not marked
## 2050 ES-ISCED IIIa, upper tier upper secondary Marked
## 2051 ES-ISCED II, lower secondary Marked
## 2052 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2053 ES-ISCED II, lower secondary Marked
## 2054 ES-ISCED IIIa, upper tier upper secondary Marked
## 2055 ES-ISCED IIIb, lower tier upper secondary Marked
## 2056 ES-ISCED II, lower secondary Marked
## 2057 ES-ISCED I , less than lower secondary Not marked
## 2058 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2059 ES-ISCED V1, lower tertiary education, BA level Marked
## 2060 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2061 ES-ISCED I , less than lower secondary Not marked
## 2062 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2063 ES-ISCED I , less than lower secondary Not marked
## 2064 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2065 ES-ISCED V1, lower tertiary education, BA level Marked
## 2066 ES-ISCED I , less than lower secondary Not marked
## 2067 ES-ISCED V1, lower tertiary education, BA level Marked
## 2068 ES-ISCED I , less than lower secondary Not marked
## 2069 ES-ISCED I , less than lower secondary Not marked
## 2070 ES-ISCED I , less than lower secondary Not marked
## 2071 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2072 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2073 ES-ISCED I , less than lower secondary Not marked
## 2074 ES-ISCED I , less than lower secondary Not marked
## 2075 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2076 Other Not marked
## 2077 ES-ISCED V1, lower tertiary education, BA level Marked
## 2078 ES-ISCED V1, lower tertiary education, BA level Marked
## 2079 ES-ISCED II, lower secondary Not marked
## 2080 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2081 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2082 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2083 ES-ISCED I , less than lower secondary Not marked
## 2084 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2085 ES-ISCED II, lower secondary Marked
## 2086 ES-ISCED V1, lower tertiary education, BA level Not marked
## 2087 ES-ISCED IIIb, lower tier upper secondary Marked
## 2088 ES-ISCED II, lower secondary Not marked
## 2089 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2090 ES-ISCED II, lower secondary Marked
## 2091 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2092 ES-ISCED I , less than lower secondary Marked
## 2093 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2094 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2095 Other Not marked
## 2096 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2097 ES-ISCED II, lower secondary Marked
## 2098 ES-ISCED V1, lower tertiary education, BA level Marked
## 2099 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2100 ES-ISCED I , less than lower secondary Not marked
## 2101 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2102 ES-ISCED IIIa, upper tier upper secondary Marked
## 2103 ES-ISCED I , less than lower secondary Marked
## 2104 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2105 ES-ISCED II, lower secondary Not marked
## 2106 ES-ISCED II, lower secondary Marked
## 2107 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2108 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2109 ES-ISCED II, lower secondary Marked
## 2110 ES-ISCED IIIa, upper tier upper secondary Marked
## 2111 ES-ISCED I , less than lower secondary Not marked
## 2112 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2113 ES-ISCED I , less than lower secondary Not marked
## 2114 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2115 ES-ISCED IIIa, upper tier upper secondary Marked
## 2116 ES-ISCED V1, lower tertiary education, BA level Marked
## 2117 ES-ISCED I , less than lower secondary Not marked
## 2118 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2119 ES-ISCED II, lower secondary Not marked
## 2120 ES-ISCED IIIa, upper tier upper secondary Marked
## 2121 ES-ISCED V1, lower tertiary education, BA level Not marked
## 2122 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2123 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2124 Other Marked
## 2125 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2126 ES-ISCED II, lower secondary Not marked
## 2127 ES-ISCED II, lower secondary Not marked
## 2128 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2129 ES-ISCED II, lower secondary Not marked
## 2130 ES-ISCED I , less than lower secondary Not marked
## 2131 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2132 ES-ISCED IIIa, upper tier upper secondary Marked
## 2133 ES-ISCED I , less than lower secondary Not marked
## 2134 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2135 ES-ISCED V1, lower tertiary education, BA level Marked
## 2136 ES-ISCED I , less than lower secondary Not marked
## 2137 ES-ISCED V1, lower tertiary education, BA level Marked
## 2138 ES-ISCED I , less than lower secondary Not marked
## 2139 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2140 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2141 ES-ISCED V1, lower tertiary education, BA level Not marked
## 2142 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2143 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2144 ES-ISCED I , less than lower secondary Not marked
## 2145 Other Not marked
## 2146 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2147 ES-ISCED I , less than lower secondary Not marked
## 2148 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2149 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2150 ES-ISCED II, lower secondary Not marked
## 2151 ES-ISCED IIIb, lower tier upper secondary Marked
## 2152 ES-ISCED I , less than lower secondary Not marked
## 2153 ES-ISCED IIIa, upper tier upper secondary Marked
## 2154 ES-ISCED V1, lower tertiary education, BA level Marked
## 2155 ES-ISCED IIIb, lower tier upper secondary Not marked
## 2156 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2157 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2158 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2159 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2160 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2161 ES-ISCED II, lower secondary Not marked
## 2162 ES-ISCED I , less than lower secondary Not marked
## 2163 ES-ISCED I , less than lower secondary Not marked
## 2164 ES-ISCED IIIa, upper tier upper secondary Marked
## 2165 ES-ISCED V1, lower tertiary education, BA level Not marked
## 2166 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2167 ES-ISCED II, lower secondary Not marked
## 2168 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2169 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2170 <NA> Not marked
## 2171 <NA> Not marked
## 2172 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2173 ES-ISCED I , less than lower secondary Not marked
## 2174 ES-ISCED I , less than lower secondary Marked
## 2175 ES-ISCED I , less than lower secondary Not marked
## 2176 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2177 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2178 ES-ISCED II, lower secondary Marked
## 2179 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2180 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2181 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2182 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2183 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2184 ES-ISCED I , less than lower secondary Not marked
## 2185 ES-ISCED I , less than lower secondary Not marked
## 2186 ES-ISCED I , less than lower secondary Not marked
## 2187 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2188 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2189 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2190 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2191 ES-ISCED I , less than lower secondary Not marked
## 2192 ES-ISCED V1, lower tertiary education, BA level Marked
## 2193 ES-ISCED II, lower secondary Not marked
## 2194 ES-ISCED V1, lower tertiary education, BA level Not marked
## 2195 ES-ISCED IIIb, lower tier upper secondary Not marked
## 2196 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2197 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2198 ES-ISCED I , less than lower secondary Not marked
## 2199 ES-ISCED II, lower secondary Not marked
## 2200 ES-ISCED V1, lower tertiary education, BA level Marked
## 2201 ES-ISCED I , less than lower secondary Not marked
## 2202 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2203 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2204 Other Not marked
## 2205 ES-ISCED I , less than lower secondary Not marked
## 2206 ES-ISCED V1, lower tertiary education, BA level Marked
## 2207 Other Not marked
## 2208 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2209 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2210 ES-ISCED V1, lower tertiary education, BA level Not marked
## 2211 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2212 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2213 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2214 ES-ISCED I , less than lower secondary Marked
## 2215 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2216 ES-ISCED I , less than lower secondary Not marked
## 2217 ES-ISCED II, lower secondary Marked
## 2218 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2219 ES-ISCED I , less than lower secondary Not marked
## 2220 ES-ISCED II, lower secondary Marked
## 2221 ES-ISCED I , less than lower secondary Not marked
## 2222 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2223 ES-ISCED V1, lower tertiary education, BA level Not marked
## 2224 ES-ISCED I , less than lower secondary Marked
## 2225 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2226 ES-ISCED V1, lower tertiary education, BA level Marked
## 2227 ES-ISCED IIIa, upper tier upper secondary Marked
## 2228 ES-ISCED I , less than lower secondary Not marked
## 2229 ES-ISCED I , less than lower secondary Not marked
## 2230 ES-ISCED V2, higher tertiary education, >= MA level Not marked
## 2231 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2232 ES-ISCED I , less than lower secondary Marked
## 2233 ES-ISCED II, lower secondary Not marked
## 2234 ES-ISCED IIIb, lower tier upper secondary Marked
## 2235 ES-ISCED II, lower secondary Marked
## 2236 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2237 ES-ISCED II, lower secondary Not marked
## 2238 ES-ISCED V1, lower tertiary education, BA level Not marked
## 2239 ES-ISCED I , less than lower secondary Marked
## 2240 ES-ISCED I , less than lower secondary Not marked
## 2241 ES-ISCED II, lower secondary Not marked
## 2242 <NA> Not marked
## 2243 ES-ISCED V1, lower tertiary education, BA level Marked
## 2244 ES-ISCED I , less than lower secondary Not marked
## 2245 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2246 ES-ISCED II, lower secondary Not marked
## 2247 ES-ISCED I , less than lower secondary Not marked
## 2248 ES-ISCED IIIb, lower tier upper secondary Not marked
## 2249 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2250 ES-ISCED IIIb, lower tier upper secondary Not marked
## 2251 ES-ISCED I , less than lower secondary Marked
## 2252 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2253 ES-ISCED V1, lower tertiary education, BA level Marked
## 2254 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2255 ES-ISCED V1, lower tertiary education, BA level Marked
## 2256 ES-ISCED I , less than lower secondary Not marked
## 2257 ES-ISCED IIIb, lower tier upper secondary Not marked
## 2258 ES-ISCED I , less than lower secondary Not marked
## 2259 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2260 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2261 ES-ISCED IV, advanced vocational, sub-degree Marked
## 2262 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2263 ES-ISCED IIIa, upper tier upper secondary Not marked
## 2264 ES-ISCED IV, advanced vocational, sub-degree Not marked
## 2265 ES-ISCED I , less than lower secondary Not marked
## 2266 <NA> <NA>
## 2267 <NA> <NA>
## 2268 <NA> <NA>
## 2269 <NA> <NA>
## 2270 <NA> <NA>
## 2271 <NA> <NA>
## 2272 <NA> <NA>
## 2273 <NA> <NA>
## 2274 <NA> <NA>
## 2275 <NA> <NA>
## 2276 <NA> <NA>
## 2277 <NA> <NA>
## 2278 <NA> <NA>
## 2279 <NA> <NA>
## 2280 <NA> <NA>
## 2281 <NA> <NA>
## 2282 <NA> <NA>
## 2283 <NA> <NA>
## 2284 <NA> <NA>
## 2285 <NA> <NA>
## 2286 <NA> <NA>
## 2287 <NA> <NA>
## 2288 <NA> <NA>
## 2289 <NA> <NA>
## 2290 <NA> <NA>
## 2291 <NA> <NA>
## 2292 <NA> <NA>
## 2293 <NA> <NA>
## 2294 <NA> <NA>
## 2295 <NA> <NA>
## 2296 <NA> <NA>
## 2297 <NA> <NA>
## 2298 <NA> <NA>
## 2299 <NA> <NA>
## 2300 <NA> <NA>
## 2301 <NA> <NA>
## 2302 <NA> <NA>
## 2303 <NA> <NA>
## 2304 <NA> <NA>
## 2305 <NA> <NA>
## 2306 <NA> <NA>
## 2307 <NA> <NA>
## 2308 <NA> <NA>
## 2309 <NA> <NA>
## 2310 <NA> <NA>
## 2311 <NA> <NA>
## 2312 <NA> <NA>
## 2313 <NA> <NA>
## 2314 <NA> <NA>
## 2315 <NA> <NA>
## 2316 <NA> <NA>
## 2317 <NA> <NA>
## 2318 <NA> <NA>
## 2319 <NA> <NA>
## 2320 <NA> <NA>
## 2321 <NA> <NA>
## 2322 <NA> <NA>
## 2323 <NA> <NA>
## 2324 <NA> <NA>
## 2325 <NA> <NA>
## 2326 <NA> <NA>
## 2327 <NA> <NA>
## 2328 <NA> <NA>
## 2329 <NA> <NA>
## 2330 <NA> <NA>
## 2331 <NA> <NA>
## 2332 <NA> <NA>
## 2333 <NA> <NA>
## 2334 <NA> <NA>
## 2335 <NA> <NA>
## 2336 <NA> <NA>
## 2337 <NA> <NA>
## 2338 <NA> <NA>
## 2339 <NA> <NA>
## 2340 <NA> <NA>
## 2341 <NA> <NA>
## 2342 <NA> <NA>
## 2343 <NA> <NA>
## 2344 <NA> <NA>
## 2345 <NA> <NA>
## 2346 <NA> <NA>
## 2347 <NA> <NA>
## 2348 <NA> <NA>
## 2349 <NA> <NA>
## 2350 <NA> <NA>
## 2351 <NA> <NA>
## 2352 <NA> <NA>
## 2353 <NA> <NA>
## 2354 <NA> <NA>
## 2355 <NA> <NA>
## 2356 <NA> <NA>
## 2357 <NA> <NA>
## 2358 <NA> <NA>
## 2359 <NA> <NA>
## 2360 <NA> <NA>
## 2361 <NA> <NA>
## 2362 <NA> <NA>
## 2363 <NA> <NA>
## 2364 <NA> <NA>
## 2365 <NA> <NA>
## 2366 <NA> <NA>
## 2367 <NA> <NA>
## 2368 <NA> <NA>
## 2369 <NA> <NA>
## 2370 <NA> <NA>
## 2371 <NA> <NA>
## 2372 <NA> <NA>
## 2373 <NA> <NA>
## 2374 <NA> <NA>
## 2375 <NA> <NA>
## 2376 <NA> <NA>
## 2377 <NA> <NA>
## 2378 <NA> <NA>
## 2379 <NA> <NA>
## 2380 <NA> <NA>
## 2381 <NA> <NA>
## 2382 <NA> <NA>
## 2383 <NA> <NA>
## 2384 <NA> <NA>
## 2385 <NA> <NA>
## 2386 <NA> <NA>
## 2387 <NA> <NA>
## 2388 <NA> <NA>
## 2389 <NA> <NA>
## 2390 <NA> <NA>
## 2391 <NA> <NA>
## 2392 <NA> <NA>
## 2393 <NA> <NA>
## 2394 <NA> <NA>
## 2395 <NA> <NA>
## 2396 <NA> <NA>
## 2397 <NA> <NA>
## 2398 <NA> <NA>
## 2399 <NA> <NA>
## 2400 <NA> <NA>
## 2401 <NA> <NA>
## 2402 <NA> <NA>
## 2403 <NA> <NA>
## 2404 <NA> <NA>
## 2405 <NA> <NA>
## 2406 <NA> <NA>
## 2407 <NA> <NA>
## 2408 <NA> <NA>
## 2409 <NA> <NA>
## 2410 <NA> <NA>
## 2411 <NA> <NA>
## 2412 <NA> <NA>
## 2413 <NA> <NA>
## 2414 <NA> <NA>
## 2415 <NA> <NA>
## 2416 <NA> <NA>
## 2417 <NA> <NA>
## 2418 <NA> <NA>
## 2419 <NA> <NA>
## 2420 <NA> <NA>
## 2421 <NA> <NA>
## 2422 <NA> <NA>
## 2423 <NA> <NA>
## 2424 <NA> <NA>
## 2425 <NA> <NA>
## 2426 <NA> <NA>
## 2427 <NA> <NA>
## 2428 <NA> <NA>
## 2429 <NA> <NA>
## 2430 <NA> <NA>
## 2431 <NA> <NA>
## 2432 <NA> <NA>
## 2433 <NA> <NA>
## 2434 <NA> <NA>
## 2435 <NA> <NA>
## 2436 <NA> <NA>
## 2437 <NA> <NA>
## 2438 <NA> <NA>
## 2439 <NA> <NA>
## 2440 <NA> <NA>
## 2441 <NA> <NA>
## 2442 <NA> <NA>
## 2443 <NA> <NA>
## 2444 <NA> <NA>
## 2445 <NA> <NA>
## 2446 <NA> <NA>
## 2447 <NA> <NA>
## 2448 <NA> <NA>
## 2449 <NA> <NA>
## 2450 <NA> <NA>
## 2451 <NA> <NA>
## 2452 <NA> <NA>
## 2453 <NA> <NA>
## 2454 <NA> <NA>
## 2455 <NA> <NA>
## 2456 <NA> <NA>
## 2457 <NA> <NA>
## 2458 <NA> <NA>
## 2459 <NA> <NA>
## 2460 <NA> <NA>
## 2461 <NA> <NA>
## 2462 <NA> <NA>
## 2463 <NA> <NA>
## 2464 <NA> <NA>
## 2465 <NA> <NA>
## 2466 <NA> <NA>
## 2467 <NA> <NA>
## 2468 <NA> <NA>
## 2469 <NA> <NA>
## 2470 <NA> <NA>
## 2471 <NA> <NA>
## 2472 <NA> <NA>
## 2473 <NA> <NA>
## 2474 <NA> <NA>
## 2475 <NA> <NA>
## 2476 <NA> <NA>
## 2477 <NA> <NA>
## 2478 <NA> <NA>
## 2479 <NA> <NA>
## 2480 <NA> <NA>
## 2481 <NA> <NA>
## 2482 <NA> <NA>
## 2483 <NA> <NA>
## 2484 <NA> <NA>
## 2485 <NA> <NA>
## 2486 <NA> <NA>
## 2487 <NA> <NA>
## 2488 <NA> <NA>
## 2489 <NA> <NA>
## 2490 <NA> <NA>
## 2491 <NA> <NA>
## 2492 <NA> <NA>
## 2493 <NA> <NA>
## 2494 <NA> <NA>
## 2495 <NA> <NA>
## 2496 <NA> <NA>
## 2497 <NA> <NA>
## 2498 <NA> <NA>
## 2499 <NA> <NA>
## 2500 <NA> <NA>
## 2501 <NA> <NA>
## 2502 <NA> <NA>
## 2503 <NA> <NA>
## 2504 <NA> <NA>
## 2505 <NA> <NA>
## 2506 <NA> <NA>
## 2507 <NA> <NA>
## 2508 <NA> <NA>
## 2509 <NA> <NA>
## 2510 <NA> <NA>
## 2511 <NA> <NA>
## 2512 <NA> <NA>
## 2513 <NA> <NA>
## 2514 <NA> <NA>
## 2515 <NA> <NA>
## 2516 <NA> <NA>
## 2517 <NA> <NA>
## 2518 <NA> <NA>
## 2519 <NA> <NA>
## 2520 <NA> <NA>
## 2521 <NA> <NA>
## 2522 <NA> <NA>
## 2523 <NA> <NA>
## 2524 <NA> <NA>
## 2525 <NA> <NA>
## 2526 <NA> <NA>
## 2527 <NA> <NA>
## 2528 <NA> <NA>
## 2529 <NA> <NA>
## 2530 <NA> <NA>
## 2531 <NA> <NA>
## 2532 <NA> <NA>
## 2533 <NA> <NA>
## 2534 <NA> <NA>
## 2535 <NA> <NA>
## 2536 <NA> <NA>
## 2537 <NA> <NA>
## 2538 <NA> <NA>
## 2539 <NA> <NA>
## 2540 <NA> <NA>
## 2541 <NA> <NA>
## 2542 <NA> <NA>
## 2543 <NA> <NA>
## 2544 <NA> <NA>
## 2545 <NA> <NA>
## 2546 <NA> <NA>
## 2547 <NA> <NA>
## 2548 <NA> <NA>
## 2549 <NA> <NA>
## 2550 <NA> <NA>
## 2551 <NA> <NA>
## 2552 <NA> <NA>
## 2553 <NA> <NA>
## 2554 <NA> <NA>
## 2555 <NA> <NA>
## 2556 <NA> <NA>
## 2557 <NA> <NA>
## 2558 <NA> <NA>
## 2559 <NA> <NA>
## 2560 <NA> <NA>
## 2561 <NA> <NA>
## 2562 <NA> <NA>
## 2563 <NA> <NA>
## 2564 <NA> <NA>
## 2565 <NA> <NA>
## 2566 <NA> <NA>
## 2567 <NA> <NA>
## 2568 <NA> <NA>
## 2569 <NA> <NA>
## 2570 <NA> <NA>
## 2571 <NA> <NA>
## 2572 <NA> <NA>
## 2573 <NA> <NA>
## 2574 <NA> <NA>
## 2575 <NA> <NA>
## 2576 <NA> <NA>
## 2577 <NA> <NA>
## 2578 <NA> <NA>
## 2579 <NA> <NA>
## 2580 <NA> <NA>
## 2581 <NA> <NA>
## 2582 <NA> <NA>
## 2583 <NA> <NA>
## 2584 <NA> <NA>
## 2585 <NA> <NA>
## 2586 <NA> <NA>
## 2587 <NA> <NA>
## 2588 <NA> <NA>
## 2589 <NA> <NA>
## 2590 <NA> <NA>
## 2591 <NA> <NA>
## 2592 <NA> <NA>
## 2593 <NA> <NA>
## 2594 <NA> <NA>
## 2595 <NA> <NA>
## 2596 <NA> <NA>
## 2597 <NA> <NA>
## 2598 <NA> <NA>
## 2599 <NA> <NA>
## 2600 <NA> <NA>
## 2601 <NA> <NA>
## 2602 <NA> <NA>
## 2603 <NA> <NA>
## 2604 <NA> <NA>
## 2605 <NA> <NA>
## 2606 <NA> <NA>
## 2607 <NA> <NA>
## 2608 <NA> <NA>
## 2609 <NA> <NA>
## 2610 <NA> <NA>
## 2611 <NA> <NA>
## 2612 <NA> <NA>
## 2613 <NA> <NA>
## 2614 <NA> <NA>
## 2615 <NA> <NA>
## 2616 <NA> <NA>
## 2617 <NA> <NA>
## 2618 <NA> <NA>
## 2619 <NA> <NA>
## 2620 <NA> <NA>
## 2621 <NA> <NA>
## 2622 <NA> <NA>
## 2623 <NA> <NA>
## 2624 <NA> <NA>
## 2625 <NA> <NA>
## 2626 <NA> <NA>
## 2627 <NA> <NA>
## 2628 <NA> <NA>
## 2629 <NA> <NA>
## 2630 <NA> <NA>
## 2631 <NA> <NA>
## 2632 <NA> <NA>
## 2633 <NA> <NA>
## 2634 <NA> <NA>
## 2635 <NA> <NA>
## 2636 <NA> <NA>
## 2637 <NA> <NA>
## 2638 <NA> <NA>
## 2639 <NA> <NA>
## 2640 <NA> <NA>
## 2641 <NA> <NA>
## 2642 <NA> <NA>
## 2643 <NA> <NA>
## 2644 <NA> <NA>
## 2645 <NA> <NA>
## 2646 <NA> <NA>
## 2647 <NA> <NA>
## 2648 <NA> <NA>
## 2649 <NA> <NA>
## 2650 <NA> <NA>
## 2651 <NA> <NA>
## 2652 <NA> <NA>
## 2653 <NA> <NA>
## 2654 <NA> <NA>
## 2655 <NA> <NA>
## 2656 <NA> <NA>
## 2657 <NA> <NA>
## 2658 <NA> <NA>
## 2659 <NA> <NA>
## 2660 <NA> <NA>
## 2661 <NA> <NA>
## 2662 <NA> <NA>
## 2663 <NA> <NA>
## 2664 <NA> <NA>
## 2665 <NA> <NA>
## 2666 <NA> <NA>
## 2667 <NA> <NA>
## 2668 <NA> <NA>
## 2669 <NA> <NA>
## 2670 <NA> <NA>
## 2671 <NA> <NA>
## 2672 <NA> <NA>
## 2673 <NA> <NA>
## 2674 <NA> <NA>
## 2675 <NA> <NA>
## 2676 <NA> <NA>
## 2677 <NA> <NA>
## 2678 <NA> <NA>
## 2679 <NA> <NA>
## 2680 <NA> <NA>
## 2681 <NA> <NA>
## 2682 <NA> <NA>
## 2683 <NA> <NA>
## 2684 <NA> <NA>
## 2685 <NA> <NA>
## 2686 <NA> <NA>
## 2687 <NA> <NA>
## 2688 <NA> <NA>
## 2689 <NA> <NA>
## 2690 <NA> <NA>
## 2691 <NA> <NA>
## 2692 <NA> <NA>
## 2693 <NA> <NA>
## 2694 <NA> <NA>
## 2695 <NA> <NA>
## 2696 <NA> <NA>
## 2697 <NA> <NA>
## 2698 <NA> <NA>
## 2699 <NA> <NA>
## 2700 <NA> <NA>
## 2701 <NA> <NA>
## 2702 <NA> <NA>
## 2703 <NA> <NA>
## 2704 <NA> <NA>
## 2705 <NA> <NA>
## 2706 <NA> <NA>
## 2707 <NA> <NA>
## 2708 <NA> <NA>
## 2709 <NA> <NA>
## 2710 <NA> <NA>
## 2711 <NA> <NA>
## 2712 <NA> <NA>
## 2713 <NA> <NA>
## 2714 <NA> <NA>
## 2715 <NA> <NA>
## 2716 <NA> <NA>
## 2717 <NA> <NA>
## 2718 <NA> <NA>
## 2719 <NA> <NA>
## 2720 <NA> <NA>
## 2721 <NA> <NA>
## 2722 <NA> <NA>
## 2723 <NA> <NA>
## 2724 <NA> <NA>
## 2725 <NA> <NA>
## 2726 <NA> <NA>
## 2727 <NA> <NA>
## 2728 <NA> <NA>
## 2729 <NA> <NA>
## 2730 <NA> <NA>
## 2731 <NA> <NA>
## 2732 <NA> <NA>
## 2733 <NA> <NA>
## 2734 <NA> <NA>
## 2735 <NA> <NA>
## 2736 <NA> <NA>
## 2737 <NA> <NA>
## 2738 <NA> <NA>
## 2739 <NA> <NA>
## 2740 <NA> <NA>
## 2741 <NA> <NA>
## 2742 <NA> <NA>
## 2743 <NA> <NA>
## 2744 <NA> <NA>
## 2745 <NA> <NA>
## 2746 <NA> <NA>
## 2747 <NA> <NA>
## 2748 <NA> <NA>
## 2749 <NA> <NA>
## 2750 <NA> <NA>
## 2751 <NA> <NA>
## 2752 <NA> <NA>
## 2753 <NA> <NA>
## 2754 <NA> <NA>
## 2755 <NA> <NA>
## 2756 <NA> <NA>
## 2757 <NA> <NA>
## 2758 <NA> <NA>
## 2759 <NA> <NA>
## 2760 <NA> <NA>
## 2761 <NA> <NA>
## 2762 <NA> <NA>
## 2763 <NA> <NA>
## 2764 <NA> <NA>
## 2765 <NA> <NA>
## 2766 <NA> <NA>
## 2767 <NA> <NA>
## 2768 <NA> <NA>
## 2769 <NA> <NA>
## 2770 <NA> <NA>
## 2771 <NA> <NA>
## 2772 <NA> <NA>
## 2773 <NA> <NA>
## 2774 <NA> <NA>
## 2775 <NA> <NA>
## 2776 <NA> <NA>
## 2777 <NA> <NA>
## 2778 <NA> <NA>
## 2779 <NA> <NA>
## 2780 <NA> <NA>
## 2781 <NA> <NA>
## 2782 <NA> <NA>
## 2783 <NA> <NA>
## 2784 <NA> <NA>
## 2785 <NA> <NA>
## 2786 <NA> <NA>
## 2787 <NA> <NA>
## 2788 <NA> <NA>
## 2789 <NA> <NA>
## 2790 <NA> <NA>
## 2791 <NA> <NA>
## 2792 <NA> <NA>
## 2793 <NA> <NA>
## 2794 <NA> <NA>
## 2795 <NA> <NA>
## 2796 <NA> <NA>
## 2797 <NA> <NA>
## 2798 <NA> <NA>
## 2799 <NA> <NA>
## 2800 <NA> <NA>
## 2801 <NA> <NA>
## 2802 <NA> <NA>
## 2803 <NA> <NA>
## 2804 <NA> <NA>
## 2805 <NA> <NA>
## 2806 <NA> <NA>
## 2807 <NA> <NA>
## 2808 <NA> <NA>
## 2809 <NA> <NA>
## 2810 <NA> <NA>
## 2811 <NA> <NA>
## 2812 <NA> <NA>
## 2813 <NA> <NA>
## 2814 <NA> <NA>
## 2815 <NA> <NA>
## 2816 <NA> <NA>
## 2817 <NA> <NA>
## 2818 <NA> <NA>
## 2819 <NA> <NA>
## 2820 <NA> <NA>
## 2821 <NA> <NA>
## 2822 <NA> <NA>
## 2823 <NA> <NA>
## 2824 <NA> <NA>
## 2825 <NA> <NA>
## 2826 <NA> <NA>
## 2827 <NA> <NA>
## 2828 <NA> <NA>
## 2829 <NA> <NA>
## 2830 <NA> <NA>
## 2831 <NA> <NA>
## 2832 <NA> <NA>
## 2833 <NA> <NA>
## 2834 <NA> <NA>
## 2835 <NA> <NA>
## 2836 <NA> <NA>
## 2837 <NA> <NA>
## 2838 <NA> <NA>
## 2839 <NA> <NA>
## 2840 <NA> <NA>
## 2841 <NA> <NA>
## 2842 <NA> <NA>
## 2843 <NA> <NA>
## 2844 <NA> <NA>
## 2845 <NA> <NA>
## 2846 <NA> <NA>
## 2847 <NA> <NA>
## 2848 <NA> <NA>
## 2849 <NA> <NA>
## 2850 <NA> <NA>
## 2851 <NA> <NA>
## 2852 <NA> <NA>
## 2853 <NA> <NA>
## 2854 <NA> <NA>
## 2855 <NA> <NA>
## 2856 <NA> <NA>
## 2857 <NA> <NA>
## 2858 <NA> <NA>
## 2859 <NA> <NA>
## 2860 <NA> <NA>
## 2861 <NA> <NA>
## 2862 <NA> <NA>
## 2863 <NA> <NA>
## 2864 <NA> <NA>
## 2865 <NA> <NA>
## 2866 <NA> <NA>
## 2867 <NA> <NA>
## 2868 <NA> <NA>
## 2869 <NA> <NA>
## 2870 <NA> <NA>
## 2871 <NA> <NA>
## 2872 <NA> <NA>
## 2873 <NA> <NA>
## 2874 <NA> <NA>
## 2875 <NA> <NA>
## 2876 <NA> <NA>
## 2877 <NA> <NA>
## 2878 <NA> <NA>
## 2879 <NA> <NA>
## 2880 <NA> <NA>
## 2881 <NA> <NA>
## 2882 <NA> <NA>
## 2883 <NA> <NA>
## 2884 <NA> <NA>
## 2885 <NA> <NA>
## 2886 <NA> <NA>
## 2887 <NA> <NA>
## 2888 <NA> <NA>
## 2889 <NA> <NA>
## 2890 <NA> <NA>
## 2891 <NA> <NA>
## 2892 <NA> <NA>
## 2893 <NA> <NA>
## 2894 <NA> <NA>
## 2895 <NA> <NA>
## 2896 <NA> <NA>
## 2897 <NA> <NA>
## 2898 <NA> <NA>
## 2899 <NA> <NA>
## 2900 <NA> <NA>
## 2901 <NA> <NA>
## 2902 <NA> <NA>
## 2903 <NA> <NA>
## 2904 <NA> <NA>
## 2905 <NA> <NA>
## 2906 <NA> <NA>
## 2907 <NA> <NA>
## 2908 <NA> <NA>
## 2909 <NA> <NA>
## 2910 <NA> <NA>
## 2911 <NA> <NA>
## 2912 <NA> <NA>
## 2913 <NA> <NA>
## 2914 <NA> <NA>
## 2915 <NA> <NA>
## 2916 <NA> <NA>
## 2917 <NA> <NA>
## 2918 <NA> <NA>
## 2919 <NA> <NA>
## 2920 <NA> <NA>
## 2921 <NA> <NA>
## 2922 <NA> <NA>
## 2923 <NA> <NA>
## 2924 <NA> <NA>
## 2925 <NA> <NA>
## 2926 <NA> <NA>
## 2927 <NA> <NA>
## 2928 <NA> <NA>
## 2929 <NA> <NA>
## 2930 <NA> <NA>
## 2931 <NA> <NA>
## 2932 <NA> <NA>
## 2933 <NA> <NA>
## 2934 <NA> <NA>
## 2935 <NA> <NA>
## 2936 <NA> <NA>
## 2937 <NA> <NA>
## 2938 <NA> <NA>
## 2939 <NA> <NA>
## 2940 <NA> <NA>
## 2941 <NA> <NA>
## 2942 <NA> <NA>
## 2943 <NA> <NA>
## 2944 <NA> <NA>
## 2945 <NA> <NA>
## 2946 <NA> <NA>
## 2947 <NA> <NA>
## 2948 <NA> <NA>
## 2949 <NA> <NA>
## 2950 <NA> <NA>
## 2951 <NA> <NA>
## 2952 <NA> <NA>
## 2953 <NA> <NA>
## 2954 <NA> <NA>
## 2955 <NA> <NA>
## 2956 <NA> <NA>
## 2957 <NA> <NA>
## 2958 <NA> <NA>
## 2959 <NA> <NA>
## 2960 <NA> <NA>
## 2961 <NA> <NA>
## 2962 <NA> <NA>
## 2963 <NA> <NA>
## 2964 <NA> <NA>
## 2965 <NA> <NA>
## 2966 <NA> <NA>
## 2967 <NA> <NA>
## 2968 <NA> <NA>
## 2969 <NA> <NA>
## 2970 <NA> <NA>
## 2971 <NA> <NA>
## 2972 <NA> <NA>
## 2973 <NA> <NA>
## 2974 <NA> <NA>
## 2975 <NA> <NA>
## 2976 <NA> <NA>
## 2977 <NA> <NA>
## 2978 <NA> <NA>
## 2979 <NA> <NA>
## 2980 <NA> <NA>
## 2981 <NA> <NA>
## 2982 <NA> <NA>
## 2983 <NA> <NA>
## 2984 <NA> <NA>
## 2985 <NA> <NA>
## 2986 <NA> <NA>
## 2987 <NA> <NA>
## 2988 <NA> <NA>
## 2989 <NA> <NA>
## 2990 <NA> <NA>
## 2991 <NA> <NA>
## 2992 <NA> <NA>
## 2993 <NA> <NA>
## 2994 <NA> <NA>
## 2995 <NA> <NA>
## 2996 <NA> <NA>
## 2997 <NA> <NA>
## 2998 <NA> <NA>
## 2999 <NA> <NA>
## 3000 <NA> <NA>
## 3001 <NA> <NA>
## 3002 <NA> <NA>
## 3003 <NA> <NA>
## 3004 <NA> <NA>
## 3005 <NA> <NA>
## 3006 <NA> <NA>
## 3007 <NA> <NA>
## 3008 <NA> <NA>
## 3009 <NA> <NA>
## 3010 <NA> <NA>
## 3011 <NA> <NA>
## 3012 <NA> <NA>
## 3013 <NA> <NA>
## 3014 <NA> <NA>
## 3015 <NA> <NA>
## 3016 <NA> <NA>
## 3017 <NA> <NA>
## 3018 <NA> <NA>
## 3019 <NA> <NA>
## 3020 <NA> <NA>
## 3021 <NA> <NA>
## 3022 <NA> <NA>
## 3023 <NA> <NA>
## 3024 <NA> <NA>
## 3025 <NA> <NA>
## 3026 <NA> <NA>
## 3027 <NA> <NA>
## 3028 <NA> <NA>
## 3029 <NA> <NA>
## 3030 <NA> <NA>
## 3031 <NA> <NA>
## 3032 <NA> <NA>
## 3033 <NA> <NA>
## 3034 <NA> <NA>
## 3035 <NA> <NA>
## 3036 <NA> <NA>
## 3037 <NA> <NA>
## 3038 <NA> <NA>
## 3039 <NA> <NA>
## 3040 <NA> <NA>
## 3041 <NA> <NA>
## 3042 <NA> <NA>
## 3043 <NA> <NA>
## 3044 <NA> <NA>
## 3045 <NA> <NA>
## 3046 <NA> <NA>
## 3047 <NA> <NA>
## 3048 <NA> <NA>
## 3049 <NA> <NA>
## 3050 <NA> <NA>
## 3051 <NA> <NA>
## 3052 <NA> <NA>
## 3053 <NA> <NA>
## 3054 <NA> <NA>
## 3055 <NA> <NA>
## 3056 <NA> <NA>
## 3057 <NA> <NA>
## 3058 <NA> <NA>
## 3059 <NA> <NA>
## 3060 <NA> <NA>
## 3061 <NA> <NA>
## 3062 <NA> <NA>
## 3063 <NA> <NA>
## 3064 <NA> <NA>
## 3065 <NA> <NA>
## 3066 <NA> <NA>
## 3067 <NA> <NA>
## 3068 <NA> <NA>
## 3069 <NA> <NA>
## 3070 <NA> <NA>
## 3071 <NA> <NA>
## 3072 <NA> <NA>
## 3073 <NA> <NA>
## 3074 <NA> <NA>
## 3075 <NA> <NA>
## 3076 <NA> <NA>
## 3077 <NA> <NA>
## 3078 <NA> <NA>
## 3079 <NA> <NA>
## 3080 <NA> <NA>
## 3081 <NA> <NA>
## 3082 <NA> <NA>
## 3083 <NA> <NA>
## 3084 <NA> <NA>
## 3085 <NA> <NA>
## 3086 <NA> <NA>
## 3087 <NA> <NA>
## 3088 <NA> <NA>
## 3089 <NA> <NA>
## 3090 <NA> <NA>
## 3091 <NA> <NA>
## 3092 <NA> <NA>
## 3093 <NA> <NA>
## 3094 <NA> <NA>
## 3095 <NA> <NA>
## 3096 <NA> <NA>
## 3097 <NA> <NA>
## 3098 <NA> <NA>
## 3099 <NA> <NA>
## 3100 <NA> <NA>
## 3101 <NA> <NA>
## 3102 <NA> <NA>
## 3103 <NA> <NA>
## 3104 <NA> <NA>
## 3105 <NA> <NA>
## 3106 <NA> <NA>
## 3107 <NA> <NA>
## 3108 <NA> <NA>
## 3109 <NA> <NA>
## 3110 <NA> <NA>
## 3111 <NA> <NA>
## 3112 <NA> <NA>
## 3113 <NA> <NA>
## 3114 <NA> <NA>
## 3115 <NA> <NA>
## 3116 <NA> <NA>
## 3117 <NA> <NA>
## 3118 <NA> <NA>
## 3119 <NA> <NA>
## 3120 <NA> <NA>
## 3121 <NA> <NA>
## 3122 <NA> <NA>
## 3123 <NA> <NA>
## 3124 <NA> <NA>
## 3125 <NA> <NA>
## 3126 <NA> <NA>
## 3127 <NA> <NA>
## 3128 <NA> <NA>
## 3129 <NA> <NA>
## 3130 <NA> <NA>
## 3131 <NA> <NA>
## 3132 <NA> <NA>
## 3133 <NA> <NA>
## 3134 <NA> <NA>
## 3135 <NA> <NA>
## 3136 <NA> <NA>
## 3137 <NA> <NA>
## 3138 <NA> <NA>
## 3139 <NA> <NA>
## 3140 <NA> <NA>
## 3141 <NA> <NA>
## 3142 <NA> <NA>
## 3143 <NA> <NA>
## 3144 <NA> <NA>
## 3145 <NA> <NA>
## 3146 <NA> <NA>
## 3147 <NA> <NA>
## 3148 <NA> <NA>
## 3149 <NA> <NA>
## 3150 <NA> <NA>
## 3151 <NA> <NA>
## 3152 <NA> <NA>
## 3153 <NA> <NA>
## 3154 <NA> <NA>
## 3155 <NA> <NA>
## 3156 <NA> <NA>
## 3157 <NA> <NA>
## 3158 <NA> <NA>
## 3159 <NA> <NA>
## 3160 <NA> <NA>
## 3161 <NA> <NA>
## 3162 <NA> <NA>
## 3163 <NA> <NA>
## 3164 <NA> <NA>
## 3165 <NA> <NA>
## 3166 <NA> <NA>
## 3167 <NA> <NA>
## 3168 <NA> <NA>
## 3169 <NA> <NA>
## 3170 <NA> <NA>
## 3171 <NA> <NA>
## 3172 <NA> <NA>
## 3173 <NA> <NA>
## 3174 <NA> <NA>
## 3175 <NA> <NA>
## 3176 <NA> <NA>
## 3177 <NA> <NA>
## 3178 <NA> <NA>
## 3179 <NA> <NA>
## 3180 <NA> <NA>
## 3181 <NA> <NA>
## 3182 <NA> <NA>
## 3183 <NA> <NA>
## 3184 <NA> <NA>
## 3185 <NA> <NA>
## 3186 <NA> <NA>
## 3187 <NA> <NA>
## 3188 <NA> <NA>
## 3189 <NA> <NA>
## 3190 <NA> <NA>
## 3191 <NA> <NA>
## 3192 <NA> <NA>
## 3193 <NA> <NA>
## 3194 <NA> <NA>
## 3195 <NA> <NA>
## 3196 <NA> <NA>
## 3197 <NA> <NA>
## 3198 <NA> <NA>
## 3199 <NA> <NA>
## 3200 <NA> <NA>
## 3201 <NA> <NA>
## 3202 <NA> <NA>
## 3203 <NA> <NA>
## 3204 <NA> <NA>
## 3205 <NA> <NA>
## 3206 <NA> <NA>
## 3207 <NA> <NA>
## 3208 <NA> <NA>
## 3209 <NA> <NA>
## 3210 <NA> <NA>
## 3211 <NA> <NA>
## 3212 <NA> <NA>
## 3213 <NA> <NA>
## 3214 <NA> <NA>
## 3215 <NA> <NA>
## 3216 <NA> <NA>
## 3217 <NA> <NA>
## 3218 <NA> <NA>
## 3219 <NA> <NA>
## 3220 <NA> <NA>
## 3221 <NA> <NA>
## 3222 <NA> <NA>
## 3223 <NA> <NA>
## 3224 <NA> <NA>
## 3225 <NA> <NA>
## 3226 <NA> <NA>
## 3227 <NA> <NA>
## 3228 <NA> <NA>
## 3229 <NA> <NA>
## 3230 <NA> <NA>
## 3231 <NA> <NA>
## 3232 <NA> <NA>
## 3233 <NA> <NA>
## 3234 <NA> <NA>
## 3235 <NA> <NA>
## 3236 <NA> <NA>
## 3237 <NA> <NA>
## 3238 <NA> <NA>
## 3239 <NA> <NA>
## 3240 <NA> <NA>
## 3241 <NA> <NA>
## 3242 <NA> <NA>
## 3243 <NA> <NA>
## 3244 <NA> <NA>
## 3245 <NA> <NA>
## 3246 <NA> <NA>
## 3247 <NA> <NA>
## 3248 <NA> <NA>
## 3249 <NA> <NA>
## 3250 <NA> <NA>
## 3251 <NA> <NA>
## 3252 <NA> <NA>
## 3253 <NA> <NA>
## 3254 <NA> <NA>
## 3255 <NA> <NA>
## 3256 <NA> <NA>
## 3257 <NA> <NA>
## 3258 <NA> <NA>
## 3259 <NA> <NA>
## 3260 <NA> <NA>
## 3261 <NA> <NA>
## 3262 <NA> <NA>
## 3263 <NA> <NA>
## 3264 <NA> <NA>
## 3265 <NA> <NA>
## 3266 <NA> <NA>
## 3267 <NA> <NA>
## 3268 <NA> <NA>
## 3269 <NA> <NA>
## 3270 <NA> <NA>
## 3271 <NA> <NA>
## 3272 <NA> <NA>
## 3273 <NA> <NA>
## 3274 <NA> <NA>
## 3275 <NA> <NA>
## 3276 <NA> <NA>
## 3277 <NA> <NA>
## 3278 <NA> <NA>
## 3279 <NA> <NA>
## 3280 <NA> <NA>
## 3281 <NA> <NA>
## 3282 <NA> <NA>
## 3283 <NA> <NA>
## 3284 <NA> <NA>
## 3285 <NA> <NA>
## 3286 <NA> <NA>
## 3287 <NA> <NA>
## 3288 <NA> <NA>
## 3289 <NA> <NA>
## 3290 <NA> <NA>
## 3291 <NA> <NA>
## 3292 <NA> <NA>
## 3293 <NA> <NA>
## 3294 <NA> <NA>
## 3295 <NA> <NA>
## 3296 <NA> <NA>
## 3297 <NA> <NA>
## 3298 <NA> <NA>
## 3299 <NA> <NA>
## 3300 <NA> <NA>
## 3301 <NA> <NA>
## 3302 <NA> <NA>
## 3303 <NA> <NA>
## 3304 <NA> <NA>
## 3305 <NA> <NA>
## 3306 <NA> <NA>
## 3307 <NA> <NA>
## 3308 <NA> <NA>
## 3309 <NA> <NA>
## 3310 <NA> <NA>
## 3311 <NA> <NA>
## 3312 <NA> <NA>
## 3313 <NA> <NA>
## 3314 <NA> <NA>
## 3315 <NA> <NA>
## 3316 <NA> <NA>
## 3317 <NA> <NA>
## 3318 <NA> <NA>
## 3319 <NA> <NA>
## 3320 <NA> <NA>
## 3321 <NA> <NA>
## 3322 <NA> <NA>
## 3323 <NA> <NA>
## 3324 <NA> <NA>
## 3325 <NA> <NA>
## 3326 <NA> <NA>
## 3327 <NA> <NA>
## 3328 <NA> <NA>
## 3329 <NA> <NA>
## 3330 <NA> <NA>
## 3331 <NA> <NA>
## 3332 <NA> <NA>
## 3333 <NA> <NA>
## 3334 <NA> <NA>
## 3335 <NA> <NA>
## 3336 <NA> <NA>
## 3337 <NA> <NA>
## 3338 <NA> <NA>
## 3339 <NA> <NA>
## 3340 <NA> <NA>
## 3341 <NA> <NA>
## 3342 <NA> <NA>
## 3343 <NA> <NA>
## 3344 <NA> <NA>
## 3345 <NA> <NA>
## 3346 <NA> <NA>
## 3347 <NA> <NA>
## 3348 <NA> <NA>
## 3349 <NA> <NA>
## 3350 <NA> <NA>
## 3351 <NA> <NA>
## 3352 <NA> <NA>
## 3353 <NA> <NA>
## 3354 <NA> <NA>
## 3355 <NA> <NA>
## 3356 <NA> <NA>
## 3357 <NA> <NA>
## 3358 <NA> <NA>
## 3359 <NA> <NA>
## 3360 <NA> <NA>
## 3361 <NA> <NA>
## 3362 <NA> <NA>
## 3363 <NA> <NA>
## 3364 <NA> <NA>
## 3365 <NA> <NA>
## 3366 <NA> <NA>
## 3367 <NA> <NA>
## 3368 <NA> <NA>
## 3369 <NA> <NA>
## 3370 <NA> <NA>
## 3371 <NA> <NA>
## 3372 <NA> <NA>
## 3373 <NA> <NA>
## 3374 <NA> <NA>
## 3375 <NA> <NA>
## 3376 <NA> <NA>
## 3377 <NA> <NA>
## 3378 <NA> <NA>
## 3379 <NA> <NA>
## 3380 <NA> <NA>
## 3381 <NA> <NA>
## 3382 <NA> <NA>
## 3383 <NA> <NA>
## 3384 <NA> <NA>
## 3385 <NA> <NA>
## 3386 <NA> <NA>
## 3387 <NA> <NA>
## 3388 <NA> <NA>
## 3389 <NA> <NA>
## 3390 <NA> <NA>
## 3391 <NA> <NA>
## 3392 <NA> <NA>
## 3393 <NA> <NA>
## 3394 <NA> <NA>
## 3395 <NA> <NA>
## 3396 <NA> <NA>
## 3397 <NA> <NA>
## 3398 <NA> <NA>
## 3399 <NA> <NA>
## 3400 <NA> <NA>
## 3401 <NA> <NA>
## 3402 <NA> <NA>
## 3403 <NA> <NA>
## 3404 <NA> <NA>
## 3405 <NA> <NA>
## 3406 <NA> <NA>
## 3407 <NA> <NA>
## 3408 <NA> <NA>
## 3409 <NA> <NA>
## 3410 <NA> <NA>
## 3411 <NA> <NA>
## 3412 <NA> <NA>
## 3413 <NA> <NA>
## 3414 <NA> <NA>
## 3415 <NA> <NA>
## 3416 <NA> <NA>
## 3417 <NA> <NA>
## 3418 <NA> <NA>
## 3419 <NA> <NA>
## 3420 <NA> <NA>
## 3421 <NA> <NA>
## 3422 <NA> <NA>
## 3423 <NA> <NA>
## 3424 <NA> <NA>
## 3425 <NA> <NA>
## 3426 <NA> <NA>
## 3427 <NA> <NA>
## 3428 <NA> <NA>
## 3429 <NA> <NA>
## 3430 <NA> <NA>
## 3431 <NA> <NA>
## 3432 <NA> <NA>
## 3433 <NA> <NA>
## 3434 <NA> <NA>
## 3435 <NA> <NA>
## 3436 <NA> <NA>
## 3437 <NA> <NA>
## 3438 <NA> <NA>
## 3439 <NA> <NA>
## 3440 <NA> <NA>
## 3441 <NA> <NA>
## 3442 <NA> <NA>
## 3443 <NA> <NA>
## 3444 <NA> <NA>
## 3445 <NA> <NA>
## 3446 <NA> <NA>
## 3447 <NA> <NA>
## 3448 <NA> <NA>
## 3449 <NA> <NA>
## 3450 <NA> <NA>
## 3451 <NA> <NA>
## 3452 <NA> <NA>
## 3453 <NA> <NA>
## 3454 <NA> <NA>
## 3455 <NA> <NA>
## 3456 <NA> <NA>
## 3457 <NA> <NA>
## 3458 <NA> <NA>
## 3459 <NA> <NA>
## 3460 <NA> <NA>
## 3461 <NA> <NA>
## 3462 <NA> <NA>
## 3463 <NA> <NA>
## 3464 <NA> <NA>
## 3465 <NA> <NA>
## 3466 <NA> <NA>
## 3467 <NA> <NA>
## 3468 <NA> <NA>
## 3469 <NA> <NA>
## 3470 <NA> <NA>
## 3471 <NA> <NA>
## 3472 <NA> <NA>
## 3473 <NA> <NA>
## 3474 <NA> <NA>
## 3475 <NA> <NA>
## 3476 <NA> <NA>
## 3477 <NA> <NA>
## 3478 <NA> <NA>
## 3479 <NA> <NA>
## 3480 <NA> <NA>
## 3481 <NA> <NA>
## 3482 <NA> <NA>
## 3483 <NA> <NA>
## 3484 <NA> <NA>
## 3485 <NA> <NA>
## 3486 <NA> <NA>
## 3487 <NA> <NA>
## 3488 <NA> <NA>
## 3489 <NA> <NA>
## 3490 <NA> <NA>
## 3491 <NA> <NA>
## 3492 <NA> <NA>
## 3493 <NA> <NA>
## 3494 <NA> <NA>
## 3495 <NA> <NA>
## 3496 <NA> <NA>
## 3497 <NA> <NA>
## 3498 <NA> <NA>
## 3499 <NA> <NA>
## 3500 <NA> <NA>
## 3501 <NA> <NA>
## 3502 <NA> <NA>
## 3503 <NA> <NA>
## 3504 <NA> <NA>
## 3505 <NA> <NA>
## 3506 <NA> <NA>
## 3507 <NA> <NA>
## 3508 <NA> <NA>
## 3509 <NA> <NA>
## 3510 <NA> <NA>
## 3511 <NA> <NA>
## 3512 <NA> <NA>
## 3513 <NA> <NA>
## 3514 <NA> <NA>
## 3515 <NA> <NA>
## 3516 <NA> <NA>
## 3517 <NA> <NA>
## 3518 <NA> <NA>
## 3519 <NA> <NA>
## 3520 <NA> <NA>
## 3521 <NA> <NA>
## 3522 <NA> <NA>
## 3523 <NA> <NA>
## 3524 <NA> <NA>
## 3525 <NA> <NA>
## 3526 <NA> <NA>
## 3527 <NA> <NA>
## 3528 <NA> <NA>
## 3529 <NA> <NA>
## 3530 <NA> <NA>
## 3531 <NA> <NA>
## 3532 <NA> <NA>
## 3533 <NA> <NA>
## 3534 <NA> <NA>
## 3535 <NA> <NA>
## 3536 <NA> <NA>
## 3537 <NA> <NA>
## 3538 <NA> <NA>
## 3539 <NA> <NA>
## 3540 <NA> <NA>
## 3541 <NA> <NA>
## 3542 <NA> <NA>
## 3543 <NA> <NA>
## 3544 <NA> <NA>
## 3545 <NA> <NA>
## 3546 <NA> <NA>
## 3547 <NA> <NA>
## 3548 <NA> <NA>
## 3549 <NA> <NA>
## 3550 <NA> <NA>
## 3551 <NA> <NA>
## 3552 <NA> <NA>
## 3553 <NA> <NA>
## 3554 <NA> <NA>
## 3555 <NA> <NA>
## 3556 <NA> <NA>
## 3557 <NA> <NA>
## 3558 <NA> <NA>
## 3559 <NA> <NA>
## 3560 <NA> <NA>
## 3561 <NA> <NA>
## 3562 <NA> <NA>
## 3563 <NA> <NA>
## 3564 <NA> <NA>
## 3565 <NA> <NA>
## 3566 <NA> <NA>
## 3567 <NA> <NA>
## 3568 <NA> <NA>
## 3569 <NA> <NA>
## 3570 <NA> <NA>
## 3571 <NA> <NA>
## 3572 <NA> <NA>
## 3573 <NA> <NA>
## 3574 <NA> <NA>
## 3575 <NA> <NA>
## 3576 <NA> <NA>
## 3577 <NA> <NA>
## 3578 <NA> <NA>
## 3579 <NA> <NA>
## 3580 <NA> <NA>
## 3581 <NA> <NA>
## 3582 <NA> <NA>
## 3583 <NA> <NA>
## 3584 <NA> <NA>
## 3585 <NA> <NA>
## 3586 <NA> <NA>
## 3587 <NA> <NA>
## 3588 <NA> <NA>
## 3589 <NA> <NA>
## 3590 <NA> <NA>
## 3591 <NA> <NA>
## 3592 <NA> <NA>
## 3593 <NA> <NA>
## 3594 <NA> <NA>
## 3595 <NA> <NA>
## 3596 <NA> <NA>
## 3597 <NA> <NA>
## 3598 <NA> <NA>
## 3599 <NA> <NA>
## 3600 <NA> <NA>
## 3601 <NA> <NA>
## 3602 <NA> <NA>
## 3603 <NA> <NA>
## 3604 <NA> <NA>
## 3605 <NA> <NA>
## 3606 <NA> <NA>
## 3607 <NA> <NA>
## 3608 <NA> <NA>
## 3609 <NA> <NA>
## 3610 <NA> <NA>
## 3611 <NA> <NA>
## 3612 <NA> <NA>
## 3613 <NA> <NA>
## 3614 <NA> <NA>
## 3615 <NA> <NA>
## 3616 <NA> <NA>
## 3617 <NA> <NA>
## 3618 <NA> <NA>
## 3619 <NA> <NA>
## 3620 <NA> <NA>
## 3621 <NA> <NA>
## 3622 <NA> <NA>
## 3623 <NA> <NA>
## 3624 <NA> <NA>
## 3625 <NA> <NA>
## 3626 <NA> <NA>
## 3627 <NA> <NA>
## 3628 <NA> <NA>
## 3629 <NA> <NA>
## 3630 <NA> <NA>
## 3631 <NA> <NA>
## 3632 <NA> <NA>
## 3633 <NA> <NA>
## 3634 <NA> <NA>
## 3635 <NA> <NA>
## 3636 <NA> <NA>
## 3637 <NA> <NA>
## 3638 <NA> <NA>
## 3639 <NA> <NA>
## 3640 <NA> <NA>
## 3641 <NA> <NA>
## 3642 <NA> <NA>
## 3643 <NA> <NA>
## 3644 <NA> <NA>
## 3645 <NA> <NA>
## 3646 <NA> <NA>
## 3647 <NA> <NA>
## 3648 <NA> <NA>
## 3649 <NA> <NA>
## 3650 <NA> <NA>
## 3651 <NA> <NA>
## 3652 <NA> <NA>
## 3653 <NA> <NA>
## 3654 <NA> <NA>
## 3655 <NA> <NA>
## 3656 <NA> <NA>
## 3657 <NA> <NA>
## 3658 <NA> <NA>
## 3659 <NA> <NA>
## 3660 <NA> <NA>
## 3661 <NA> <NA>
## 3662 <NA> <NA>
## 3663 <NA> <NA>
## 3664 <NA> <NA>
## 3665 <NA> <NA>
## 3666 <NA> <NA>
## 3667 <NA> <NA>
## 3668 <NA> <NA>
## 3669 <NA> <NA>
## 3670 <NA> <NA>
## 3671 <NA> <NA>
## 3672 <NA> <NA>
## 3673 <NA> <NA>
## 3674 <NA> <NA>
## 3675 <NA> <NA>
## 3676 <NA> <NA>
## 3677 <NA> <NA>
## 3678 <NA> <NA>
## 3679 <NA> <NA>
## 3680 <NA> <NA>
## 3681 <NA> <NA>
## 3682 <NA> <NA>
## 3683 <NA> <NA>
## 3684 <NA> <NA>
## 3685 <NA> <NA>
## 3686 <NA> <NA>
## 3687 <NA> <NA>
## 3688 <NA> <NA>
## 3689 <NA> <NA>
## 3690 <NA> <NA>
## 3691 <NA> <NA>
## 3692 <NA> <NA>
## 3693 <NA> <NA>
## 3694 <NA> <NA>
## 3695 <NA> <NA>
## 3696 <NA> <NA>
## 3697 <NA> <NA>
## 3698 <NA> <NA>
## 3699 <NA> <NA>
## 3700 <NA> <NA>
## 3701 <NA> <NA>
## 3702 <NA> <NA>
## 3703 <NA> <NA>
## 3704 <NA> <NA>
## 3705 <NA> <NA>
## 3706 <NA> <NA>
## 3707 <NA> <NA>
## 3708 <NA> <NA>
## 3709 <NA> <NA>
## 3710 <NA> <NA>
## 3711 <NA> <NA>
## 3712 <NA> <NA>
## 3713 <NA> <NA>
## 3714 <NA> <NA>
## 3715 <NA> <NA>
## 3716 <NA> <NA>
## 3717 <NA> <NA>
## 3718 <NA> <NA>
## 3719 <NA> <NA>
## 3720 <NA> <NA>
## 3721 <NA> <NA>
## 3722 <NA> <NA>
## 3723 <NA> <NA>
## 3724 <NA> <NA>
## 3725 <NA> <NA>
## 3726 <NA> <NA>
## 3727 <NA> <NA>
## 3728 <NA> <NA>
## 3729 <NA> <NA>
## 3730 <NA> <NA>
## 3731 <NA> <NA>
## 3732 <NA> <NA>
## 3733 <NA> <NA>
## 3734 <NA> <NA>
## 3735 <NA> <NA>
## 3736 <NA> <NA>
## 3737 <NA> <NA>
## 3738 <NA> <NA>
## 3739 <NA> <NA>
## 3740 <NA> <NA>
## 3741 <NA> <NA>
## 3742 <NA> <NA>
## 3743 <NA> <NA>
## 3744 <NA> <NA>
## 3745 <NA> <NA>
## 3746 <NA> <NA>
## 3747 <NA> <NA>
## 3748 <NA> <NA>
## 3749 <NA> <NA>
## 3750 <NA> <NA>
## 3751 <NA> <NA>
## 3752 <NA> <NA>
## 3753 <NA> <NA>
## 3754 <NA> <NA>
## 3755 <NA> <NA>
## 3756 <NA> <NA>
## 3757 <NA> <NA>
## 3758 <NA> <NA>
## 3759 <NA> <NA>
## 3760 <NA> <NA>
## 3761 <NA> <NA>
## 3762 <NA> <NA>
## 3763 <NA> <NA>
## 3764 <NA> <NA>
## 3765 <NA> <NA>
## 3766 <NA> <NA>
## 3767 <NA> <NA>
## 3768 <NA> <NA>
## 3769 <NA> <NA>
## 3770 <NA> <NA>
## 3771 <NA> <NA>
## 3772 <NA> <NA>
## 3773 <NA> <NA>
## 3774 <NA> <NA>
## 3775 <NA> <NA>
## 3776 <NA> <NA>
## 3777 <NA> <NA>
## 3778 <NA> <NA>
## 3779 <NA> <NA>
## 3780 <NA> <NA>
## 3781 <NA> <NA>
## 3782 <NA> <NA>
## 3783 <NA> <NA>
## 3784 <NA> <NA>
## 3785 <NA> <NA>
## 3786 <NA> <NA>
## 3787 <NA> <NA>
## 3788 <NA> <NA>
## 3789 <NA> <NA>
## 3790 <NA> <NA>
## 3791 <NA> <NA>
## 3792 <NA> <NA>
## 3793 <NA> <NA>
## 3794 <NA> <NA>
## 3795 <NA> <NA>
## 3796 <NA> <NA>
## 3797 <NA> <NA>
## 3798 <NA> <NA>
## 3799 <NA> <NA>
## 3800 <NA> <NA>
## 3801 <NA> <NA>
## 3802 <NA> <NA>
## 3803 <NA> <NA>
## 3804 <NA> <NA>
## 3805 <NA> <NA>
## 3806 <NA> <NA>
## 3807 <NA> <NA>
## 3808 <NA> <NA>
## 3809 <NA> <NA>
## 3810 <NA> <NA>
## 3811 <NA> <NA>
## 3812 <NA> <NA>
## 3813 <NA> <NA>
## 3814 <NA> <NA>
## 3815 <NA> <NA>
## 3816 <NA> <NA>
## 3817 <NA> <NA>
## 3818 <NA> <NA>
## 3819 <NA> <NA>
## 3820 <NA> <NA>
## 3821 <NA> <NA>
## 3822 <NA> <NA>
## 3823 <NA> <NA>
## 3824 <NA> <NA>
## 3825 <NA> <NA>
## 3826 <NA> <NA>
## 3827 <NA> <NA>
## 3828 <NA> <NA>
## 3829 <NA> <NA>
## 3830 <NA> <NA>
## 3831 <NA> <NA>
## 3832 <NA> <NA>
## 3833 <NA> <NA>
## 3834 <NA> <NA>
## 3835 <NA> <NA>
## 3836 <NA> <NA>
## 3837 <NA> <NA>
## 3838 <NA> <NA>
## 3839 <NA> <NA>
## 3840 <NA> <NA>
## 3841 <NA> <NA>
## 3842 <NA> <NA>
## 3843 <NA> <NA>
## 3844 <NA> <NA>
## 3845 <NA> <NA>
## 3846 <NA> <NA>
## 3847 <NA> <NA>
## 3848 <NA> <NA>
## 3849 <NA> <NA>
## 3850 <NA> <NA>
## 3851 <NA> <NA>
## 3852 <NA> <NA>
## 3853 <NA> <NA>
## 3854 <NA> <NA>
## 3855 <NA> <NA>
## 3856 <NA> <NA>
## 3857 <NA> <NA>
## 3858 <NA> <NA>
## 3859 <NA> <NA>
## 3860 <NA> <NA>
## 3861 <NA> <NA>
## 3862 <NA> <NA>
## 3863 <NA> <NA>
## 3864 <NA> <NA>
## 3865 <NA> <NA>
## 3866 <NA> <NA>
## 3867 <NA> <NA>
## 3868 <NA> <NA>
## 3869 <NA> <NA>
## 3870 <NA> <NA>
## 3871 <NA> <NA>
## 3872 <NA> <NA>
## 3873 <NA> <NA>
## 3874 <NA> <NA>
## 3875 <NA> <NA>
## 3876 <NA> <NA>
## 3877 <NA> <NA>
## 3878 <NA> <NA>
## 3879 <NA> <NA>
## 3880 <NA> <NA>
## 3881 <NA> <NA>
## 3882 <NA> <NA>
## 3883 <NA> <NA>
## 3884 <NA> <NA>
## 3885 <NA> <NA>
## 3886 <NA> <NA>
## 3887 <NA> <NA>
## 3888 <NA> <NA>
## 3889 <NA> <NA>
## 3890 <NA> <NA>
## 3891 <NA> <NA>
## 3892 <NA> <NA>
## 3893 <NA> <NA>
## 3894 <NA> <NA>
## 3895 <NA> <NA>
## 3896 <NA> <NA>
## 3897 <NA> <NA>
## 3898 <NA> <NA>
## 3899 <NA> <NA>
## 3900 <NA> <NA>
## 3901 <NA> <NA>
## 3902 <NA> <NA>
## 3903 <NA> <NA>
## 3904 <NA> <NA>
## 3905 <NA> <NA>
## 3906 <NA> <NA>
## 3907 <NA> <NA>
## 3908 <NA> <NA>
## 3909 <NA> <NA>
## 3910 <NA> <NA>
## 3911 <NA> <NA>
## 3912 <NA> <NA>
## 3913 <NA> <NA>
## 3914 <NA> <NA>
## 3915 <NA> <NA>
## 3916 <NA> <NA>
## 3917 <NA> <NA>
## 3918 <NA> <NA>
## 3919 <NA> <NA>
## 3920 <NA> <NA>
## 3921 <NA> <NA>
## 3922 <NA> <NA>
## 3923 <NA> <NA>
## 3924 <NA> <NA>
## 3925 <NA> <NA>
## 3926 <NA> <NA>
## 3927 <NA> <NA>
## 3928 <NA> <NA>
## 3929 <NA> <NA>
## 3930 <NA> <NA>
## 3931 <NA> <NA>
## 3932 <NA> <NA>
## 3933 <NA> <NA>
## 3934 <NA> <NA>
## 3935 <NA> <NA>
## 3936 <NA> <NA>
## 3937 <NA> <NA>
## 3938 <NA> <NA>
## 3939 <NA> <NA>
## 3940 <NA> <NA>
## 3941 <NA> <NA>
## 3942 <NA> <NA>
## 3943 <NA> <NA>
## 3944 <NA> <NA>
## 3945 <NA> <NA>
## 3946 <NA> <NA>
## 3947 <NA> <NA>
## 3948 <NA> <NA>
## 3949 <NA> <NA>
## 3950 <NA> <NA>
## 3951 <NA> <NA>
## 3952 <NA> <NA>
## 3953 <NA> <NA>
## 3954 <NA> <NA>
## 3955 <NA> <NA>
## 3956 <NA> <NA>
## 3957 <NA> <NA>
## 3958 <NA> <NA>
## 3959 <NA> <NA>
## 3960 <NA> <NA>
## 3961 <NA> <NA>
## 3962 <NA> <NA>
## 3963 <NA> <NA>
## 3964 <NA> <NA>
## 3965 <NA> <NA>
## 3966 <NA> <NA>
## 3967 <NA> <NA>
## 3968 <NA> <NA>
## 3969 <NA> <NA>
## 3970 <NA> <NA>
## 3971 <NA> <NA>
## 3972 <NA> <NA>
## 3973 <NA> <NA>
## 3974 <NA> <NA>
## 3975 <NA> <NA>
## 3976 <NA> <NA>
## 3977 <NA> <NA>
## 3978 <NA> <NA>
## 3979 <NA> <NA>
## 3980 <NA> <NA>
## 3981 <NA> <NA>
## 3982 <NA> <NA>
## 3983 <NA> <NA>
## 3984 <NA> <NA>
## 3985 <NA> <NA>
## 3986 <NA> <NA>
## 3987 <NA> <NA>
## 3988 <NA> <NA>
## 3989 <NA> <NA>
## 3990 <NA> <NA>
## 3991 <NA> <NA>
## 3992 <NA> <NA>
## 3993 <NA> <NA>
## 3994 <NA> <NA>
## 3995 <NA> <NA>
## 3996 <NA> <NA>
## 3997 <NA> <NA>
## 3998 <NA> <NA>
## 3999 <NA> <NA>
## 4000 <NA> <NA>
## 4001 <NA> <NA>
## 4002 <NA> <NA>
## 4003 <NA> <NA>
## 4004 <NA> <NA>
## 4005 <NA> <NA>
## 4006 <NA> <NA>
## 4007 <NA> <NA>
## 4008 <NA> <NA>
## 4009 <NA> <NA>
## 4010 <NA> <NA>
## 4011 <NA> <NA>
## 4012 <NA> <NA>
## 4013 <NA> <NA>
## 4014 <NA> <NA>
## 4015 <NA> <NA>
## 4016 <NA> <NA>
## 4017 <NA> <NA>
## 4018 <NA> <NA>
## 4019 <NA> <NA>
## 4020 <NA> <NA>
## 4021 <NA> <NA>
## 4022 <NA> <NA>
## 4023 <NA> <NA>
## 4024 <NA> <NA>
## 4025 <NA> <NA>
## 4026 <NA> <NA>
## 4027 <NA> <NA>
## 4028 <NA> <NA>
## 4029 <NA> <NA>
## 4030 <NA> <NA>
## 4031 <NA> <NA>
## 4032 <NA> <NA>
## 4033 <NA> <NA>
## 4034 <NA> <NA>
## 4035 <NA> <NA>
## 4036 <NA> <NA>
## 4037 <NA> <NA>
## 4038 <NA> <NA>
## 4039 <NA> <NA>
## 4040 <NA> <NA>
## 4041 <NA> <NA>
## 4042 <NA> <NA>
## 4043 <NA> <NA>
## 4044 <NA> <NA>
## 4045 <NA> <NA>
## 4046 <NA> <NA>
## 4047 <NA> <NA>
## 4048 <NA> <NA>
## 4049 <NA> <NA>
## 4050 <NA> <NA>
## 4051 <NA> <NA>
## 4052 <NA> <NA>
## 4053 <NA> <NA>
## 4054 <NA> <NA>
## 4055 <NA> <NA>
## 4056 <NA> <NA>
## 4057 <NA> <NA>
## 4058 <NA> <NA>
## 4059 <NA> <NA>
## 4060 <NA> <NA>
## 4061 <NA> <NA>
## 4062 <NA> <NA>
## 4063 <NA> <NA>
## 4064 <NA> <NA>
## 4065 <NA> <NA>
## 4066 <NA> <NA>
## 4067 <NA> <NA>
## 4068 <NA> <NA>
## 4069 <NA> <NA>
## 4070 <NA> <NA>
## 4071 <NA> <NA>
## 4072 <NA> <NA>
## 4073 <NA> <NA>
## 4074 <NA> <NA>
## 4075 <NA> <NA>
## 4076 <NA> <NA>
## 4077 <NA> <NA>
## 4078 <NA> <NA>
## 4079 <NA> <NA>
## 4080 <NA> <NA>
## 4081 <NA> <NA>
## 4082 <NA> <NA>
## 4083 <NA> <NA>
## 4084 <NA> <NA>
## 4085 <NA> <NA>
## 4086 <NA> <NA>
## 4087 <NA> <NA>
## 4088 <NA> <NA>
## 4089 <NA> <NA>
## 4090 <NA> <NA>
## 4091 <NA> <NA>
## 4092 <NA> <NA>
## 4093 <NA> <NA>
## 4094 <NA> <NA>
## 4095 <NA> <NA>
## 4096 <NA> <NA>
## 4097 <NA> <NA>
## 4098 <NA> <NA>
## 4099 <NA> <NA>
## 4100 <NA> <NA>
## 4101 <NA> <NA>
## 4102 <NA> <NA>
## 4103 <NA> <NA>
## 4104 <NA> <NA>
## 4105 <NA> <NA>
## 4106 <NA> <NA>
## 4107 <NA> <NA>
## 4108 <NA> <NA>
## 4109 <NA> <NA>
## 4110 <NA> <NA>
## 4111 <NA> <NA>
## 4112 <NA> <NA>
## 4113 <NA> <NA>
## 4114 <NA> <NA>
## 4115 <NA> <NA>
## 4116 <NA> <NA>
## 4117 <NA> <NA>
## 4118 <NA> <NA>
## 4119 <NA> <NA>
## 4120 <NA> <NA>
## 4121 <NA> <NA>
## 4122 <NA> <NA>
## 4123 <NA> <NA>
## 4124 <NA> <NA>
## 4125 <NA> <NA>
## 4126 <NA> <NA>
## 4127 <NA> <NA>
## 4128 <NA> <NA>
## 4129 <NA> <NA>
## 4130 <NA> <NA>
## 4131 <NA> <NA>
## 4132 <NA> <NA>
## 4133 <NA> <NA>
## 4134 <NA> <NA>
## 4135 <NA> <NA>
## 4136 <NA> <NA>
## 4137 <NA> <NA>
## 4138 <NA> <NA>
## 4139 <NA> <NA>
## 4140 <NA> <NA>
## 4141 <NA> <NA>
## 4142 <NA> <NA>
## 4143 <NA> <NA>
## 4144 <NA> <NA>
## 4145 <NA> <NA>
## 4146 <NA> <NA>
## 4147 <NA> <NA>
## 4148 <NA> <NA>
## 4149 <NA> <NA>
## 4150 <NA> <NA>
## 4151 <NA> <NA>
## 4152 <NA> <NA>
## 4153 <NA> <NA>
## 4154 <NA> <NA>
## 4155 <NA> <NA>
## 4156 <NA> <NA>
## 4157 <NA> <NA>
## 4158 <NA> <NA>
## 4159 <NA> <NA>
## 4160 <NA> <NA>
## 4161 <NA> <NA>
## 4162 <NA> <NA>
## 4163 <NA> <NA>
## 4164 <NA> <NA>
## 4165 <NA> <NA>
## 4166 <NA> <NA>
## 4167 <NA> <NA>
## 4168 <NA> <NA>
## 4169 <NA> <NA>
## 4170 <NA> <NA>
## 4171 <NA> <NA>
## 4172 <NA> <NA>
## 4173 <NA> <NA>
## 4174 <NA> <NA>
## 4175 <NA> <NA>
## 4176 <NA> <NA>
## 4177 <NA> <NA>
## 4178 <NA> <NA>
## 4179 <NA> <NA>
## 4180 <NA> <NA>
## 4181 <NA> <NA>
## 4182 <NA> <NA>
## 4183 <NA> <NA>
## 4184 <NA> <NA>
## 4185 <NA> <NA>
## 4186 <NA> <NA>
## 4187 <NA> <NA>
## 4188 <NA> <NA>
## 4189 <NA> <NA>
## 4190 <NA> <NA>
## 4191 <NA> <NA>
## 4192 <NA> <NA>
## 4193 <NA> <NA>
## 4194 <NA> <NA>
## 4195 <NA> <NA>
## 4196 <NA> <NA>
## 4197 <NA> <NA>
## 4198 <NA> <NA>
## 4199 <NA> <NA>
## 4200 <NA> <NA>
## 4201 <NA> <NA>
## 4202 <NA> <NA>
## 4203 <NA> <NA>
## 4204 <NA> <NA>
## 4205 <NA> <NA>
## 4206 <NA> <NA>
## 4207 <NA> <NA>
## 4208 <NA> <NA>
## 4209 <NA> <NA>
## 4210 <NA> <NA>
## 4211 <NA> <NA>
## 4212 <NA> <NA>
## 4213 <NA> <NA>
## 4214 <NA> <NA>
## 4215 <NA> <NA>
## 4216 <NA> <NA>
## 4217 <NA> <NA>
## 4218 <NA> <NA>
## 4219 <NA> <NA>
## 4220 <NA> <NA>
## 4221 <NA> <NA>
## 4222 <NA> <NA>
## 4223 <NA> <NA>
## 4224 <NA> <NA>
## 4225 <NA> <NA>
## 4226 <NA> <NA>
## 4227 <NA> <NA>
## 4228 <NA> <NA>
## 4229 <NA> <NA>
## 4230 <NA> <NA>
## 4231 <NA> <NA>
## 4232 <NA> <NA>
## 4233 <NA> <NA>
## 4234 <NA> <NA>
## 4235 <NA> <NA>
## 4236 <NA> <NA>
## 4237 <NA> <NA>
## 4238 <NA> <NA>
## 4239 <NA> <NA>
## 4240 <NA> <NA>
## 4241 <NA> <NA>
## 4242 <NA> <NA>
## 4243 <NA> <NA>
## 4244 <NA> <NA>
## 4245 <NA> <NA>
## 4246 <NA> <NA>
## 4247 <NA> <NA>
## 4248 <NA> <NA>
## 4249 <NA> <NA>
## 4250 <NA> <NA>
## 4251 <NA> <NA>
## 4252 <NA> <NA>
## 4253 <NA> <NA>
## 4254 <NA> <NA>
## 4255 <NA> <NA>
## 4256 <NA> <NA>
## 4257 <NA> <NA>
## 4258 <NA> <NA>
## 4259 <NA> <NA>
## 4260 <NA> <NA>
## 4261 <NA> <NA>
## 4262 <NA> <NA>
## 4263 <NA> <NA>
## 4264 <NA> <NA>
## 4265 <NA> <NA>
## 4266 <NA> <NA>
## 4267 <NA> <NA>
## 4268 <NA> <NA>
## 4269 <NA> <NA>
## 4270 <NA> <NA>
## 4271 <NA> <NA>
## 4272 <NA> <NA>
## 4273 <NA> <NA>
## 4274 <NA> <NA>
## 4275 <NA> <NA>
## 4276 <NA> <NA>
## 4277 <NA> <NA>
## 4278 <NA> <NA>
## 4279 <NA> <NA>
## 4280 <NA> <NA>
## 4281 <NA> <NA>
## 4282 <NA> <NA>
## 4283 <NA> <NA>
## 4284 <NA> <NA>
## 4285 <NA> <NA>
## 4286 <NA> <NA>
## 4287 <NA> <NA>
## 4288 <NA> <NA>
## 4289 <NA> <NA>
## 4290 <NA> <NA>
## 4291 <NA> <NA>
## 4292 <NA> <NA>
## 4293 <NA> <NA>
## 4294 <NA> <NA>
## 4295 <NA> <NA>
## 4296 <NA> <NA>
## 4297 <NA> <NA>
## 4298 <NA> <NA>
## 4299 <NA> <NA>
## 4300 <NA> <NA>
## 4301 <NA> <NA>
## 4302 <NA> <NA>
## 4303 <NA> <NA>
## 4304 <NA> <NA>
## 4305 <NA> <NA>
## 4306 <NA> <NA>
## 4307 <NA> <NA>
## 4308 <NA> <NA>
## 4309 <NA> <NA>
## 4310 <NA> <NA>
## 4311 <NA> <NA>
## 4312 <NA> <NA>
## 4313 <NA> <NA>
## 4314 <NA> <NA>
## 4315 <NA> <NA>
## 4316 <NA> <NA>
## 4317 <NA> <NA>
## 4318 <NA> <NA>
## 4319 <NA> <NA>
## 4320 <NA> <NA>
## 4321 <NA> <NA>
## 4322 <NA> <NA>
## 4323 <NA> <NA>
## 4324 <NA> <NA>
## 4325 <NA> <NA>
## 4326 <NA> <NA>
## 4327 <NA> <NA>
## 4328 <NA> <NA>
## 4329 <NA> <NA>
## 4330 <NA> <NA>
## 4331 <NA> <NA>
## 4332 <NA> <NA>
## 4333 <NA> <NA>
## 4334 <NA> <NA>
## 4335 <NA> <NA>
## 4336 <NA> <NA>
## 4337 <NA> <NA>
## 4338 <NA> <NA>
## 4339 <NA> <NA>
## 4340 <NA> <NA>
## 4341 <NA> <NA>
## 4342 <NA> <NA>
## 4343 <NA> <NA>
## 4344 <NA> <NA>
## 4345 <NA> <NA>
## 4346 <NA> <NA>
## 4347 <NA> <NA>
## 4348 <NA> <NA>
## 4349 <NA> <NA>
## 4350 <NA> <NA>
## 4351 <NA> <NA>
## 4352 <NA> <NA>
## 4353 <NA> <NA>
## 4354 <NA> <NA>
## 4355 <NA> <NA>
## 4356 <NA> <NA>
## 4357 <NA> <NA>
## 4358 <NA> <NA>
## 4359 <NA> <NA>
## 4360 <NA> <NA>
## 4361 <NA> <NA>
## 4362 <NA> <NA>
## 4363 <NA> <NA>
## 4364 <NA> <NA>
## 4365 <NA> <NA>
## 4366 <NA> <NA>
## 4367 <NA> <NA>
## 4368 <NA> <NA>
## 4369 <NA> <NA>
## 4370 <NA> <NA>
## 4371 <NA> <NA>
## 4372 <NA> <NA>
## 4373 <NA> <NA>
## 4374 <NA> <NA>
## 4375 <NA> <NA>
## 4376 <NA> <NA>
## 4377 <NA> <NA>
## 4378 <NA> <NA>
## 4379 <NA> <NA>
## 4380 <NA> <NA>
## 4381 <NA> <NA>
## 4382 <NA> <NA>
## 4383 <NA> <NA>
## 4384 <NA> <NA>
## 4385 <NA> <NA>
## 4386 <NA> <NA>
## 4387 <NA> <NA>
## 4388 <NA> <NA>
## 4389 <NA> <NA>
## 4390 <NA> <NA>
## 4391 <NA> <NA>
## 4392 <NA> <NA>
## 4393 <NA> <NA>
## 4394 <NA> <NA>
## 4395 <NA> <NA>
## 4396 <NA> <NA>
## 4397 <NA> <NA>
## 4398 <NA> <NA>
## 4399 <NA> <NA>
## 4400 <NA> <NA>
## 4401 <NA> <NA>
## 4402 <NA> <NA>
## 4403 <NA> <NA>
## 4404 <NA> <NA>
## 4405 <NA> <NA>
## 4406 <NA> <NA>
## 4407 <NA> <NA>
## 4408 <NA> <NA>
## 4409 <NA> <NA>
## 4410 <NA> <NA>
## 4411 <NA> <NA>
## 4412 <NA> <NA>
## 4413 <NA> <NA>
## 4414 <NA> <NA>
## 4415 <NA> <NA>
## 4416 <NA> <NA>
## 4417 <NA> <NA>
## 4418 <NA> <NA>
## 4419 <NA> <NA>
## 4420 <NA> <NA>
## 4421 <NA> <NA>
## 4422 <NA> <NA>
## 4423 <NA> <NA>
## 4424 <NA> <NA>
## 4425 <NA> <NA>
## 4426 <NA> <NA>
## 4427 <NA> <NA>
## 4428 <NA> <NA>
## 4429 <NA> <NA>
## 4430 <NA> <NA>
## 4431 <NA> <NA>
## 4432 <NA> <NA>
## 4433 <NA> <NA>
## 4434 <NA> <NA>
## 4435 <NA> <NA>
## 4436 <NA> <NA>
## 4437 <NA> <NA>
## 4438 <NA> <NA>
## 4439 <NA> <NA>
## 4440 <NA> <NA>
## 4441 <NA> <NA>
## 4442 <NA> <NA>
## 4443 <NA> <NA>
## 4444 <NA> <NA>
## 4445 <NA> <NA>
## 4446 <NA> <NA>
## 4447 <NA> <NA>
## 4448 <NA> <NA>
## 4449 <NA> <NA>
## 4450 <NA> <NA>
## 4451 <NA> <NA>
## 4452 <NA> <NA>
## 4453 <NA> <NA>
## 4454 <NA> <NA>
## 4455 <NA> <NA>
## 4456 <NA> <NA>
## 4457 <NA> <NA>
## 4458 <NA> <NA>
## 4459 <NA> <NA>
## 4460 <NA> <NA>
## 4461 <NA> <NA>
## 4462 <NA> <NA>
## 4463 <NA> <NA>
## 4464 <NA> <NA>
## 4465 <NA> <NA>
## 4466 <NA> <NA>
## 4467 <NA> <NA>
## 4468 <NA> <NA>
## 4469 <NA> <NA>
## 4470 <NA> <NA>
## 4471 <NA> <NA>
## 4472 <NA> <NA>
## 4473 <NA> <NA>
## 4474 <NA> <NA>
## 4475 <NA> <NA>
## 4476 <NA> <NA>
## 4477 <NA> <NA>
## 4478 <NA> <NA>
## 4479 <NA> <NA>
## 4480 <NA> <NA>
## 4481 <NA> <NA>
## 4482 <NA> <NA>
## 4483 <NA> <NA>
## 4484 <NA> <NA>
## 4485 <NA> <NA>
## 4486 <NA> <NA>
## 4487 <NA> <NA>
## 4488 <NA> <NA>
## 4489 <NA> <NA>
## 4490 <NA> <NA>
## 4491 <NA> <NA>
## 4492 <NA> <NA>
## 4493 <NA> <NA>
## 4494 <NA> <NA>
## 4495 <NA> <NA>
## 4496 <NA> <NA>
## 4497 <NA> <NA>
## 4498 <NA> <NA>
## 4499 <NA> <NA>
## 4500 <NA> <NA>
## 4501 <NA> <NA>
## 4502 <NA> <NA>
## 4503 <NA> <NA>
## 4504 <NA> <NA>
## 4505 <NA> <NA>
## 4506 <NA> <NA>
## 4507 <NA> <NA>
## 4508 <NA> <NA>
## 4509 <NA> <NA>
## 4510 <NA> <NA>
## 4511 <NA> <NA>
## 4512 <NA> <NA>
## 4513 <NA> <NA>
## 4514 <NA> <NA>
## 4515 <NA> <NA>
## 4516 <NA> <NA>
## 4517 <NA> <NA>
## 4518 <NA> <NA>
## 4519 <NA> <NA>
## 4520 <NA> <NA>
## 4521 <NA> <NA>
## 4522 <NA> <NA>
## 4523 <NA> <NA>
## 4524 <NA> <NA>
## 4525 <NA> <NA>
## 4526 <NA> <NA>
## 4527 <NA> <NA>
## 4528 <NA> <NA>
## 4529 <NA> <NA>
## 4530 <NA> <NA>
## 4531 <NA> <NA>
## 4532 <NA> <NA>
## 4533 <NA> <NA>
## 4534 <NA> <NA>
## 4535 <NA> <NA>
## 4536 <NA> <NA>
## 4537 <NA> <NA>
## 4538 <NA> <NA>
## 4539 <NA> <NA>
## 4540 <NA> <NA>
## 4541 <NA> <NA>
## 4542 <NA> <NA>
## 4543 <NA> <NA>
## 4544 <NA> <NA>
## 4545 <NA> <NA>
## 4546 <NA> <NA>
## 4547 <NA> <NA>
## 4548 <NA> <NA>
## 4549 <NA> <NA>
## 4550 <NA> <NA>
## 4551 <NA> <NA>
## 4552 <NA> <NA>
## 4553 <NA> <NA>
## 4554 <NA> <NA>
## 4555 <NA> <NA>
## 4556 <NA> <NA>
## 4557 <NA> <NA>
## 4558 <NA> <NA>
## 4559 <NA> <NA>
## 4560 <NA> <NA>
## 4561 <NA> <NA>
## 4562 <NA> <NA>
## 4563 <NA> <NA>
## 4564 <NA> <NA>
## 4565 <NA> <NA>
## 4566 <NA> <NA>
## 4567 <NA> <NA>
## 4568 <NA> <NA>
## 4569 <NA> <NA>
## 4570 <NA> <NA>
## 4571 <NA> <NA>
## 4572 <NA> <NA>
## 4573 <NA> <NA>
## 4574 <NA> <NA>
## 4575 <NA> <NA>
## 4576 <NA> <NA>
## 4577 <NA> <NA>
## 4578 <NA> <NA>
## 4579 <NA> <NA>
## 4580 <NA> <NA>
## 4581 <NA> <NA>
## 4582 <NA> <NA>
## 4583 <NA> <NA>
## 4584 <NA> <NA>
## 4585 <NA> <NA>
## 4586 <NA> <NA>
## 4587 <NA> <NA>
## 4588 <NA> <NA>
## 4589 <NA> <NA>
## 4590 <NA> <NA>
## 4591 <NA> <NA>
## 4592 <NA> <NA>
## 4593 <NA> <NA>
## 4594 <NA> <NA>
## 4595 <NA> <NA>
## 4596 <NA> <NA>
## 4597 <NA> <NA>
## 4598 <NA> <NA>
## 4599 <NA> <NA>
## 4600 <NA> <NA>
## 4601 <NA> <NA>
## 4602 <NA> <NA>
## 4603 <NA> <NA>
## 4604 <NA> <NA>
## 4605 <NA> <NA>
## 4606 <NA> <NA>
## 4607 <NA> <NA>
## 4608 <NA> <NA>
## 4609 <NA> <NA>
## 4610 <NA> <NA>
## 4611 <NA> <NA>
## 4612 <NA> <NA>
## 4613 <NA> <NA>
## 4614 <NA> <NA>
## 4615 <NA> <NA>
## 4616 <NA> <NA>
## 4617 <NA> <NA>
## 4618 <NA> <NA>
## 4619 <NA> <NA>
## 4620 <NA> <NA>
## 4621 <NA> <NA>
## 4622 <NA> <NA>
## 4623 <NA> <NA>
## 4624 <NA> <NA>
## 4625 <NA> <NA>
## 4626 <NA> <NA>
## 4627 <NA> <NA>
## 4628 <NA> <NA>
## 4629 <NA> <NA>
## 4630 <NA> <NA>
## 4631 <NA> <NA>
## 4632 <NA> <NA>
## 4633 <NA> <NA>
## 4634 <NA> <NA>
## 4635 <NA> <NA>
## 4636 <NA> <NA>
## 4637 <NA> <NA>
## 4638 <NA> <NA>
## 4639 <NA> <NA>
## 4640 <NA> <NA>
## 4641 <NA> <NA>
## 4642 <NA> <NA>
## 4643 <NA> <NA>
## 4644 <NA> <NA>
## 4645 <NA> <NA>
## 4646 <NA> <NA>
## 4647 <NA> <NA>
## 4648 <NA> <NA>
## 4649 <NA> <NA>
## 4650 <NA> <NA>
## 4651 <NA> <NA>
## 4652 <NA> <NA>
## 4653 <NA> <NA>
## 4654 <NA> <NA>
## 4655 <NA> <NA>
## 4656 <NA> <NA>
## 4657 <NA> <NA>
## 4658 <NA> <NA>
## 4659 <NA> <NA>
## 4660 <NA> <NA>
## 4661 <NA> <NA>
## 4662 <NA> <NA>
## 4663 <NA> <NA>
## 4664 <NA> <NA>
## 4665 <NA> <NA>
## 4666 <NA> <NA>
## 4667 <NA> <NA>
## 4668 <NA> <NA>
## 4669 <NA> <NA>
## 4670 <NA> <NA>
## 4671 <NA> <NA>
## 4672 <NA> <NA>
## 4673 <NA> <NA>
## 4674 <NA> <NA>
## 4675 <NA> <NA>
## 4676 <NA> <NA>
## 4677 <NA> <NA>
## 4678 <NA> <NA>
## 4679 <NA> <NA>
## 4680 <NA> <NA>
## 4681 <NA> <NA>
## 4682 <NA> <NA>
## 4683 <NA> <NA>
## 4684 <NA> <NA>
## 4685 <NA> <NA>
## 4686 <NA> <NA>
## 4687 <NA> <NA>
## 4688 <NA> <NA>
## 4689 <NA> <NA>
## 4690 <NA> <NA>
## 4691 <NA> <NA>
## 4692 <NA> <NA>
## 4693 <NA> <NA>
## 4694 <NA> <NA>
## 4695 <NA> <NA>
## 4696 <NA> <NA>
## 4697 <NA> <NA>
## 4698 <NA> <NA>
## 4699 <NA> <NA>
## 4700 <NA> <NA>
## 4701 <NA> <NA>
## 4702 <NA> <NA>
## 4703 <NA> <NA>
## 4704 <NA> <NA>
## 4705 <NA> <NA>
## 4706 <NA> <NA>
## 4707 <NA> <NA>
## 4708 <NA> <NA>
## 4709 <NA> <NA>
## 4710 <NA> <NA>
## 4711 <NA> <NA>
## 4712 <NA> <NA>
## 4713 <NA> <NA>
## 4714 <NA> <NA>
## 4715 <NA> <NA>
## 4716 <NA> <NA>
## 4717 <NA> <NA>
## 4718 <NA> <NA>
## 4719 <NA> <NA>
## 4720 <NA> <NA>
## 4721 <NA> <NA>
## 4722 <NA> <NA>
## 4723 <NA> <NA>
## 4724 <NA> <NA>
## 4725 <NA> <NA>
## 4726 <NA> <NA>
## 4727 <NA> <NA>
## 4728 <NA> <NA>
## 4729 <NA> <NA>
## 4730 <NA> <NA>
## 4731 <NA> <NA>
## 4732 <NA> <NA>
## 4733 <NA> <NA>
## 4734 <NA> <NA>
## 4735 <NA> <NA>
## 4736 <NA> <NA>
## 4737 <NA> <NA>
## 4738 <NA> <NA>
## 4739 <NA> <NA>
## 4740 <NA> <NA>
## 4741 <NA> <NA>
## 4742 <NA> <NA>
## 4743 <NA> <NA>
## 4744 <NA> <NA>
## 4745 <NA> <NA>
## 4746 <NA> <NA>
## 4747 <NA> <NA>
## 4748 <NA> <NA>
## 4749 <NA> <NA>
## 4750 <NA> <NA>
## 4751 <NA> <NA>
## 4752 <NA> <NA>
## 4753 <NA> <NA>
## 4754 <NA> <NA>
## 4755 <NA> <NA>
## 4756 <NA> <NA>
## 4757 <NA> <NA>
## 4758 <NA> <NA>
## 4759 <NA> <NA>
## 4760 <NA> <NA>
## 4761 <NA> <NA>
## 4762 <NA> <NA>
## 4763 <NA> <NA>
## 4764 <NA> <NA>
## 4765 <NA> <NA>
## 4766 <NA> <NA>
## 4767 <NA> <NA>
## 4768 <NA> <NA>
## 4769 <NA> <NA>
## 4770 <NA> <NA>
## 4771 <NA> <NA>
## 4772 <NA> <NA>
## 4773 <NA> <NA>
## 4774 <NA> <NA>
## 4775 <NA> <NA>
## 4776 <NA> <NA>
## 4777 <NA> <NA>
## 4778 <NA> <NA>
## 4779 <NA> <NA>
## 4780 <NA> <NA>
## 4781 <NA> <NA>
## 4782 <NA> <NA>
## 4783 <NA> <NA>
## 4784 <NA> <NA>
## 4785 <NA> <NA>
## 4786 <NA> <NA>
## 4787 <NA> <NA>
## 4788 <NA> <NA>
## 4789 <NA> <NA>
## 4790 <NA> <NA>
## 4791 <NA> <NA>
## 4792 <NA> <NA>
## 4793 <NA> <NA>
## 4794 <NA> <NA>
## 4795 <NA> <NA>
## 4796 <NA> <NA>
## 4797 <NA> <NA>
## 4798 <NA> <NA>
## 4799 <NA> <NA>
## 4800 <NA> <NA>
## 4801 <NA> <NA>
## 4802 <NA> <NA>
## 4803 <NA> <NA>
## 4804 <NA> <NA>
## 4805 <NA> <NA>
## 4806 <NA> <NA>
## 4807 <NA> <NA>
## 4808 <NA> <NA>
## 4809 <NA> <NA>
## 4810 <NA> <NA>
## 4811 <NA> <NA>
## 4812 <NA> <NA>
## 4813 <NA> <NA>
## 4814 <NA> <NA>
## 4815 <NA> <NA>
## 4816 <NA> <NA>
## 4817 <NA> <NA>
## 4818 <NA> <NA>
## 4819 <NA> <NA>
## 4820 <NA> <NA>
## 4821 <NA> <NA>
## 4822 <NA> <NA>
## 4823 <NA> <NA>
## 4824 <NA> <NA>
## 4825 <NA> <NA>
## 4826 <NA> <NA>
## 4827 <NA> <NA>
## 4828 <NA> <NA>
## 4829 <NA> <NA>
## 4830 <NA> <NA>
## 4831 <NA> <NA>
## 4832 <NA> <NA>
## 4833 <NA> <NA>
## 4834 <NA> <NA>
## 4835 <NA> <NA>
## 4836 <NA> <NA>
## 4837 <NA> <NA>
## 4838 <NA> <NA>
## 4839 <NA> <NA>
## 4840 <NA> <NA>
## 4841 <NA> <NA>
## 4842 <NA> <NA>
## 4843 <NA> <NA>
## 4844 <NA> <NA>
## 4845 <NA> <NA>
## 4846 <NA> <NA>
## 4847 <NA> <NA>
## 4848 <NA> <NA>
## 4849 <NA> <NA>
## 4850 <NA> <NA>
## 4851 <NA> <NA>
## 4852 <NA> <NA>
## 4853 <NA> <NA>
## 4854 <NA> <NA>
## 4855 <NA> <NA>
## 4856 <NA> <NA>
## 4857 <NA> <NA>
## 4858 <NA> <NA>
## 4859 <NA> <NA>
## 4860 <NA> <NA>
## 4861 <NA> <NA>
## 4862 <NA> <NA>
## 4863 <NA> <NA>
## 4864 <NA> <NA>
## 4865 <NA> <NA>
## 4866 <NA> <NA>
## 4867 <NA> <NA>
## 4868 <NA> <NA>
## 4869 <NA> <NA>
## 4870 <NA> <NA>
## 4871 <NA> <NA>
## 4872 <NA> <NA>
## 4873 <NA> <NA>
## 4874 <NA> <NA>
## 4875 <NA> <NA>
## 4876 <NA> <NA>
## 4877 <NA> <NA>
## 4878 <NA> <NA>
## 4879 <NA> <NA>
## 4880 <NA> <NA>
## 4881 <NA> <NA>
## 4882 <NA> <NA>
## 4883 <NA> <NA>
## 4884 <NA> <NA>
## 4885 <NA> <NA>
## 4886 <NA> <NA>
## 4887 <NA> <NA>
## 4888 <NA> <NA>
## 4889 <NA> <NA>
## 4890 <NA> <NA>
## 4891 <NA> <NA>
## 4892 <NA> <NA>
## 4893 <NA> <NA>
## 4894 <NA> <NA>
## 4895 <NA> <NA>
## 4896 <NA> <NA>
## 4897 <NA> <NA>
## 4898 <NA> <NA>
## 4899 <NA> <NA>
## 4900 <NA> <NA>
## 4901 <NA> <NA>
## 4902 <NA> <NA>
## 4903 <NA> <NA>
## 4904 <NA> <NA>
## 4905 <NA> <NA>
## 4906 <NA> <NA>
## 4907 <NA> <NA>
## 4908 <NA> <NA>
## 4909 <NA> <NA>
## 4910 <NA> <NA>
## 4911 <NA> <NA>
## 4912 <NA> <NA>
## 4913 <NA> <NA>
## 4914 <NA> <NA>
## 4915 <NA> <NA>
## 4916 <NA> <NA>
## 4917 <NA> <NA>
## 4918 <NA> <NA>
## 4919 <NA> <NA>
## 4920 <NA> <NA>
## 4921 <NA> <NA>
## 4922 <NA> <NA>
## 4923 <NA> <NA>
## 4924 <NA> <NA>
## 4925 <NA> <NA>
## 4926 <NA> <NA>
## 4927 <NA> <NA>
## 4928 <NA> <NA>
## 4929 <NA> <NA>
## 4930 <NA> <NA>
## 4931 <NA> <NA>
## 4932 <NA> <NA>
## 4933 <NA> <NA>
## 4934 <NA> <NA>
## 4935 <NA> <NA>
## 4936 <NA> <NA>
## 4937 <NA> <NA>
## 4938 <NA> <NA>
## 4939 <NA> <NA>
## 4940 <NA> <NA>
## 4941 <NA> <NA>
## 4942 <NA> <NA>
## 4943 <NA> <NA>
## 4944 <NA> <NA>
## 4945 <NA> <NA>
## 4946 <NA> <NA>
## 4947 <NA> <NA>
## 4948 <NA> <NA>
## 4949 <NA> <NA>
## 4950 <NA> <NA>
## 4951 <NA> <NA>
## 4952 <NA> <NA>
## 4953 <NA> <NA>
## 4954 <NA> <NA>
## 4955 <NA> <NA>
## 4956 <NA> <NA>
## 4957 <NA> <NA>
## 4958 <NA> <NA>
## 4959 <NA> <NA>
## 4960 <NA> <NA>
## 4961 <NA> <NA>
## 4962 <NA> <NA>
## 4963 <NA> <NA>
## 4964 <NA> <NA>
## 4965 <NA> <NA>
## 4966 <NA> <NA>
## 4967 <NA> <NA>
## 4968 <NA> <NA>
## 4969 <NA> <NA>
## 4970 <NA> <NA>
## 4971 <NA> <NA>
## 4972 <NA> <NA>
## 4973 <NA> <NA>
## 4974 <NA> <NA>
## 4975 <NA> <NA>
## 4976 <NA> <NA>
## 4977 <NA> <NA>
## 4978 <NA> <NA>
## 4979 <NA> <NA>
## 4980 <NA> <NA>
## 4981 <NA> <NA>
## 4982 <NA> <NA>
## 4983 <NA> <NA>
## 4984 <NA> <NA>
## 4985 <NA> <NA>
## 4986 <NA> <NA>
## 4987 <NA> <NA>
## 4988 <NA> <NA>
## 4989 <NA> <NA>
## 4990 <NA> <NA>
## 4991 <NA> <NA>
## 4992 <NA> <NA>
## 4993 <NA> <NA>
## 4994 <NA> <NA>
## 4995 <NA> <NA>
## 4996 <NA> <NA>
## 4997 <NA> <NA>
## 4998 <NA> <NA>
## 4999 <NA> <NA>
## edctn uempla uempli rtrd wrkctra
## 1 Not marked Not marked Not marked Not marked Unlimited
## 2 Not marked Not marked Not marked Not marked No contract
## 3 Not marked Not marked Not marked Marked Unlimited
## 4 Not marked Not marked Not marked Not marked Unlimited
## 5 Not marked Not marked Not marked Marked <NA>
## 6 Not marked Not marked Not marked Not marked Unlimited
## 7 Not marked Not marked Not marked Not marked Unlimited
## 8 Not marked Not marked Not marked Not marked Unlimited
## 9 Not marked Not marked Not marked Not marked Unlimited
## 10 Not marked Not marked Not marked Not marked Unlimited
## 11 Not marked Not marked Not marked Not marked Unlimited
## 12 Not marked Not marked Not marked Not marked Unlimited
## 13 Not marked Not marked Not marked Not marked No contract
## 14 Not marked Not marked Not marked Marked Unlimited
## 15 Not marked Not marked Not marked Not marked Unlimited
## 16 Not marked Not marked Not marked Not marked Unlimited
## 17 Not marked Not marked Not marked Marked Unlimited
## 18 Not marked Not marked Not marked Not marked Unlimited
## 19 Not marked Not marked Not marked Not marked No contract
## 20 Not marked Marked Not marked Not marked Unlimited
## 21 Not marked Not marked Not marked Not marked Unlimited
## 22 Not marked Not marked Not marked Not marked Unlimited
## 23 Not marked Not marked Not marked Not marked Unlimited
## 24 Not marked Not marked Not marked Not marked Unlimited
## 25 Not marked Not marked Not marked Marked Unlimited
## 26 Not marked Not marked Not marked Not marked Limited
## 27 Not marked Not marked Not marked Not marked Unlimited
## 28 Not marked Not marked Not marked Marked Unlimited
## 29 Not marked Not marked Not marked Marked Unlimited
## 30 Not marked Not marked Not marked Not marked No contract
## 31 Not marked Not marked Not marked Marked Unlimited
## 32 Not marked Not marked Not marked Not marked Unlimited
## 33 Not marked Not marked Not marked Not marked No contract
## 34 Not marked Not marked Not marked Marked Unlimited
## 35 Not marked Not marked Not marked Not marked Limited
## 36 Marked Not marked Not marked Not marked <NA>
## 37 Not marked Not marked Not marked Marked Unlimited
## 38 Not marked Not marked Not marked Not marked Unlimited
## 39 Not marked Not marked Not marked Not marked <NA>
## 40 Not marked Not marked Not marked Not marked Unlimited
## 41 Not marked Not marked Not marked Not marked <NA>
## 42 Not marked Not marked Not marked Not marked Unlimited
## 43 Not marked Not marked Not marked Not marked Unlimited
## 44 Not marked Not marked Not marked Not marked Unlimited
## 45 Not marked Not marked Not marked Not marked Unlimited
## 46 Not marked Not marked Not marked Not marked Unlimited
## 47 Not marked Not marked Not marked Not marked Unlimited
## 48 Not marked Not marked Not marked Not marked No contract
## 49 Not marked Not marked Not marked Not marked Unlimited
## 50 Not marked Not marked Not marked Not marked Unlimited
## 51 Not marked Not marked Not marked Not marked No contract
## 52 Marked Marked Not marked Not marked <NA>
## 53 Not marked Not marked Not marked Marked No contract
## 54 Not marked Not marked Not marked Not marked Unlimited
## 55 Not marked Not marked Not marked Not marked Unlimited
## 56 Marked Not marked Not marked Not marked <NA>
## 57 Not marked Not marked Not marked Marked Unlimited
## 58 Not marked Not marked Not marked Not marked No contract
## 59 Not marked Not marked Not marked Not marked Unlimited
## 60 Not marked Not marked Not marked Not marked Unlimited
## 61 Not marked Not marked Not marked Marked Unlimited
## 62 Not marked Not marked Not marked Marked <NA>
## 63 Not marked Not marked Not marked Marked Unlimited
## 64 Not marked Not marked Not marked Not marked Unlimited
## 65 Not marked Not marked Not marked Marked Unlimited
## 66 Not marked Not marked Not marked Not marked Unlimited
## 67 Not marked Not marked Not marked Not marked Unlimited
## 68 Not marked Not marked Not marked Not marked Unlimited
## 69 Not marked Not marked Not marked Not marked Limited
## 70 Not marked Not marked Not marked Marked Unlimited
## 71 Not marked Not marked Not marked Not marked No contract
## 72 Not marked Not marked Not marked Marked Unlimited
## 73 Not marked Not marked Not marked Marked No contract
## 74 Not marked Not marked Not marked Not marked Unlimited
## 75 Not marked Not marked Not marked Not marked Unlimited
## 76 Not marked Not marked Not marked Not marked Unlimited
## 77 Not marked Not marked Not marked Not marked Unlimited
## 78 Not marked Not marked Not marked Not marked Unlimited
## 79 Not marked Not marked Not marked Marked Limited
## 80 Marked Not marked Not marked Not marked Limited
## 81 Not marked Not marked Not marked Marked Unlimited
## 82 Not marked Not marked Not marked Marked Limited
## 83 Not marked Not marked Not marked Marked Unlimited
## 84 Not marked Not marked Not marked Not marked Unlimited
## 85 Not marked Not marked Not marked Not marked No contract
## 86 Not marked Not marked Not marked Marked No contract
## 87 Not marked Not marked Not marked Marked No contract
## 88 Not marked Not marked Not marked Not marked Unlimited
## 89 Not marked Not marked Not marked Not marked No contract
## 90 Not marked Not marked Not marked Not marked Unlimited
## 91 Not marked Not marked Not marked Marked Unlimited
## 92 Not marked Not marked Not marked Marked Limited
## 93 Not marked Not marked Not marked Not marked Unlimited
## 94 Not marked Not marked Not marked Not marked Unlimited
## 95 Marked Not marked Not marked Not marked <NA>
## 96 Not marked Not marked Not marked Marked Unlimited
## 97 Not marked Not marked Not marked Not marked Unlimited
## 98 Not marked Not marked Not marked Not marked Unlimited
## 99 Not marked Not marked Not marked Not marked Unlimited
## 100 Not marked Not marked Not marked Not marked Unlimited
## 101 Not marked Not marked Not marked Marked No contract
## 102 Not marked Not marked Not marked Marked Unlimited
## 103 Not marked Not marked Not marked Not marked Unlimited
## 104 Not marked Not marked Not marked Not marked Unlimited
## 105 Not marked Not marked Not marked Not marked Unlimited
## 106 Not marked Not marked Not marked Marked <NA>
## 107 Not marked Not marked Not marked Not marked Limited
## 108 Not marked Not marked Not marked Not marked Unlimited
## 109 Not marked Not marked Not marked Marked Unlimited
## 110 Not marked Not marked Not marked Marked Unlimited
## 111 Not marked Not marked Not marked Marked Unlimited
## 112 Not marked Not marked Not marked Not marked Unlimited
## 113 Not marked Not marked Not marked Marked Unlimited
## 114 Not marked Not marked Not marked Not marked Unlimited
## 115 Marked Not marked Not marked Not marked <NA>
## 116 Not marked Not marked Not marked Not marked <NA>
## 117 Not marked Not marked Not marked Not marked <NA>
## 118 Not marked Not marked Not marked Not marked Unlimited
## 119 Not marked Not marked Not marked Not marked Unlimited
## 120 Not marked Not marked Not marked Marked No contract
## 121 Not marked Not marked Not marked Not marked <NA>
## 122 Not marked Not marked Not marked Marked No contract
## 123 Not marked Not marked Not marked Marked Unlimited
## 124 Not marked Not marked Not marked Not marked Unlimited
## 125 Not marked Not marked Not marked Not marked No contract
## 126 Not marked Not marked Not marked Marked Unlimited
## 127 Not marked Not marked Not marked Marked Unlimited
## 128 Not marked Not marked Not marked Not marked Unlimited
## 129 Not marked Not marked Not marked Not marked <NA>
## 130 Not marked Not marked Not marked Marked Unlimited
## 131 Not marked Not marked Marked Not marked Unlimited
## 132 Not marked Not marked Marked Not marked Limited
## 133 Not marked Not marked Not marked Marked Unlimited
## 134 Not marked Not marked Not marked Marked <NA>
## 135 Not marked Not marked Not marked Not marked Unlimited
## 136 Not marked Not marked Not marked Marked Unlimited
## 137 Marked Not marked Not marked Not marked <NA>
## 138 Not marked Not marked Not marked Marked Unlimited
## 139 Not marked Not marked Not marked Marked Unlimited
## 140 Not marked Not marked Not marked Marked <NA>
## 141 Not marked Not marked Not marked Marked No contract
## 142 Not marked Not marked Not marked Marked No contract
## 143 Not marked Not marked Not marked Not marked Unlimited
## 144 Not marked Not marked Not marked Not marked Unlimited
## 145 Not marked Not marked Not marked Not marked Limited
## 146 Not marked Not marked Not marked Not marked Unlimited
## 147 Not marked Not marked Not marked Not marked Unlimited
## 148 Not marked Not marked Not marked Not marked <NA>
## 149 Not marked Not marked Not marked Marked Unlimited
## 150 Not marked Not marked Not marked Marked Unlimited
## 151 Not marked Not marked Not marked Not marked Unlimited
## 152 Marked Not marked Not marked Not marked <NA>
## 153 Not marked Not marked Not marked Not marked <NA>
## 154 Marked Not marked Not marked Not marked Unlimited
## 155 Not marked Not marked Not marked Marked Unlimited
## 156 Not marked Not marked Not marked Marked <NA>
## 157 Not marked Not marked Not marked Not marked <NA>
## 158 Not marked Not marked Not marked Not marked Limited
## 159 Not marked Not marked Marked Not marked Limited
## 160 Marked Not marked Not marked Not marked <NA>
## 161 Not marked Not marked Not marked Not marked Unlimited
## 162 Not marked Not marked Not marked Not marked Unlimited
## 163 Not marked Not marked Not marked Marked <NA>
## 164 Not marked Not marked Not marked Marked Unlimited
## 165 Not marked Not marked Not marked Not marked Limited
## 166 Not marked Not marked Not marked Not marked Unlimited
## 167 Not marked Not marked Not marked Not marked Limited
## 168 Not marked Not marked Not marked Marked <NA>
## 169 Not marked Not marked Marked Not marked Unlimited
## 170 Not marked Not marked Not marked Not marked Unlimited
## 171 Not marked Not marked Not marked Not marked Unlimited
## 172 Not marked Not marked Not marked Marked <NA>
## 173 Marked Not marked Not marked Not marked <NA>
## 174 Not marked Not marked Not marked Marked Unlimited
## 175 Not marked Not marked Not marked Marked Unlimited
## 176 Not marked Not marked Not marked Not marked Unlimited
## 177 Not marked Marked Not marked Not marked Limited
## 178 Not marked Not marked Not marked Marked No contract
## 179 Not marked Not marked Not marked Marked No contract
## 180 Not marked Not marked Not marked Not marked Unlimited
## 181 Not marked Not marked Not marked Marked <NA>
## 182 Not marked Not marked Not marked Marked <NA>
## 183 Not marked Not marked Not marked Not marked No contract
## 184 Not marked Not marked Not marked Not marked Limited
## 185 Not marked Not marked Not marked Not marked No contract
## 186 Not marked Not marked Not marked Not marked Unlimited
## 187 Not marked Not marked Not marked Not marked <NA>
## 188 Not marked Not marked Not marked Not marked No contract
## 189 Not marked Not marked Not marked Marked Unlimited
## 190 Not marked Not marked Not marked Marked Unlimited
## 191 Not marked Marked Not marked Not marked Limited
## 192 Not marked Not marked Not marked Not marked Unlimited
## 193 Not marked Not marked Not marked Not marked Unlimited
## 194 Not marked Not marked Not marked Not marked Unlimited
## 195 Not marked Not marked Not marked Not marked Unlimited
## 196 Marked Not marked Not marked Not marked Unlimited
## 197 Not marked Not marked Not marked Marked Unlimited
## 198 Not marked Not marked Not marked Not marked Unlimited
## 199 Not marked Not marked Not marked Marked Unlimited
## 200 Not marked Not marked Not marked Not marked Unlimited
## 201 Not marked Not marked Not marked Not marked Unlimited
## 202 Not marked Not marked Not marked Marked Limited
## 203 Not marked Not marked Not marked Marked Unlimited
## 204 Not marked Not marked Marked Marked Unlimited
## 205 Not marked Not marked Not marked Not marked Unlimited
## 206 Not marked Not marked Not marked Not marked Unlimited
## 207 Not marked Marked Not marked Not marked Unlimited
## 208 Not marked Not marked Not marked Not marked <NA>
## 209 Not marked Not marked Not marked Not marked <NA>
## 210 Marked Not marked Not marked Not marked <NA>
## 211 Not marked Not marked Not marked Marked <NA>
## 212 Marked Not marked Not marked Not marked Unlimited
## 213 Not marked Not marked Not marked Not marked Unlimited
## 214 Marked Not marked Not marked Not marked Unlimited
## 215 Not marked Not marked Not marked Marked Unlimited
## 216 Not marked Not marked Not marked Not marked Unlimited
## 217 Not marked Not marked Not marked Marked Unlimited
## 218 Not marked Not marked Not marked Marked <NA>
## 219 Not marked Not marked Not marked Not marked No contract
## 220 Not marked Not marked Not marked Marked Unlimited
## 221 Not marked Not marked Not marked Not marked <NA>
## 222 Marked Not marked Not marked Not marked No contract
## 223 Not marked Not marked Not marked Marked Unlimited
## 224 Not marked Not marked Not marked Not marked <NA>
## 225 Not marked Not marked Not marked Not marked Unlimited
## 226 Not marked Not marked Not marked Not marked Unlimited
## 227 Not marked Not marked Not marked Not marked <NA>
## 228 Not marked Not marked Not marked Not marked Unlimited
## 229 Not marked Not marked Not marked Not marked <NA>
## 230 Not marked Not marked Not marked Not marked Unlimited
## 231 Marked Not marked Not marked Not marked <NA>
## 232 Not marked Not marked Not marked Marked Limited
## 233 Not marked Marked Not marked Not marked <NA>
## 234 Not marked Not marked Not marked Not marked Unlimited
## 235 Not marked Not marked Not marked Not marked <NA>
## 236 Not marked Not marked Not marked Not marked Unlimited
## 237 Not marked Not marked Not marked Not marked Unlimited
## 238 Not marked Not marked Not marked Marked Unlimited
## 239 Not marked Not marked Not marked Not marked Unlimited
## 240 Not marked Not marked Not marked Marked Unlimited
## 241 Not marked Not marked Not marked Not marked No contract
## 242 Not marked Not marked Not marked Not marked No contract
## 243 Not marked Not marked Not marked Not marked No contract
## 244 Not marked Not marked Not marked Marked Unlimited
## 245 Not marked Not marked Not marked Not marked Unlimited
## 246 Not marked Not marked Not marked Marked Unlimited
## 247 Not marked Not marked Not marked Not marked <NA>
## 248 Not marked Not marked Not marked Not marked Unlimited
## 249 Not marked Not marked Not marked Not marked Unlimited
## 250 Not marked Not marked Not marked Marked Unlimited
## 251 Not marked Not marked Not marked Not marked Unlimited
## 252 Not marked Not marked Not marked Not marked Unlimited
## 253 Not marked Not marked Not marked Not marked Unlimited
## 254 Not marked Not marked Not marked Marked Unlimited
## 255 Not marked Not marked Not marked Marked Unlimited
## 256 Not marked Not marked Not marked Not marked No contract
## 257 Not marked Not marked Not marked Not marked Unlimited
## 258 Not marked Not marked Not marked Not marked Unlimited
## 259 Not marked Not marked Not marked Not marked Unlimited
## 260 Not marked Not marked Not marked Not marked Unlimited
## 261 Not marked Not marked Not marked Marked No contract
## 262 Not marked Not marked Not marked Marked <NA>
## 263 Not marked Not marked Not marked Not marked <NA>
## 264 Not marked Not marked Not marked Not marked Unlimited
## 265 Not marked Not marked Not marked Marked Unlimited
## 266 Not marked Not marked Marked Not marked Limited
## 267 Not marked Not marked Not marked Not marked Unlimited
## 268 Not marked Not marked Not marked Not marked <NA>
## 269 Not marked Not marked Not marked Marked Limited
## 270 Not marked Not marked Not marked Not marked Limited
## 271 Not marked Not marked Not marked Not marked Unlimited
## 272 Not marked Not marked Not marked Not marked Limited
## 273 Not marked Not marked Not marked Marked Unlimited
## 274 Not marked Not marked Not marked Not marked Unlimited
## 275 Not marked Not marked Not marked Not marked Unlimited
## 276 Not marked Not marked Not marked Not marked Unlimited
## 277 Not marked Not marked Not marked Not marked Unlimited
## 278 Not marked Not marked Not marked Not marked Unlimited
## 279 Not marked Marked Not marked Not marked Unlimited
## 280 Not marked Not marked Not marked Not marked No contract
## 281 Not marked Not marked Not marked Marked Limited
## 282 Not marked Not marked Not marked Not marked Unlimited
## 283 Not marked Not marked Not marked Marked No contract
## 284 Marked Not marked Not marked Not marked <NA>
## 285 Not marked Not marked Not marked Not marked Limited
## 286 Marked Not marked Not marked Not marked Unlimited
## 287 Not marked Not marked Not marked Not marked <NA>
## 288 Not marked Not marked Not marked Not marked Unlimited
## 289 Not marked Not marked Not marked Not marked Unlimited
## 290 Not marked Not marked Not marked Not marked Unlimited
## 291 Not marked Not marked Not marked Not marked Unlimited
## 292 Not marked Not marked Not marked Marked <NA>
## 293 Not marked Not marked Not marked Not marked No contract
## 294 Not marked Not marked Not marked Not marked Unlimited
## 295 Marked Not marked Not marked Not marked <NA>
## 296 Not marked Not marked Not marked Marked No contract
## 297 Not marked Not marked Not marked Not marked Unlimited
## 298 Not marked Not marked Not marked Not marked Unlimited
## 299 Not marked Not marked Not marked Marked Unlimited
## 300 Marked Not marked Not marked Not marked No contract
## 301 Not marked Not marked Not marked Marked <NA>
## 302 Not marked Not marked Not marked Marked <NA>
## 303 Not marked Not marked Not marked Not marked <NA>
## 304 Not marked Not marked Not marked Not marked Unlimited
## 305 Not marked Not marked Not marked Not marked Unlimited
## 306 Not marked Not marked Not marked Marked Unlimited
## 307 Not marked Marked Not marked Not marked Unlimited
## 308 Not marked Not marked Not marked Not marked Unlimited
## 309 Not marked Not marked Not marked Marked <NA>
## 310 Not marked Not marked Not marked Marked Unlimited
## 311 Not marked Not marked Not marked Not marked Unlimited
## 312 Marked Not marked Not marked Not marked No contract
## 313 Not marked Not marked Not marked Not marked Unlimited
## 314 Not marked Not marked Not marked Not marked Unlimited
## 315 Not marked Not marked Not marked Marked Unlimited
## 316 Marked Not marked Not marked Not marked <NA>
## 317 Not marked Not marked Not marked Not marked Unlimited
## 318 Not marked Not marked Not marked Not marked Unlimited
## 319 Not marked Not marked Not marked Marked Unlimited
## 320 Not marked Not marked Not marked Not marked Unlimited
## 321 Not marked Not marked Not marked Not marked No contract
## 322 Not marked Not marked Not marked Marked Limited
## 323 Not marked Not marked Not marked Not marked <NA>
## 324 Not marked Not marked Not marked Not marked Unlimited
## 325 Not marked Not marked Not marked Not marked Unlimited
## 326 Not marked Not marked Not marked Not marked Unlimited
## 327 Not marked Not marked Not marked Marked Unlimited
## 328 Not marked Not marked Not marked Not marked <NA>
## 329 Not marked Not marked Not marked Not marked Limited
## 330 Not marked Not marked Not marked Not marked <NA>
## 331 Not marked Not marked Not marked Marked Unlimited
## 332 Not marked Not marked Not marked Not marked Unlimited
## 333 Not marked Not marked Not marked Not marked <NA>
## 334 Not marked Not marked Not marked Not marked Unlimited
## 335 Marked Not marked Not marked Not marked No contract
## 336 Not marked Not marked Not marked Marked No contract
## 337 Not marked Not marked Not marked Marked Unlimited
## 338 Not marked Not marked Not marked Marked Unlimited
## 339 Not marked Not marked Not marked Not marked Unlimited
## 340 Not marked Not marked Not marked Marked Unlimited
## 341 Not marked Not marked Not marked Marked <NA>
## 342 Not marked Not marked Not marked Not marked Unlimited
## 343 Not marked Not marked Not marked Marked Limited
## 344 Not marked Not marked Not marked Not marked Unlimited
## 345 Not marked Not marked Not marked Not marked Unlimited
## 346 Not marked Not marked Not marked Not marked Unlimited
## 347 Not marked Marked Not marked Not marked Unlimited
## 348 Not marked Not marked Not marked Not marked Unlimited
## 349 Not marked Not marked Not marked Not marked <NA>
## 350 Not marked Not marked Not marked Marked Unlimited
## 351 Not marked Not marked Not marked Not marked Unlimited
## 352 Not marked Not marked Marked Not marked <NA>
## 353 Not marked Not marked Not marked Marked <NA>
## 354 Not marked Not marked Not marked Not marked Unlimited
## 355 Not marked Not marked Not marked Marked <NA>
## 356 Not marked Not marked Not marked Not marked Unlimited
## 357 Not marked Not marked Not marked Not marked Unlimited
## 358 Not marked Not marked Not marked Not marked <NA>
## 359 Not marked Not marked Not marked Not marked <NA>
## 360 Not marked Not marked Not marked Not marked No contract
## 361 Not marked Not marked Not marked Not marked Unlimited
## 362 Not marked Not marked Not marked Not marked Unlimited
## 363 Not marked Not marked Not marked Not marked <NA>
## 364 Not marked Not marked Not marked Marked Limited
## 365 Not marked Not marked Not marked Not marked Limited
## 366 Not marked Not marked Not marked Not marked No contract
## 367 Not marked Not marked Not marked Not marked <NA>
## 368 Not marked Not marked Not marked Marked Unlimited
## 369 Not marked Not marked Not marked Not marked Unlimited
## 370 Not marked Not marked Not marked Not marked Unlimited
## 371 Not marked Not marked Not marked Not marked Unlimited
## 372 Not marked Not marked Not marked Not marked Unlimited
## 373 Not marked Not marked Not marked Marked Unlimited
## 374 Not marked Marked Not marked Not marked <NA>
## 375 Marked Not marked Not marked Not marked No contract
## 376 Not marked Not marked Not marked Not marked Unlimited
## 377 Not marked Not marked Not marked Not marked <NA>
## 378 Not marked Not marked Not marked Not marked Unlimited
## 379 Not marked Not marked Not marked Not marked <NA>
## 380 Not marked Not marked Not marked Not marked <NA>
## 381 Not marked Not marked Not marked Marked <NA>
## 382 Not marked Not marked Not marked Not marked Unlimited
## 383 Not marked Not marked Not marked Marked Unlimited
## 384 Not marked Not marked Not marked Not marked Limited
## 385 Not marked Not marked Not marked Not marked <NA>
## 386 Not marked Not marked Not marked Not marked No contract
## 387 Not marked Not marked Not marked Not marked No contract
## 388 Not marked Not marked Not marked Not marked Unlimited
## 389 Not marked Not marked Not marked Marked Limited
## 390 Not marked Not marked Not marked Marked Unlimited
## 391 Not marked Not marked Not marked Not marked Unlimited
## 392 Not marked Not marked Not marked Not marked Unlimited
## 393 Not marked Not marked Not marked Not marked Unlimited
## 394 Not marked Not marked Not marked Not marked Unlimited
## 395 Not marked Not marked Not marked Marked Unlimited
## 396 Not marked Marked Not marked Not marked Unlimited
## 397 Not marked Not marked Not marked Not marked Unlimited
## 398 Not marked Not marked Not marked Not marked Unlimited
## 399 Not marked Not marked Not marked Not marked Unlimited
## 400 Not marked Not marked Not marked Not marked Unlimited
## 401 Not marked Not marked Not marked Marked No contract
## 402 Not marked Not marked Not marked Not marked No contract
## 403 Not marked Not marked Not marked Marked No contract
## 404 Not marked Not marked Not marked Marked Unlimited
## 405 Not marked Not marked Not marked Not marked <NA>
## 406 Not marked Not marked Not marked Marked Unlimited
## 407 Not marked Not marked Not marked Marked <NA>
## 408 Not marked Marked Not marked Not marked No contract
## 409 Not marked Not marked Not marked Not marked Unlimited
## 410 Not marked Not marked Not marked Not marked Unlimited
## 411 Not marked Not marked Not marked Marked Unlimited
## 412 Not marked Not marked Not marked Not marked Unlimited
## 413 Not marked Not marked Not marked Not marked No contract
## 414 Not marked Not marked Not marked Not marked Unlimited
## 415 Not marked Marked Not marked Not marked Unlimited
## 416 Not marked Not marked Not marked Not marked No contract
## 417 Not marked Not marked Not marked Not marked Unlimited
## 418 Not marked Not marked Not marked Marked <NA>
## 419 Not marked Not marked Not marked Marked Unlimited
## 420 Not marked Not marked Not marked Marked No contract
## 421 Not marked Not marked Not marked Not marked Unlimited
## 422 Not marked Not marked Not marked Not marked <NA>
## 423 Not marked Not marked Not marked Marked Unlimited
## 424 Not marked Not marked Not marked Not marked Unlimited
## 425 Not marked Not marked Not marked Not marked Unlimited
## 426 Not marked Not marked Not marked Not marked Unlimited
## 427 Not marked Not marked Not marked Marked <NA>
## 428 Not marked Not marked Not marked Not marked Unlimited
## 429 Not marked Not marked Not marked Marked Unlimited
## 430 Not marked Not marked Not marked Not marked Unlimited
## 431 Not marked Not marked Not marked Marked Unlimited
## 432 Not marked Not marked Not marked Marked Unlimited
## 433 Not marked Not marked Not marked Marked Unlimited
## 434 Marked Not marked Not marked Not marked <NA>
## 435 Not marked Not marked Not marked Marked Unlimited
## 436 Not marked Not marked Not marked Not marked Unlimited
## 437 Not marked Marked Not marked Not marked Limited
## 438 Not marked Not marked Not marked Not marked Limited
## 439 Not marked Not marked Not marked Marked Unlimited
## 440 Not marked Not marked Not marked Not marked <NA>
## 441 Not marked Not marked Not marked Not marked Unlimited
## 442 Not marked Not marked Not marked Not marked Unlimited
## 443 Not marked Not marked Not marked Not marked Unlimited
## 444 Not marked Not marked Not marked Marked Unlimited
## 445 Not marked Not marked Not marked Marked <NA>
## 446 Not marked Not marked Not marked Marked Unlimited
## 447 Not marked Not marked Not marked Not marked Unlimited
## 448 Not marked Not marked Not marked Not marked Unlimited
## 449 Not marked Not marked Not marked Not marked <NA>
## 450 Not marked Not marked Not marked Not marked <NA>
## 451 Not marked Not marked Not marked Not marked Unlimited
## 452 Not marked Not marked Not marked Not marked <NA>
## 453 Not marked Marked Not marked Not marked No contract
## 454 Not marked Not marked Not marked Not marked Limited
## 455 Not marked Not marked Not marked Marked Unlimited
## 456 Not marked Not marked Not marked Not marked Unlimited
## 457 Not marked Not marked Not marked Not marked Unlimited
## 458 Not marked Not marked Not marked Marked Unlimited
## 459 Not marked Not marked Not marked Marked <NA>
## 460 Not marked Not marked Not marked Not marked <NA>
## 461 Not marked Not marked Not marked Marked <NA>
## 462 Not marked Not marked Not marked Not marked Unlimited
## 463 Not marked Not marked Not marked Not marked No contract
## 464 Not marked Not marked Not marked Marked <NA>
## 465 Not marked Not marked Not marked Not marked Unlimited
## 466 Not marked Not marked Not marked Marked Unlimited
## 467 Not marked Marked Not marked Not marked Unlimited
## 468 Not marked Not marked Not marked Not marked Unlimited
## 469 Not marked Not marked Not marked Marked Unlimited
## 470 Not marked Not marked Not marked Marked Unlimited
## 471 Not marked Not marked Not marked Marked Unlimited
## 472 Not marked Not marked Not marked Not marked <NA>
## 473 Not marked Not marked Not marked Not marked Unlimited
## 474 Not marked Not marked Not marked Not marked <NA>
## 475 Not marked Not marked Not marked Marked No contract
## 476 Not marked Not marked Not marked Marked Unlimited
## 477 Not marked Not marked Not marked Marked Unlimited
## 478 Not marked Not marked Not marked Not marked Unlimited
## 479 Marked Not marked Not marked Not marked <NA>
## 480 Not marked Not marked Not marked Not marked Unlimited
## 481 Not marked Not marked Not marked Marked Unlimited
## 482 Not marked Not marked Not marked Not marked Unlimited
## 483 Not marked Not marked Not marked Not marked Unlimited
## 484 Marked Not marked Not marked Not marked Limited
## 485 Not marked Not marked Not marked Marked Unlimited
## 486 Not marked Not marked Not marked Marked Unlimited
## 487 Not marked Not marked Not marked Marked Unlimited
## 488 Not marked Not marked Not marked Not marked Unlimited
## 489 Not marked Not marked Not marked Not marked Unlimited
## 490 Not marked Not marked Not marked Marked No contract
## 491 Not marked Not marked Not marked Not marked <NA>
## 492 Not marked Not marked Not marked Not marked Unlimited
## 493 Not marked Not marked Not marked Not marked Unlimited
## 494 Not marked Not marked Not marked Marked <NA>
## 495 Not marked Not marked Not marked Not marked Unlimited
## 496 Not marked Not marked Not marked Not marked Unlimited
## 497 Marked Not marked Not marked Not marked Unlimited
## 498 Not marked Not marked Not marked Marked Unlimited
## 499 Not marked Not marked Not marked Not marked Limited
## 500 Not marked Not marked Not marked Not marked Unlimited
## 501 Not marked Not marked Not marked Not marked Unlimited
## 502 Not marked Not marked Not marked Marked Unlimited
## 503 Not marked Not marked Not marked Not marked Unlimited
## 504 Not marked Marked Not marked Not marked <NA>
## 505 Not marked Not marked Not marked Not marked Unlimited
## 506 Not marked Not marked Not marked Not marked No contract
## 507 Not marked Not marked Not marked Not marked Unlimited
## 508 Not marked Not marked Not marked Not marked Unlimited
## 509 Not marked Not marked Not marked Marked <NA>
## 510 Not marked Not marked Not marked Not marked No contract
## 511 Not marked Not marked Not marked Not marked Unlimited
## 512 Not marked Not marked Not marked Marked No contract
## 513 Not marked Not marked Not marked Marked No contract
## 514 Not marked Not marked Not marked Not marked Unlimited
## 515 Not marked Not marked Not marked Not marked <NA>
## 516 Marked Not marked Not marked Not marked <NA>
## 517 Not marked Not marked Not marked Marked No contract
## 518 Not marked Not marked Not marked Not marked Unlimited
## 519 Not marked Not marked Not marked Not marked Unlimited
## 520 Not marked Not marked Not marked Not marked Unlimited
## 521 Not marked Not marked Not marked Marked Unlimited
## 522 Not marked Not marked Not marked Marked No contract
## 523 Not marked Not marked Not marked Not marked No contract
## 524 Not marked Not marked Not marked Not marked <NA>
## 525 Not marked Not marked Not marked Not marked Unlimited
## 526 Not marked Not marked Not marked Not marked Unlimited
## 527 Not marked Not marked Not marked Not marked No contract
## 528 Not marked Not marked Not marked Not marked Unlimited
## 529 Not marked Not marked Not marked Not marked Unlimited
## 530 Not marked Not marked Not marked Not marked Unlimited
## 531 Not marked Not marked Not marked Not marked Unlimited
## 532 Not marked Not marked Not marked Not marked Unlimited
## 533 Not marked Not marked Not marked Marked No contract
## 534 Not marked Not marked Not marked Not marked <NA>
## 535 Not marked Not marked Not marked Marked Unlimited
## 536 Not marked Not marked Not marked Not marked Unlimited
## 537 Not marked Not marked Not marked Not marked Limited
## 538 Not marked Not marked Not marked Not marked Unlimited
## 539 Not marked Not marked Not marked Not marked Unlimited
## 540 Not marked Not marked Not marked Not marked Unlimited
## 541 Not marked Not marked Not marked Marked Unlimited
## 542 Not marked Not marked Not marked Marked Unlimited
## 543 Marked Not marked Not marked Not marked Limited
## 544 Not marked Not marked Not marked Marked Unlimited
## 545 Not marked Not marked Not marked Not marked Unlimited
## 546 Not marked Not marked Not marked Not marked Unlimited
## 547 Not marked Not marked Not marked Not marked Unlimited
## 548 Not marked Not marked Not marked Marked No contract
## 549 Not marked Not marked Not marked Marked No contract
## 550 Not marked Not marked Not marked Marked Unlimited
## 551 Not marked Not marked Not marked Not marked Unlimited
## 552 Not marked Not marked Not marked Not marked Limited
## 553 Not marked Not marked Not marked Not marked Unlimited
## 554 Not marked Not marked Not marked Not marked Unlimited
## 555 Not marked Not marked Not marked Not marked Unlimited
## 556 Not marked Not marked Not marked Marked Unlimited
## 557 Not marked Not marked Not marked Marked Unlimited
## 558 Not marked Not marked Not marked Marked Unlimited
## 559 Not marked Not marked Not marked Not marked Unlimited
## 560 Not marked Not marked Not marked Marked Limited
## 561 Not marked Not marked Not marked Not marked Unlimited
## 562 Not marked Not marked Not marked Not marked Unlimited
## 563 Not marked Not marked Not marked Not marked No contract
## 564 Not marked Not marked Not marked Not marked Unlimited
## 565 Not marked Not marked Not marked Not marked Unlimited
## 566 Not marked Not marked Not marked Not marked No contract
## 567 Not marked Not marked Not marked Not marked <NA>
## 568 Not marked Marked Not marked Not marked No contract
## 569 Not marked Not marked Not marked Not marked <NA>
## 570 Not marked Not marked Not marked Not marked Unlimited
## 571 Not marked Not marked Not marked Not marked No contract
## 572 Not marked Not marked Not marked Not marked Unlimited
## 573 Not marked Not marked Not marked Not marked No contract
## 574 Not marked Not marked Not marked Not marked No contract
## 575 Not marked Not marked Not marked Not marked Unlimited
## 576 Not marked Not marked Not marked Marked No contract
## 577 Not marked Not marked Not marked Marked Unlimited
## 578 Not marked Not marked Not marked Not marked Unlimited
## 579 Not marked Not marked Not marked Not marked <NA>
## 580 Not marked Not marked Not marked Marked Unlimited
## 581 Not marked Not marked Not marked Not marked No contract
## 582 Not marked Not marked Not marked Not marked <NA>
## 583 Not marked Not marked Not marked Not marked <NA>
## 584 Not marked Not marked Not marked Not marked Unlimited
## 585 Not marked Not marked Not marked Marked Unlimited
## 586 Not marked Not marked Not marked Not marked <NA>
## 587 Not marked Not marked Not marked Marked Limited
## 588 Not marked Not marked Not marked Not marked Unlimited
## 589 Not marked Not marked Not marked Not marked Unlimited
## 590 Not marked Not marked Not marked Marked No contract
## 591 Not marked Not marked Not marked Not marked Limited
## 592 Not marked Not marked Not marked Not marked Unlimited
## 593 Not marked Not marked Not marked Marked Unlimited
## 594 Not marked Not marked Not marked Not marked <NA>
## 595 Not marked Not marked Not marked Marked <NA>
## 596 Not marked Not marked Not marked Marked Limited
## 597 Not marked Not marked Not marked Not marked Unlimited
## 598 Not marked Not marked Not marked Not marked No contract
## 599 Not marked Not marked Not marked Not marked <NA>
## 600 Not marked Not marked Not marked Not marked Unlimited
## 601 Not marked Not marked Not marked Not marked Unlimited
## 602 Not marked Not marked Not marked Marked <NA>
## 603 Not marked Not marked Not marked Marked No contract
## 604 Not marked Not marked Not marked Not marked Unlimited
## 605 Not marked Not marked Not marked Marked Unlimited
## 606 Not marked Not marked Not marked Marked Unlimited
## 607 Not marked Not marked Not marked Marked No contract
## 608 Not marked Not marked Not marked Marked Unlimited
## 609 Not marked Not marked Not marked Not marked Unlimited
## 610 Not marked Not marked Not marked Marked Unlimited
## 611 Not marked Not marked Not marked Not marked Unlimited
## 612 Not marked Not marked Not marked Not marked Unlimited
## 613 Marked Not marked Not marked Not marked <NA>
## 614 Not marked Not marked Not marked Marked Unlimited
## 615 Marked Not marked Not marked Not marked Unlimited
## 616 Not marked Not marked Not marked Marked <NA>
## 617 Not marked Not marked Not marked Not marked Unlimited
## 618 Not marked Not marked Not marked Not marked Limited
## 619 Not marked Not marked Not marked Marked Unlimited
## 620 Not marked Marked Not marked Not marked <NA>
## 621 Not marked Not marked Not marked Not marked Unlimited
## 622 Not marked Not marked Not marked Not marked <NA>
## 623 Not marked Not marked Not marked Not marked Unlimited
## 624 Not marked Not marked Not marked Not marked Unlimited
## 625 Not marked Not marked Not marked Marked Unlimited
## 626 Not marked Not marked Not marked Not marked No contract
## 627 Not marked Not marked Not marked Not marked Unlimited
## 628 Not marked Not marked Not marked Not marked Limited
## 629 Not marked Not marked Not marked Not marked Limited
## 630 Not marked Not marked Not marked Not marked Unlimited
## 631 Not marked Not marked Not marked Not marked <NA>
## 632 Not marked Not marked Not marked Not marked Unlimited
## 633 Not marked Not marked Not marked Not marked Unlimited
## 634 Not marked Not marked Not marked Not marked Unlimited
## 635 Not marked Not marked Not marked Not marked Limited
## 636 Not marked Not marked Not marked Not marked Unlimited
## 637 Not marked Not marked Not marked Not marked Unlimited
## 638 Not marked Not marked Not marked Marked Unlimited
## 639 Not marked Not marked Not marked Marked <NA>
## 640 Not marked Not marked Not marked Not marked Limited
## 641 Not marked Not marked Not marked Marked Unlimited
## 642 Not marked Not marked Not marked Not marked Unlimited
## 643 Not marked Not marked Not marked Not marked Limited
## 644 Not marked Not marked Not marked Marked Unlimited
## 645 Not marked Not marked Not marked Not marked Unlimited
## 646 Not marked Not marked Not marked Not marked Unlimited
## 647 Not marked Not marked Not marked Marked Unlimited
## 648 Not marked Not marked Not marked Not marked Unlimited
## 649 Not marked Not marked Not marked Marked Unlimited
## 650 Not marked Not marked Not marked Not marked Unlimited
## 651 Not marked Not marked Not marked Not marked Unlimited
## 652 Not marked Not marked Not marked Not marked Unlimited
## 653 Not marked Not marked Not marked Marked Unlimited
## 654 Not marked Not marked Not marked Not marked Unlimited
## 655 Not marked Not marked Not marked Not marked Unlimited
## 656 Not marked Not marked Not marked Marked Unlimited
## 657 Not marked Not marked Not marked Not marked <NA>
## 658 Not marked Not marked Not marked Not marked Unlimited
## 659 Not marked Not marked Not marked Not marked Unlimited
## 660 Not marked Not marked Not marked Not marked No contract
## 661 Not marked Not marked Not marked Not marked Unlimited
## 662 Not marked Not marked Not marked Not marked Unlimited
## 663 Not marked Not marked Not marked Not marked <NA>
## 664 Not marked Not marked Not marked Not marked Unlimited
## 665 Marked Not marked Not marked Not marked <NA>
## 666 Not marked Not marked Not marked Not marked Unlimited
## 667 Not marked Not marked Not marked Not marked Unlimited
## 668 Not marked Not marked Not marked Not marked Unlimited
## 669 Not marked Not marked Not marked Not marked Limited
## 670 Not marked Not marked Not marked Not marked <NA>
## 671 Not marked Not marked Not marked Not marked Unlimited
## 672 Not marked Not marked Not marked Marked Unlimited
## 673 Not marked Not marked Not marked Marked <NA>
## 674 Not marked Not marked Marked Not marked <NA>
## 675 Not marked Not marked Not marked Marked Unlimited
## 676 Marked Not marked Not marked Not marked No contract
## 677 Not marked Not marked Not marked Not marked Unlimited
## 678 Not marked Not marked Not marked Marked Unlimited
## 679 Not marked Not marked Not marked Not marked No contract
## 680 Not marked Not marked Not marked Marked Unlimited
## 681 Not marked Not marked Not marked Not marked Unlimited
## 682 Not marked Not marked Not marked Marked Limited
## 683 Not marked Not marked Not marked Not marked No contract
## 684 Not marked Marked Not marked Not marked Unlimited
## 685 Not marked Not marked Not marked Marked <NA>
## 686 Not marked Not marked Not marked Not marked Unlimited
## 687 Not marked Not marked Not marked Not marked Unlimited
## 688 Not marked Not marked Not marked Marked Limited
## 689 Not marked Not marked Not marked Marked <NA>
## 690 Not marked Not marked Not marked Marked Unlimited
## 691 Not marked Not marked Not marked Marked Unlimited
## 692 Not marked Not marked Not marked Marked <NA>
## 693 Not marked Not marked Not marked Not marked Unlimited
## 694 Not marked Not marked Not marked Not marked Unlimited
## 695 Not marked Marked Not marked Not marked <NA>
## 696 Not marked Not marked Not marked Not marked Unlimited
## 697 Marked Not marked Not marked Not marked Unlimited
## 698 Not marked Not marked Not marked Not marked Unlimited
## 699 Not marked Not marked Not marked Not marked Unlimited
## 700 Not marked Not marked Not marked Not marked <NA>
## 701 Not marked Not marked Not marked Marked Unlimited
## 702 Not marked Not marked Not marked Not marked <NA>
## 703 Not marked Not marked Not marked Not marked Unlimited
## 704 Not marked Not marked Not marked Not marked Unlimited
## 705 Not marked Not marked Not marked Not marked Unlimited
## 706 Not marked Not marked Not marked Not marked <NA>
## 707 Not marked Not marked Not marked Not marked No contract
## 708 Not marked Not marked Not marked Not marked Unlimited
## 709 Not marked Not marked Not marked Not marked No contract
## 710 Not marked Marked Not marked Not marked No contract
## 711 Not marked Not marked Not marked Not marked Unlimited
## 712 Not marked Not marked Not marked Not marked Unlimited
## 713 Not marked Not marked Not marked Not marked Unlimited
## 714 Not marked Not marked Not marked Marked No contract
## 715 Not marked Not marked Not marked Not marked <NA>
## 716 Not marked Not marked Not marked Not marked Unlimited
## 717 Not marked Not marked Not marked Marked Unlimited
## 718 Not marked Not marked Not marked Not marked Unlimited
## 719 Not marked Not marked Not marked Marked Limited
## 720 Not marked Not marked Not marked Marked Limited
## 721 Marked Not marked Not marked Not marked No contract
## 722 Not marked Not marked Not marked Not marked Unlimited
## 723 Marked Not marked Not marked Not marked Limited
## 724 Not marked Not marked Not marked Marked Unlimited
## 725 Not marked Marked Not marked Not marked <NA>
## 726 Not marked Not marked Not marked Not marked Unlimited
## 727 Not marked Not marked Not marked Not marked Unlimited
## 728 Not marked Not marked Not marked Not marked No contract
## 729 Not marked Not marked Not marked Not marked Unlimited
## 730 Not marked Not marked Not marked Not marked No contract
## 731 Not marked Not marked Not marked Not marked No contract
## 732 Not marked Not marked Not marked Not marked No contract
## 733 Not marked Not marked Not marked Marked Unlimited
## 734 Not marked Not marked Not marked Not marked Unlimited
## 735 Not marked Not marked Not marked Not marked Unlimited
## 736 Marked Not marked Not marked Not marked Unlimited
## 737 Not marked Not marked Not marked Marked Unlimited
## 738 Not marked Not marked Not marked Marked <NA>
## 739 Not marked Not marked Not marked Marked Unlimited
## 740 Not marked Not marked Not marked Not marked Unlimited
## 741 Not marked Not marked Not marked Marked No contract
## 742 Not marked Not marked Not marked Not marked Unlimited
## 743 Not marked Not marked Not marked Not marked Unlimited
## 744 Not marked Not marked Not marked Marked Unlimited
## 745 Marked Not marked Not marked Not marked Limited
## 746 Not marked Not marked Not marked Not marked Unlimited
## 747 Not marked Not marked Not marked Not marked Unlimited
## 748 Not marked Not marked Not marked Not marked Unlimited
## 749 Marked Not marked Not marked Not marked <NA>
## 750 Not marked Not marked Not marked Not marked Unlimited
## 751 Not marked Not marked Not marked Not marked Unlimited
## 752 Not marked Not marked Not marked Not marked Unlimited
## 753 Marked Not marked Not marked Not marked Unlimited
## 754 Not marked Marked Not marked Not marked <NA>
## 755 Not marked Not marked Not marked Not marked Unlimited
## 756 Not marked Not marked Not marked Not marked Unlimited
## 757 Not marked Not marked Not marked Marked Unlimited
## 758 Not marked Not marked Not marked Not marked Unlimited
## 759 Not marked Not marked Not marked Marked Unlimited
## 760 Not marked Not marked Not marked Not marked Unlimited
## 761 Not marked Not marked Not marked Not marked <NA>
## 762 Not marked Not marked Not marked Not marked <NA>
## 763 Not marked Not marked Not marked Not marked Unlimited
## 764 Not marked Not marked Not marked Marked No contract
## 765 Not marked Not marked Not marked Not marked Unlimited
## 766 Not marked Not marked Not marked Not marked <NA>
## 767 Not marked Not marked Not marked Marked No contract
## 768 Not marked Not marked Not marked Marked Unlimited
## 769 Not marked Not marked Not marked Not marked Limited
## 770 Not marked Not marked Not marked Not marked Unlimited
## 771 Not marked Not marked Not marked Not marked No contract
## 772 Not marked Not marked Not marked Not marked No contract
## 773 Not marked Not marked Not marked Marked No contract
## 774 Not marked Not marked Not marked Not marked Limited
## 775 Not marked Not marked Not marked Marked <NA>
## 776 Not marked Not marked Not marked Marked Unlimited
## 777 Not marked Not marked Not marked Not marked Unlimited
## 778 Not marked Not marked Not marked Not marked Unlimited
## 779 Not marked Not marked Not marked Not marked Unlimited
## 780 Not marked Not marked Not marked Not marked Unlimited
## 781 Not marked Not marked Not marked Not marked Limited
## 782 Marked Not marked Not marked Not marked <NA>
## 783 Not marked Not marked Not marked Marked Unlimited
## 784 Not marked Not marked Not marked Not marked Unlimited
## 785 Not marked Not marked Not marked Not marked Unlimited
## 786 Not marked Not marked Not marked Not marked <NA>
## 787 Not marked Not marked Not marked Not marked Unlimited
## 788 Not marked Marked Not marked Not marked <NA>
## 789 Not marked Not marked Not marked Marked Unlimited
## 790 Not marked Not marked Not marked Not marked No contract
## 791 Not marked Not marked Not marked Marked Unlimited
## 792 Not marked Not marked Not marked Not marked Unlimited
## 793 Not marked Not marked Not marked Marked Unlimited
## 794 Not marked Not marked Not marked Marked Limited
## 795 Not marked Not marked Not marked Not marked Unlimited
## 796 Not marked Not marked Not marked Marked Unlimited
## 797 Not marked Not marked Not marked Not marked Unlimited
## 798 Not marked Not marked Not marked Marked Unlimited
## 799 Not marked Not marked Not marked Not marked Unlimited
## 800 Not marked Not marked Not marked Marked <NA>
## 801 Not marked Not marked Not marked Not marked Unlimited
## 802 Not marked Not marked Not marked Marked Unlimited
## 803 Not marked Not marked Not marked Not marked No contract
## 804 Not marked Not marked Not marked Not marked Unlimited
## 805 Not marked Marked Not marked Not marked Unlimited
## 806 Not marked Not marked Not marked Not marked Unlimited
## 807 Not marked Not marked Not marked Not marked <NA>
## 808 Not marked Not marked Not marked Not marked No contract
## 809 Not marked Not marked Not marked Not marked Unlimited
## 810 Not marked Not marked Not marked Not marked Unlimited
## 811 Not marked Not marked Not marked Marked <NA>
## 812 Not marked Not marked Not marked Marked Unlimited
## 813 Not marked Marked Not marked Not marked No contract
## 814 Not marked Not marked Not marked Not marked Unlimited
## 815 Not marked Not marked Not marked Marked No contract
## 816 Not marked Not marked Not marked Not marked Unlimited
## 817 Not marked Not marked Not marked Not marked Unlimited
## 818 Not marked Not marked Not marked Marked <NA>
## 819 Not marked Not marked Not marked Marked <NA>
## 820 Marked Not marked Not marked Not marked <NA>
## 821 Not marked Not marked Not marked Not marked <NA>
## 822 Not marked Not marked Not marked Not marked <NA>
## 823 Not marked Not marked Not marked Not marked <NA>
## 824 Not marked Not marked Not marked Not marked No contract
## 825 Not marked Not marked Not marked Marked Unlimited
## 826 Not marked Not marked Not marked Not marked Unlimited
## 827 Not marked Not marked Not marked Marked Unlimited
## 828 Not marked Not marked Not marked Marked <NA>
## 829 Not marked Not marked Not marked Marked Unlimited
## 830 Not marked Not marked Not marked Not marked Unlimited
## 831 Not marked Not marked Not marked Not marked Unlimited
## 832 Not marked Not marked Not marked Not marked Unlimited
## 833 Not marked Not marked Not marked Not marked Unlimited
## 834 Not marked Not marked Not marked Not marked Unlimited
## 835 Not marked Not marked Not marked Not marked Unlimited
## 836 Not marked Not marked Not marked Not marked Unlimited
## 837 Not marked Not marked Not marked Not marked Unlimited
## 838 Not marked Not marked Not marked Not marked <NA>
## 839 Not marked Not marked Not marked Not marked Unlimited
## 840 Not marked Not marked Not marked Marked <NA>
## 841 Not marked Not marked Not marked Not marked Unlimited
## 842 Not marked Not marked Not marked Not marked Unlimited
## 843 Not marked Not marked Not marked Not marked No contract
## 844 Not marked Not marked Not marked Not marked Unlimited
## 845 Not marked Not marked Not marked Marked Unlimited
## 846 Not marked Not marked Not marked Not marked <NA>
## 847 Not marked Not marked Not marked Marked Unlimited
## 848 Not marked Not marked Not marked Not marked <NA>
## 849 Not marked Not marked Not marked Marked No contract
## 850 Not marked Not marked Not marked Marked <NA>
## 851 Not marked Not marked Not marked Not marked Unlimited
## 852 Not marked Not marked Not marked Not marked Unlimited
## 853 Not marked Not marked Not marked Not marked Unlimited
## 854 Not marked Not marked Not marked Marked Unlimited
## 855 Not marked Not marked Not marked Not marked Limited
## 856 Not marked Not marked Not marked Marked Unlimited
## 857 Not marked Not marked Not marked Not marked Unlimited
## 858 Not marked Not marked Not marked Marked Unlimited
## 859 Not marked Not marked Not marked Not marked Unlimited
## 860 Not marked Not marked Not marked Marked Unlimited
## 861 Not marked Not marked Not marked Not marked <NA>
## 862 Not marked Not marked Not marked Marked Unlimited
## 863 Not marked Not marked Not marked Marked No contract
## 864 Marked Not marked Not marked Not marked <NA>
## 865 Not marked Not marked Not marked Not marked Unlimited
## 866 Not marked Not marked Not marked Not marked Unlimited
## 867 Marked Not marked Not marked Not marked <NA>
## 868 Not marked Not marked Not marked Not marked Unlimited
## 869 Not marked Not marked Not marked Not marked <NA>
## 870 Not marked Not marked Not marked Not marked Unlimited
## 871 Marked Not marked Not marked Not marked <NA>
## 872 Not marked Not marked Not marked Not marked Unlimited
## 873 Not marked Not marked Not marked Marked Unlimited
## 874 Not marked Not marked Not marked Not marked Limited
## 875 Not marked Not marked Not marked Not marked Unlimited
## 876 Not marked Not marked Not marked Marked Unlimited
## 877 Not marked Not marked Not marked Not marked Unlimited
## 878 Marked Not marked Not marked Not marked <NA>
## 879 Not marked Not marked Not marked Not marked Unlimited
## 880 Not marked Not marked Not marked Marked Unlimited
## 881 Not marked Marked Not marked Not marked <NA>
## 882 Not marked Not marked Not marked Not marked Unlimited
## 883 Not marked Not marked Not marked Marked Unlimited
## 884 Not marked Not marked Not marked Not marked <NA>
## 885 Not marked Not marked Not marked Not marked Unlimited
## 886 Not marked Not marked Not marked Not marked Unlimited
## 887 Not marked Not marked Not marked Marked Unlimited
## 888 Not marked Not marked Not marked Marked Unlimited
## 889 Marked Not marked Not marked Not marked <NA>
## 890 Not marked Not marked Not marked Not marked No contract
## 891 Not marked Not marked Not marked Marked Unlimited
## 892 Not marked Marked Not marked Not marked Unlimited
## 893 Not marked Not marked Not marked Marked Unlimited
## 894 Not marked Not marked Not marked Not marked Unlimited
## 895 Marked Not marked Not marked Not marked No contract
## 896 Not marked Marked Not marked Not marked Limited
## 897 Not marked Not marked Not marked Not marked <NA>
## 898 Not marked Not marked Not marked Not marked Limited
## 899 Not marked Not marked Not marked Marked <NA>
## 900 Not marked Not marked Not marked Marked Unlimited
## 901 Not marked Not marked Not marked Marked No contract
## 902 Not marked Not marked Not marked Marked Unlimited
## 903 Not marked Not marked Not marked Not marked Unlimited
## 904 Not marked Not marked Not marked Not marked <NA>
## 905 Not marked Not marked Not marked Not marked Limited
## 906 Not marked Not marked Not marked Not marked No contract
## 907 Not marked Not marked Not marked Marked <NA>
## 908 Not marked Not marked Not marked Not marked Limited
## 909 Not marked Not marked Not marked Marked Unlimited
## 910 Not marked Not marked Not marked Marked Unlimited
## 911 Not marked Not marked Not marked Not marked Unlimited
## 912 Not marked Not marked Not marked Not marked Unlimited
## 913 Not marked Marked Not marked Not marked No contract
## 914 Not marked Not marked Not marked Marked Unlimited
## 915 Not marked Not marked Not marked Not marked Unlimited
## 916 Not marked Not marked Not marked Marked No contract
## 917 Not marked Not marked Not marked Not marked Unlimited
## 918 Not marked Not marked Not marked Not marked <NA>
## 919 Not marked Not marked Not marked Not marked Unlimited
## 920 Not marked Not marked Not marked Not marked Unlimited
## 921 Not marked Not marked Not marked Not marked Limited
## 922 Not marked Not marked Not marked Not marked Unlimited
## 923 Not marked Not marked Not marked Marked Unlimited
## 924 Not marked Not marked Not marked Marked Unlimited
## 925 Not marked Not marked Not marked Marked <NA>
## 926 Not marked Not marked Not marked Not marked Unlimited
## 927 Not marked Not marked Not marked Not marked Unlimited
## 928 Not marked Not marked Not marked Not marked Unlimited
## 929 Not marked Not marked Not marked Marked Unlimited
## 930 Not marked Not marked Not marked Marked Unlimited
## 931 Not marked Not marked Not marked Marked Limited
## 932 Not marked Not marked Not marked Marked Unlimited
## 933 Not marked Not marked Not marked Not marked <NA>
## 934 Not marked Not marked Not marked Marked <NA>
## 935 Not marked Not marked Not marked Not marked Limited
## 936 Not marked Not marked Marked Not marked Unlimited
## 937 Not marked Not marked Not marked Marked <NA>
## 938 Not marked Not marked Not marked Not marked Unlimited
## 939 Not marked Not marked Not marked Marked Unlimited
## 940 Not marked Not marked Not marked Not marked <NA>
## 941 Not marked Not marked Not marked Not marked <NA>
## 942 Not marked Not marked Not marked Not marked <NA>
## 943 Not marked Not marked Not marked Marked Unlimited
## 944 Not marked Not marked Not marked Marked Unlimited
## 945 Not marked Not marked Not marked Not marked Unlimited
## 946 Not marked Not marked Not marked Not marked Unlimited
## 947 Not marked Not marked Not marked Marked <NA>
## 948 Not marked Not marked Not marked Not marked Unlimited
## 949 Not marked Not marked Not marked Not marked Unlimited
## 950 Not marked Not marked Not marked Not marked Limited
## 951 Not marked Not marked Not marked Marked Unlimited
## 952 Not marked Not marked Not marked Not marked Limited
## 953 Not marked Not marked Not marked Not marked Unlimited
## 954 Not marked Not marked Not marked Not marked <NA>
## 955 Not marked Not marked Not marked Not marked Limited
## 956 Not marked Not marked Not marked Not marked Unlimited
## 957 Not marked Not marked Not marked Not marked Unlimited
## 958 Not marked Not marked Not marked Marked No contract
## 959 Not marked Not marked Not marked Not marked Unlimited
## 960 Not marked Not marked Not marked Not marked <NA>
## 961 Not marked Not marked Not marked Not marked Unlimited
## 962 Not marked Not marked Not marked Not marked Unlimited
## 963 Not marked Not marked Not marked Not marked Unlimited
## 964 Not marked Not marked Not marked Not marked Unlimited
## 965 Not marked Not marked Not marked Not marked Unlimited
## 966 Not marked Not marked Not marked Marked Unlimited
## 967 Not marked Not marked Not marked Not marked <NA>
## 968 Not marked Not marked Not marked Not marked <NA>
## 969 Not marked Not marked Not marked Marked Unlimited
## 970 Not marked Not marked Not marked Not marked Unlimited
## 971 Not marked Not marked Not marked Not marked Unlimited
## 972 Not marked Not marked Not marked Marked Unlimited
## 973 Not marked Not marked Not marked Not marked Unlimited
## 974 Not marked Not marked Not marked Not marked Unlimited
## 975 Not marked Not marked Marked Not marked Unlimited
## 976 Not marked Not marked Not marked Not marked Unlimited
## 977 Marked Not marked Not marked Not marked No contract
## 978 Not marked Not marked Not marked Not marked Unlimited
## 979 Not marked Not marked Not marked Not marked Unlimited
## 980 Not marked Not marked Not marked Marked Unlimited
## 981 Not marked Not marked Not marked Not marked Unlimited
## 982 Not marked Not marked Not marked Not marked <NA>
## 983 Not marked Not marked Not marked Not marked Limited
## 984 Not marked Not marked Not marked Not marked Unlimited
## 985 Not marked Not marked Not marked Marked <NA>
## 986 Not marked Not marked Not marked Marked No contract
## 987 Not marked Not marked Not marked Not marked Unlimited
## 988 Not marked Not marked Not marked Marked No contract
## 989 Not marked Not marked Not marked Marked No contract
## 990 Not marked Not marked Not marked Marked Limited
## 991 Not marked Not marked Not marked Not marked Unlimited
## 992 Not marked Not marked Not marked Marked Unlimited
## 993 Not marked Not marked Not marked Not marked Unlimited
## 994 Not marked Not marked Not marked Marked <NA>
## 995 Not marked Not marked Not marked Marked Unlimited
## 996 Not marked Not marked Not marked Not marked Unlimited
## 997 Not marked Not marked Not marked Not marked <NA>
## 998 Not marked Not marked Not marked Marked Unlimited
## 999 Not marked Not marked Not marked Not marked <NA>
## 1000 Not marked Not marked Marked Not marked Unlimited
## 1001 Not marked Not marked Not marked Not marked Unlimited
## 1002 Not marked Not marked Not marked Not marked Unlimited
## 1003 Not marked Not marked Not marked Not marked <NA>
## 1004 Not marked Not marked Not marked Not marked No contract
## 1005 Not marked Not marked Not marked Not marked <NA>
## 1006 Not marked Not marked Not marked Not marked Unlimited
## 1007 Not marked Not marked Not marked Marked Unlimited
## 1008 Marked Not marked Not marked Not marked Unlimited
## 1009 Not marked Not marked Not marked Not marked Limited
## 1010 Not marked Not marked Not marked Not marked Limited
## 1011 Not marked Not marked Not marked Not marked No contract
## 1012 Not marked Not marked Not marked Not marked <NA>
## 1013 Not marked Not marked Not marked Not marked Limited
## 1014 Not marked Not marked Not marked Not marked <NA>
## 1015 Not marked Marked Not marked Not marked Unlimited
## 1016 Not marked Not marked Not marked Not marked Unlimited
## 1017 Not marked Not marked Not marked Marked Unlimited
## 1018 Not marked Not marked Not marked Marked Unlimited
## 1019 Not marked Not marked Not marked Not marked Unlimited
## 1020 Not marked Not marked Not marked Marked Unlimited
## 1021 Not marked Marked Not marked Not marked Limited
## 1022 Not marked Not marked Not marked Marked Unlimited
## 1023 Not marked Not marked Not marked Not marked Unlimited
## 1024 Not marked Not marked Not marked Not marked <NA>
## 1025 Not marked Not marked Not marked Not marked Unlimited
## 1026 Not marked Not marked Not marked Marked Unlimited
## 1027 Not marked Not marked Not marked Marked Unlimited
## 1028 Not marked Not marked Not marked Marked Limited
## 1029 Not marked Not marked Not marked Not marked Unlimited
## 1030 Marked Not marked Not marked Not marked <NA>
## 1031 Not marked Not marked Not marked Marked Unlimited
## 1032 Not marked Not marked Not marked Not marked Unlimited
## 1033 Not marked Not marked Not marked Marked No contract
## 1034 Not marked Not marked Not marked Marked <NA>
## 1035 Not marked Not marked Not marked Not marked Unlimited
## 1036 Not marked Not marked Not marked Marked Unlimited
## 1037 Not marked Not marked Not marked Not marked Unlimited
## 1038 Not marked Not marked Not marked Marked Unlimited
## 1039 Not marked Not marked Not marked Not marked <NA>
## 1040 Marked Not marked Not marked Not marked Limited
## 1041 Marked Not marked Not marked Not marked Limited
## 1042 Not marked Not marked Not marked Not marked Unlimited
## 1043 Not marked Not marked Not marked Not marked Unlimited
## 1044 Not marked Not marked Not marked Marked No contract
## 1045 Marked Not marked Not marked Not marked Unlimited
## 1046 Not marked Not marked Not marked Not marked <NA>
## 1047 Not marked Marked Not marked Not marked No contract
## 1048 Not marked Not marked Not marked Not marked Unlimited
## 1049 Not marked Not marked Not marked Not marked Unlimited
## 1050 Not marked Not marked Not marked Not marked <NA>
## 1051 Not marked Not marked Not marked Not marked Unlimited
## 1052 Not marked Not marked Not marked Not marked Unlimited
## 1053 Not marked Not marked Not marked Marked Unlimited
## 1054 Not marked Not marked Not marked Marked <NA>
## 1055 Not marked Not marked Not marked Not marked Unlimited
## 1056 Not marked Not marked Not marked Marked Unlimited
## 1057 Not marked Not marked Not marked Marked Unlimited
## 1058 Not marked Not marked Not marked Not marked <NA>
## 1059 Not marked Not marked Not marked Not marked No contract
## 1060 Not marked Not marked Not marked Marked Unlimited
## 1061 Not marked Not marked Not marked Not marked Unlimited
## 1062 Not marked Not marked Not marked Marked Unlimited
## 1063 Not marked Not marked Not marked Marked No contract
## 1064 Not marked Not marked Not marked Not marked <NA>
## 1065 Not marked Not marked Not marked Not marked Unlimited
## 1066 Not marked Not marked Not marked Not marked Unlimited
## 1067 Not marked Not marked Not marked Not marked Unlimited
## 1068 Not marked Not marked Not marked Not marked Unlimited
## 1069 Not marked Not marked Not marked Not marked <NA>
## 1070 Not marked Marked Not marked Not marked Limited
## 1071 Not marked Not marked Marked Not marked No contract
## 1072 Not marked Not marked Not marked Not marked <NA>
## 1073 Not marked Not marked Not marked Marked Unlimited
## 1074 Not marked Not marked Not marked Marked Unlimited
## 1075 Not marked Not marked Not marked Not marked Limited
## 1076 Not marked Not marked Not marked Not marked Unlimited
## 1077 Not marked Not marked Not marked Marked No contract
## 1078 Not marked Not marked Not marked Not marked Unlimited
## 1079 Not marked Not marked Not marked Marked No contract
## 1080 Not marked Not marked Not marked Not marked Unlimited
## 1081 Not marked Not marked Not marked Marked Unlimited
## 1082 Not marked Not marked Not marked Not marked Unlimited
## 1083 Not marked Not marked Not marked Marked Unlimited
## 1084 Not marked Not marked Not marked Not marked Unlimited
## 1085 Not marked Not marked Not marked Not marked <NA>
## 1086 Not marked Not marked Not marked Not marked Unlimited
## 1087 Not marked Not marked Not marked Not marked Unlimited
## 1088 Not marked Not marked Not marked Not marked Unlimited
## 1089 Not marked Not marked Not marked Not marked Unlimited
## 1090 Not marked Not marked Not marked Not marked <NA>
## 1091 Not marked Not marked Not marked Not marked Unlimited
## 1092 Not marked Not marked Not marked Not marked Unlimited
## 1093 Not marked Not marked Not marked Not marked Unlimited
## 1094 Not marked Not marked Not marked Marked Unlimited
## 1095 Not marked Not marked Not marked Marked <NA>
## 1096 Not marked Not marked Not marked Not marked Unlimited
## 1097 Not marked Not marked Not marked Marked Unlimited
## 1098 Not marked Not marked Not marked Not marked Limited
## 1099 Not marked Not marked Not marked Marked Unlimited
## 1100 Not marked Not marked Not marked Not marked Unlimited
## 1101 Not marked Not marked Not marked Not marked Unlimited
## 1102 Not marked Not marked Not marked Marked Unlimited
## 1103 Not marked Not marked Not marked Not marked Unlimited
## 1104 Not marked Not marked Not marked Marked No contract
## 1105 Not marked Not marked Not marked Marked <NA>
## 1106 Not marked Not marked Not marked Not marked Unlimited
## 1107 Not marked Not marked Not marked Not marked Unlimited
## 1108 Not marked Not marked Marked Not marked <NA>
## 1109 Not marked Not marked Not marked Not marked Unlimited
## 1110 Not marked Not marked Not marked Not marked Unlimited
## 1111 Not marked Not marked Not marked Not marked Limited
## 1112 Not marked Not marked Not marked Marked No contract
## 1113 Not marked Not marked Not marked Not marked No contract
## 1114 Not marked Not marked Not marked Marked Limited
## 1115 Not marked Not marked Not marked Marked Unlimited
## 1116 Not marked Not marked Not marked Marked Limited
## 1117 Not marked Not marked Not marked Not marked Unlimited
## 1118 Not marked Marked Not marked Not marked Unlimited
## 1119 Not marked Not marked Not marked Marked No contract
## 1120 Not marked Not marked Not marked Marked <NA>
## 1121 Not marked Not marked Not marked Not marked Unlimited
## 1122 Not marked Not marked Not marked Not marked Unlimited
## 1123 Not marked Not marked Not marked Not marked <NA>
## 1124 Not marked Marked Not marked Not marked <NA>
## 1125 Not marked Not marked Not marked Marked No contract
## 1126 Not marked Not marked Not marked Not marked Unlimited
## 1127 Not marked Not marked Not marked Not marked Limited
## 1128 Not marked Not marked Not marked Marked Unlimited
## 1129 Not marked Not marked Not marked Marked Unlimited
## 1130 Not marked Not marked Not marked Marked Unlimited
## 1131 Marked Not marked Not marked Not marked <NA>
## 1132 Not marked Marked Not marked Not marked Unlimited
## 1133 Not marked Not marked Not marked Not marked Unlimited
## 1134 Not marked Not marked Not marked Not marked Unlimited
## 1135 Not marked Not marked Not marked Marked Unlimited
## 1136 Not marked Not marked Not marked Not marked Unlimited
## 1137 Not marked Not marked Not marked Not marked Unlimited
## 1138 Not marked Not marked Not marked Not marked Unlimited
## 1139 Not marked Not marked Not marked Not marked No contract
## 1140 Not marked Not marked Not marked Not marked Unlimited
## 1141 Not marked Not marked Not marked Marked Unlimited
## 1142 Not marked Not marked Marked Not marked No contract
## 1143 Not marked Not marked Not marked Marked <NA>
## 1144 Not marked Not marked Not marked Marked Limited
## 1145 Not marked Not marked Not marked Marked Unlimited
## 1146 Not marked Not marked Not marked Not marked <NA>
## 1147 Not marked Not marked Not marked Marked No contract
## 1148 Not marked Not marked Not marked Marked Unlimited
## 1149 Not marked Not marked Not marked Not marked Unlimited
## 1150 Not marked Not marked Not marked Not marked Unlimited
## 1151 Not marked Not marked Not marked Marked Unlimited
## 1152 Not marked Not marked Not marked Marked <NA>
## 1153 Marked Not marked Not marked Not marked <NA>
## 1154 Not marked Not marked Not marked Not marked <NA>
## 1155 Not marked Not marked Not marked Marked Unlimited
## 1156 Not marked Not marked Not marked Not marked Unlimited
## 1157 Not marked Not marked Not marked Marked <NA>
## 1158 Not marked Marked Not marked Not marked Unlimited
## 1159 Not marked Not marked Not marked Not marked No contract
## 1160 Not marked Not marked Not marked Not marked Unlimited
## 1161 Not marked Not marked Not marked Marked <NA>
## 1162 Not marked Not marked Not marked Not marked No contract
## 1163 Not marked Not marked Not marked Not marked <NA>
## 1164 Not marked Not marked Not marked Marked Unlimited
## 1165 Not marked Not marked Not marked Not marked Limited
## 1166 Not marked Not marked Not marked Marked Unlimited
## 1167 Not marked Not marked Not marked Marked Unlimited
## 1168 Not marked Not marked Not marked Not marked Unlimited
## 1169 Not marked Not marked Not marked Marked Unlimited
## 1170 Not marked Not marked Not marked Marked Unlimited
## 1171 Not marked Not marked Not marked Not marked Unlimited
## 1172 Not marked Not marked Not marked Marked Unlimited
## 1173 Not marked Not marked Not marked Not marked Unlimited
## 1174 Not marked Not marked Not marked Not marked Limited
## 1175 Not marked Not marked Not marked Not marked Unlimited
## 1176 Marked Not marked Not marked Not marked Unlimited
## 1177 Not marked Not marked Not marked Marked Unlimited
## 1178 Not marked Not marked Not marked Marked Unlimited
## 1179 Marked Not marked Not marked Not marked No contract
## 1180 Not marked Not marked Not marked Not marked Unlimited
## 1181 Not marked Not marked Not marked Not marked No contract
## 1182 Not marked Not marked Marked Not marked Unlimited
## 1183 Not marked Not marked Not marked Marked Unlimited
## 1184 Not marked Not marked Not marked Not marked Unlimited
## 1185 Not marked Not marked Not marked Marked No contract
## 1186 Not marked Not marked Not marked Not marked <NA>
## 1187 Not marked Not marked Not marked Not marked Unlimited
## 1188 Not marked Not marked Not marked Not marked Unlimited
## 1189 Not marked Not marked Not marked Not marked Unlimited
## 1190 Not marked Not marked Not marked Not marked Unlimited
## 1191 Not marked Not marked Not marked Not marked Unlimited
## 1192 Not marked Not marked Not marked Not marked No contract
## 1193 Not marked Not marked Not marked Marked Unlimited
## 1194 Not marked Not marked Not marked Not marked Unlimited
## 1195 Not marked Not marked Not marked Not marked Unlimited
## 1196 Not marked Not marked Not marked Marked <NA>
## 1197 Not marked Not marked Not marked Marked Unlimited
## 1198 Not marked Not marked Not marked Not marked Unlimited
## 1199 Not marked Not marked Not marked Not marked Unlimited
## 1200 Not marked Not marked Not marked Marked No contract
## 1201 Not marked Not marked Not marked Not marked Unlimited
## 1202 Not marked Not marked Not marked Marked No contract
## 1203 Not marked Not marked Not marked Marked Limited
## 1204 Not marked Not marked Not marked Marked No contract
## 1205 Not marked Not marked Marked Not marked <NA>
## 1206 Not marked Not marked Not marked Not marked Unlimited
## 1207 Not marked Not marked Not marked Marked No contract
## 1208 Marked Not marked Not marked Not marked Unlimited
## 1209 Not marked Not marked Not marked Not marked <NA>
## 1210 Not marked Not marked Not marked Marked <NA>
## 1211 Not marked Not marked Not marked Not marked Unlimited
## 1212 Not marked Not marked Not marked Marked Unlimited
## 1213 Not marked Not marked Not marked Not marked Unlimited
## 1214 Not marked Not marked Not marked Not marked No contract
## 1215 Not marked Not marked Not marked Not marked Unlimited
## 1216 Not marked Not marked Not marked Marked Unlimited
## 1217 Not marked Not marked Not marked Marked <NA>
## 1218 Not marked Not marked Not marked Marked <NA>
## 1219 Not marked Not marked Not marked Not marked Unlimited
## 1220 Not marked Not marked Not marked Not marked <NA>
## 1221 Marked Not marked Not marked Not marked Unlimited
## 1222 Not marked Not marked Not marked Not marked Unlimited
## 1223 Not marked Not marked Not marked Not marked Unlimited
## 1224 Not marked Not marked Not marked Not marked <NA>
## 1225 Not marked Not marked Not marked Marked Unlimited
## 1226 Not marked Not marked Not marked Not marked Unlimited
## 1227 Not marked Not marked Not marked Marked <NA>
## 1228 Not marked Not marked Not marked Not marked Limited
## 1229 Not marked Not marked Not marked Not marked <NA>
## 1230 Not marked Not marked Not marked Not marked <NA>
## 1231 Marked Not marked Not marked Not marked Unlimited
## 1232 Not marked Not marked Not marked Not marked Unlimited
## 1233 Not marked Not marked Not marked Not marked Unlimited
## 1234 Not marked Marked Not marked Not marked Limited
## 1235 Not marked Not marked Not marked Not marked Unlimited
## 1236 Not marked Not marked Not marked Marked <NA>
## 1237 Not marked Not marked Not marked Not marked <NA>
## 1238 Not marked Not marked Not marked Marked Unlimited
## 1239 Not marked Not marked Not marked Not marked Unlimited
## 1240 Not marked Not marked Not marked Marked Unlimited
## 1241 Not marked Not marked Not marked Marked Unlimited
## 1242 Not marked Not marked Not marked Not marked <NA>
## 1243 Not marked Not marked Not marked Marked Unlimited
## 1244 Not marked Not marked Not marked Not marked Unlimited
## 1245 Marked Not marked Not marked Not marked Limited
## 1246 Not marked Not marked Not marked Not marked Unlimited
## 1247 Not marked Not marked Not marked Marked Unlimited
## 1248 Not marked Marked Not marked Not marked Limited
## 1249 Not marked Not marked Not marked Not marked Unlimited
## 1250 Not marked Not marked Not marked Not marked Unlimited
## 1251 Not marked Not marked Not marked Marked Unlimited
## 1252 Not marked Not marked Not marked Not marked <NA>
## 1253 Not marked Not marked Not marked Not marked Unlimited
## 1254 Not marked Not marked Not marked Not marked Unlimited
## 1255 Not marked Marked Not marked Not marked Limited
## 1256 Not marked Not marked Not marked Not marked Unlimited
## 1257 Not marked Not marked Not marked Not marked Unlimited
## 1258 Not marked Not marked Not marked Not marked Unlimited
## 1259 Not marked Not marked Not marked Not marked Unlimited
## 1260 Not marked Not marked Not marked Not marked Unlimited
## 1261 Not marked Not marked Not marked Not marked Unlimited
## 1262 Not marked Not marked Not marked Not marked Unlimited
## 1263 Marked Not marked Not marked Not marked <NA>
## 1264 Not marked Not marked Not marked Not marked Unlimited
## 1265 Not marked Not marked Not marked Marked Unlimited
## 1266 Not marked Not marked Not marked Not marked Unlimited
## 1267 Not marked Not marked Not marked Marked Unlimited
## 1268 Not marked Not marked Not marked Not marked <NA>
## 1269 Not marked Not marked Not marked Not marked Unlimited
## 1270 Not marked Not marked Not marked Not marked <NA>
## 1271 Not marked Not marked Not marked Marked Unlimited
## 1272 Not marked Not marked Not marked Not marked No contract
## 1273 Not marked Not marked Not marked Not marked <NA>
## 1274 Not marked Not marked Not marked Marked Unlimited
## 1275 Not marked Marked Not marked Not marked No contract
## 1276 Not marked Not marked Not marked Marked Unlimited
## 1277 Not marked Not marked Not marked Not marked <NA>
## 1278 Not marked Not marked Not marked Not marked Unlimited
## 1279 Marked Not marked Not marked Not marked Limited
## 1280 Not marked Not marked Not marked Marked Unlimited
## 1281 Not marked Not marked Not marked Not marked <NA>
## 1282 Not marked Not marked Not marked Not marked Unlimited
## 1283 Not marked Not marked Not marked Not marked Unlimited
## 1284 Not marked Not marked Not marked Not marked Unlimited
## 1285 Not marked Not marked Not marked Not marked Unlimited
## 1286 Not marked Not marked Not marked Not marked Limited
## 1287 Not marked Not marked Not marked Not marked <NA>
## 1288 Marked Not marked Marked Not marked Limited
## 1289 Not marked Not marked Not marked Not marked Unlimited
## 1290 Not marked Not marked Not marked Not marked Unlimited
## 1291 Not marked Not marked Not marked Marked Unlimited
## 1292 Not marked Not marked Not marked Not marked Unlimited
## 1293 Marked Not marked Not marked Not marked No contract
## 1294 Not marked Not marked Not marked Not marked Limited
## 1295 Not marked Not marked Not marked Marked Unlimited
## 1296 Not marked Not marked Not marked Marked Unlimited
## 1297 Not marked Not marked Not marked Not marked Unlimited
## 1298 Not marked Not marked Not marked Not marked Unlimited
## 1299 Not marked Not marked Not marked Marked Unlimited
## 1300 Not marked Not marked Not marked Marked Unlimited
## 1301 Not marked Not marked Not marked Not marked Unlimited
## 1302 Not marked Not marked Not marked Marked Unlimited
## 1303 Not marked Not marked Not marked Marked Unlimited
## 1304 Not marked Not marked Not marked Not marked Unlimited
## 1305 Not marked Not marked Not marked Not marked Unlimited
## 1306 Not marked Marked Not marked Not marked <NA>
## 1307 Not marked Not marked Not marked Marked Unlimited
## 1308 Marked Not marked Not marked Not marked Unlimited
## 1309 Not marked Not marked Not marked Not marked Unlimited
## 1310 Not marked Not marked Not marked Not marked Unlimited
## 1311 Not marked Not marked Not marked Marked Unlimited
## 1312 Not marked Not marked Not marked Not marked Unlimited
## 1313 Not marked Not marked Not marked Not marked Unlimited
## 1314 Not marked Not marked Not marked Marked <NA>
## 1315 Not marked Not marked Not marked Marked Unlimited
## 1316 Not marked Not marked Not marked Not marked Unlimited
## 1317 Not marked Not marked Not marked Not marked Unlimited
## 1318 Not marked Not marked Not marked Not marked <NA>
## 1319 Not marked Not marked Not marked Marked Unlimited
## 1320 Not marked Not marked Not marked Not marked Unlimited
## 1321 Not marked Not marked Not marked Marked Limited
## 1322 Not marked Not marked Not marked Marked Unlimited
## 1323 Not marked Not marked Not marked Not marked <NA>
## 1324 Not marked Not marked Not marked Not marked Unlimited
## 1325 Not marked Not marked Not marked Not marked No contract
## 1326 Not marked Not marked Not marked Marked Limited
## 1327 Marked Not marked Not marked Not marked No contract
## 1328 Marked Not marked Not marked Not marked Unlimited
## 1329 Not marked Not marked Not marked Marked Unlimited
## 1330 Not marked Not marked Not marked Not marked <NA>
## 1331 Not marked Not marked Not marked Marked Unlimited
## 1332 Not marked Not marked Not marked Not marked Unlimited
## 1333 Not marked Not marked Not marked Marked No contract
## 1334 Not marked Not marked Not marked Not marked Unlimited
## 1335 Not marked Not marked Not marked Not marked No contract
## 1336 Not marked Marked Not marked Not marked Unlimited
## 1337 Not marked Not marked Not marked Marked Unlimited
## 1338 Not marked Not marked Not marked Marked No contract
## 1339 Not marked Not marked Not marked Not marked Unlimited
## 1340 Not marked Not marked Not marked Not marked Limited
## 1341 Not marked Not marked Not marked Marked Unlimited
## 1342 Not marked Not marked Not marked Marked No contract
## 1343 Not marked Not marked Not marked Marked Unlimited
## 1344 Not marked Not marked Not marked Marked No contract
## 1345 Not marked Not marked Not marked Not marked Unlimited
## 1346 Marked Not marked Marked Not marked <NA>
## 1347 Not marked Not marked Not marked Not marked Unlimited
## 1348 Not marked Not marked Not marked Marked <NA>
## 1349 Not marked Not marked Not marked Not marked Unlimited
## 1350 Not marked Not marked Not marked Not marked Unlimited
## 1351 Not marked Not marked Not marked Marked Unlimited
## 1352 Not marked Not marked Not marked Marked Unlimited
## 1353 Not marked Not marked Not marked Marked Unlimited
## 1354 Not marked Not marked Not marked Not marked <NA>
## 1355 Not marked Not marked Not marked Not marked <NA>
## 1356 Not marked Not marked Not marked Marked Unlimited
## 1357 Not marked Not marked Not marked Marked Unlimited
## 1358 Not marked Not marked Not marked Not marked Unlimited
## 1359 Not marked Not marked Not marked Not marked Limited
## 1360 Not marked Not marked Not marked Marked Unlimited
## 1361 Not marked Not marked Not marked Marked No contract
## 1362 Not marked Not marked Not marked Marked Unlimited
## 1363 Not marked Not marked Not marked Not marked Unlimited
## 1364 Not marked Not marked Not marked Marked No contract
## 1365 Not marked Not marked Not marked Not marked <NA>
## 1366 Not marked Not marked Not marked Not marked Unlimited
## 1367 Not marked Not marked Not marked Not marked <NA>
## 1368 Not marked Not marked Not marked Marked Unlimited
## 1369 Not marked Not marked Not marked Marked Unlimited
## 1370 Not marked Not marked Not marked Not marked Unlimited
## 1371 Not marked Not marked Not marked Marked <NA>
## 1372 Not marked Not marked Not marked Not marked Unlimited
## 1373 Not marked Not marked Not marked Not marked Unlimited
## 1374 Not marked Not marked Not marked Not marked Unlimited
## 1375 Not marked Not marked Not marked Not marked <NA>
## 1376 Not marked Not marked Not marked Marked Unlimited
## 1377 Not marked Not marked Not marked Not marked Unlimited
## 1378 Not marked Not marked Not marked Not marked <NA>
## 1379 Not marked Not marked Not marked Not marked <NA>
## 1380 Not marked Not marked Not marked Not marked Unlimited
## 1381 Not marked Not marked Not marked Not marked Unlimited
## 1382 Not marked Not marked Not marked Not marked Unlimited
## 1383 Marked Not marked Not marked Not marked Limited
## 1384 Not marked Not marked Not marked Marked <NA>
## 1385 Not marked Not marked Not marked Not marked Unlimited
## 1386 Marked Not marked Not marked Not marked No contract
## 1387 Not marked Not marked Not marked Not marked Unlimited
## 1388 Not marked Not marked Not marked Not marked No contract
## 1389 Not marked Not marked Not marked Marked Unlimited
## 1390 Not marked Not marked Not marked Not marked No contract
## 1391 Not marked Not marked Not marked Marked Unlimited
## 1392 Not marked Not marked Not marked Not marked <NA>
## 1393 Not marked Not marked Not marked Marked Unlimited
## 1394 Marked Not marked Not marked Not marked Unlimited
## 1395 Not marked Not marked Not marked Not marked Limited
## 1396 Not marked Not marked Not marked Marked <NA>
## 1397 Not marked Not marked Not marked Not marked Unlimited
## 1398 Not marked Not marked Not marked Not marked <NA>
## 1399 Marked Not marked Not marked Not marked <NA>
## 1400 Not marked Not marked Not marked Not marked <NA>
## 1401 Not marked Not marked Not marked Marked Unlimited
## 1402 Not marked Not marked Not marked Not marked No contract
## 1403 Not marked Not marked Not marked Not marked Unlimited
## 1404 Not marked Not marked Not marked Not marked Unlimited
## 1405 Not marked Not marked Not marked Not marked Unlimited
## 1406 Not marked Not marked Not marked Not marked <NA>
## 1407 Not marked Not marked Not marked Marked No contract
## 1408 Not marked Not marked Not marked Not marked Unlimited
## 1409 Not marked Not marked Not marked Not marked Unlimited
## 1410 Not marked Not marked Not marked Marked Unlimited
## 1411 Not marked Not marked Not marked Marked No contract
## 1412 Not marked Not marked Not marked Marked No contract
## 1413 Not marked Not marked Not marked Not marked Unlimited
## 1414 Not marked Not marked Not marked Not marked No contract
## 1415 Not marked Not marked Not marked Marked Unlimited
## 1416 Not marked Not marked Not marked Not marked <NA>
## 1417 Not marked Not marked Not marked Not marked Unlimited
## 1418 Not marked Not marked Not marked Marked Unlimited
## 1419 Not marked Not marked Not marked Not marked Unlimited
## 1420 Not marked Not marked Not marked Marked Unlimited
## 1421 Not marked Not marked Not marked Not marked <NA>
## 1422 Not marked Not marked Not marked Not marked No contract
## 1423 Not marked Not marked Not marked Not marked Unlimited
## 1424 Marked Not marked Not marked Not marked <NA>
## 1425 Not marked Not marked Not marked Not marked No contract
## 1426 Not marked Not marked Not marked Not marked <NA>
## 1427 Not marked Not marked Not marked Not marked Unlimited
## 1428 Not marked Not marked Not marked Not marked <NA>
## 1429 Not marked Not marked Not marked Marked Unlimited
## 1430 Not marked Not marked Not marked Not marked Unlimited
## 1431 Not marked Not marked Not marked Marked Unlimited
## 1432 Not marked Not marked Not marked Marked Unlimited
## 1433 Not marked Not marked Not marked Not marked No contract
## 1434 Marked Not marked Not marked Not marked <NA>
## 1435 Not marked Not marked Not marked Marked Unlimited
## 1436 Not marked Not marked Not marked Not marked Unlimited
## 1437 Not marked Not marked Not marked Not marked Unlimited
## 1438 Not marked Not marked Not marked Not marked Unlimited
## 1439 Not marked Not marked Not marked Marked Unlimited
## 1440 Not marked Not marked Not marked Not marked Unlimited
## 1441 Not marked Not marked Not marked Not marked Unlimited
## 1442 Not marked Not marked Not marked Not marked Limited
## 1443 Not marked Not marked Not marked Marked No contract
## 1444 Not marked Marked Not marked Not marked Unlimited
## 1445 Not marked Not marked Not marked Not marked Unlimited
## 1446 Not marked Not marked Not marked Not marked Unlimited
## 1447 Not marked Not marked Not marked Not marked <NA>
## 1448 Marked Not marked Not marked Not marked Limited
## 1449 Not marked Not marked Not marked Not marked Unlimited
## 1450 Not marked Not marked Not marked Not marked <NA>
## 1451 Not marked Not marked Not marked Marked No contract
## 1452 Not marked Not marked Not marked Marked No contract
## 1453 Not marked Not marked Not marked Not marked Unlimited
## 1454 Marked Marked Not marked Not marked <NA>
## 1455 Not marked Not marked Not marked Marked Unlimited
## 1456 Not marked Not marked Not marked Not marked Unlimited
## 1457 Not marked Not marked Not marked Marked Unlimited
## 1458 Not marked Not marked Not marked Not marked Unlimited
## 1459 Not marked Not marked Not marked Not marked Unlimited
## 1460 Not marked Not marked Not marked Not marked Unlimited
## 1461 Not marked Not marked Not marked Marked Unlimited
## 1462 Not marked Not marked Not marked Not marked <NA>
## 1463 Not marked Not marked Marked Not marked <NA>
## 1464 Not marked Not marked Not marked Marked Unlimited
## 1465 Not marked Not marked Not marked Not marked <NA>
## 1466 Not marked Not marked Not marked Not marked Unlimited
## 1467 Not marked Not marked Not marked Not marked Unlimited
## 1468 Not marked Not marked Not marked Not marked Unlimited
## 1469 Not marked Not marked Not marked Marked <NA>
## 1470 Not marked Not marked Not marked Marked <NA>
## 1471 Not marked Not marked Not marked Marked No contract
## 1472 Not marked Not marked Not marked Marked Unlimited
## 1473 Not marked Not marked Not marked Not marked Unlimited
## 1474 Not marked Not marked Not marked Marked <NA>
## 1475 Not marked Not marked Not marked Not marked Limited
## 1476 Marked Not marked Not marked Not marked No contract
## 1477 Not marked Not marked Not marked Not marked Unlimited
## 1478 Not marked Not marked Not marked Not marked No contract
## 1479 Not marked Not marked Not marked Not marked Unlimited
## 1480 Not marked Not marked Not marked Not marked <NA>
## 1481 Not marked Not marked Not marked Not marked Unlimited
## 1482 Not marked Not marked Not marked Marked No contract
## 1483 Not marked Not marked Not marked Not marked Unlimited
## 1484 Not marked Not marked Not marked Not marked Unlimited
## 1485 Not marked Not marked Not marked Not marked Unlimited
## 1486 Not marked Not marked Not marked Not marked Unlimited
## 1487 Marked Not marked Not marked Not marked Unlimited
## 1488 Not marked Not marked Not marked Marked <NA>
## 1489 Not marked Not marked Not marked Not marked Unlimited
## 1490 Not marked Not marked Not marked Marked Unlimited
## 1491 Not marked Not marked Not marked Marked Unlimited
## 1492 Not marked Not marked Not marked Not marked Unlimited
## 1493 Not marked Not marked Not marked Marked Unlimited
## 1494 Not marked Not marked Not marked Marked Unlimited
## 1495 Marked Not marked Not marked Not marked Unlimited
## 1496 Not marked Not marked Not marked Not marked <NA>
## 1497 Not marked Not marked Not marked Not marked Unlimited
## 1498 Not marked Not marked Not marked Not marked Limited
## 1499 Marked Not marked Not marked Not marked No contract
## 1500 Not marked Not marked Not marked Not marked Unlimited
## 1501 Not marked Not marked Not marked Marked Unlimited
## 1502 Not marked Not marked Not marked Marked Unlimited
## 1503 Not marked Not marked Not marked Not marked No contract
## 1504 Not marked Not marked Not marked Marked Unlimited
## 1505 Not marked Not marked Not marked Not marked Unlimited
## 1506 Not marked Not marked Not marked Not marked Unlimited
## 1507 Not marked Not marked Not marked Marked Unlimited
## 1508 Not marked Not marked Not marked Marked Unlimited
## 1509 Not marked Not marked Not marked Not marked Unlimited
## 1510 Not marked Not marked Marked Not marked <NA>
## 1511 Not marked Not marked Not marked Not marked Unlimited
## 1512 Not marked Not marked Not marked Not marked <NA>
## 1513 Not marked Not marked Not marked Not marked No contract
## 1514 Not marked Not marked Not marked Not marked Unlimited
## 1515 Not marked Not marked Not marked Not marked Unlimited
## 1516 Not marked Not marked Not marked Marked Unlimited
## 1517 Not marked Not marked Not marked Not marked Unlimited
## 1518 Not marked Not marked Not marked Not marked Unlimited
## 1519 Not marked Not marked Not marked Marked Unlimited
## 1520 Not marked Not marked Not marked Not marked <NA>
## 1521 Not marked Not marked Not marked Not marked Unlimited
## 1522 Not marked Not marked Not marked Not marked Unlimited
## 1523 Not marked Not marked Not marked Not marked <NA>
## 1524 Not marked Not marked Not marked Not marked Unlimited
## 1525 Not marked Not marked Not marked Marked <NA>
## 1526 Not marked Not marked Not marked Not marked Unlimited
## 1527 Not marked Not marked Not marked Not marked Unlimited
## 1528 Not marked Not marked Not marked Marked Unlimited
## 1529 Not marked Not marked Not marked Marked Unlimited
## 1530 Not marked Not marked Not marked Marked Unlimited
## 1531 Not marked Not marked Not marked Not marked No contract
## 1532 Not marked Not marked Not marked Not marked Unlimited
## 1533 Not marked Not marked Not marked Not marked <NA>
## 1534 Not marked Not marked Not marked Marked Unlimited
## 1535 Not marked Not marked Not marked Not marked No contract
## 1536 Not marked Not marked Not marked Marked Limited
## 1537 Not marked Not marked Not marked Not marked <NA>
## 1538 Not marked Not marked Not marked Not marked No contract
## 1539 Not marked Not marked Not marked Not marked Unlimited
## 1540 Not marked Not marked Not marked Marked Unlimited
## 1541 Not marked Not marked Not marked Not marked Unlimited
## 1542 Not marked Not marked Not marked Marked Unlimited
## 1543 Not marked Not marked Not marked Not marked Unlimited
## 1544 Not marked Not marked Not marked Marked Unlimited
## 1545 Not marked Not marked Not marked Marked Unlimited
## 1546 Marked Not marked Not marked Not marked <NA>
## 1547 Not marked Not marked Not marked Marked Unlimited
## 1548 Not marked Not marked Not marked Marked Unlimited
## 1549 Not marked Not marked Not marked Not marked Unlimited
## 1550 Not marked Not marked Not marked Marked No contract
## 1551 Not marked Not marked Not marked Not marked Unlimited
## 1552 Not marked Not marked Not marked Not marked Unlimited
## 1553 Not marked Not marked Not marked Marked No contract
## 1554 Not marked Marked Not marked Not marked No contract
## 1555 Not marked Not marked Not marked Marked No contract
## 1556 Not marked Not marked Not marked Marked Unlimited
## 1557 Not marked Not marked Not marked Not marked No contract
## 1558 Not marked Not marked Not marked Marked Unlimited
## 1559 Not marked Not marked Not marked Marked No contract
## 1560 Not marked Not marked Not marked Not marked Unlimited
## 1561 Not marked Not marked Not marked Not marked <NA>
## 1562 Not marked Not marked Not marked Not marked No contract
## 1563 Not marked Not marked Not marked Marked Unlimited
## 1564 Not marked Not marked Not marked Not marked Unlimited
## 1565 Not marked Not marked Not marked Not marked <NA>
## 1566 Not marked Not marked Not marked Not marked <NA>
## 1567 Not marked Not marked Not marked Marked Unlimited
## 1568 Not marked Not marked Not marked Not marked <NA>
## 1569 Not marked Not marked Not marked Marked Limited
## 1570 Not marked Marked Not marked Not marked <NA>
## 1571 Not marked Not marked Not marked Not marked <NA>
## 1572 Not marked Not marked Not marked Not marked Unlimited
## 1573 Not marked Not marked Not marked Not marked <NA>
## 1574 Not marked Not marked Not marked Marked <NA>
## 1575 Not marked Not marked Not marked Not marked Unlimited
## 1576 Not marked Not marked Not marked Not marked Unlimited
## 1577 Not marked Not marked Not marked Marked <NA>
## 1578 Not marked Not marked Not marked Not marked Unlimited
## 1579 Not marked Not marked Not marked Marked Unlimited
## 1580 Not marked Not marked Not marked Not marked <NA>
## 1581 Not marked Not marked Not marked Not marked Unlimited
## 1582 Not marked Not marked Not marked Marked Unlimited
## 1583 Marked Not marked Not marked Not marked <NA>
## 1584 Not marked Not marked Not marked Not marked Unlimited
## 1585 Not marked Not marked Not marked Marked Unlimited
## 1586 Not marked Not marked Not marked Not marked Unlimited
## 1587 Marked Not marked Not marked Not marked No contract
## 1588 Not marked Not marked Not marked Marked <NA>
## 1589 Marked Not marked Not marked Not marked <NA>
## 1590 Not marked Not marked Not marked Not marked <NA>
## 1591 Not marked Not marked Not marked Not marked <NA>
## 1592 Not marked Not marked Not marked Marked Limited
## 1593 Not marked Not marked Not marked Marked Unlimited
## 1594 Not marked Marked Not marked Not marked <NA>
## 1595 Not marked Not marked Not marked Not marked <NA>
## 1596 Not marked Not marked Not marked Not marked Unlimited
## 1597 Not marked Not marked Not marked Not marked <NA>
## 1598 Not marked Not marked Not marked Marked No contract
## 1599 Not marked Not marked Not marked Marked <NA>
## 1600 Not marked Not marked Not marked Not marked <NA>
## 1601 Not marked Not marked Not marked Not marked Unlimited
## 1602 Not marked Not marked Not marked Marked Unlimited
## 1603 Not marked Not marked Not marked Not marked Unlimited
## 1604 Not marked Not marked Not marked Not marked <NA>
## 1605 Not marked Not marked Not marked Not marked Unlimited
## 1606 Not marked Not marked Not marked Not marked Unlimited
## 1607 Not marked Not marked Not marked Marked Unlimited
## 1608 Not marked Not marked Not marked Marked Limited
## 1609 Not marked Not marked Not marked Not marked Unlimited
## 1610 Not marked Not marked Not marked Not marked Unlimited
## 1611 Not marked Not marked Not marked Marked Unlimited
## 1612 Not marked Not marked Not marked Not marked Unlimited
## 1613 Not marked Not marked Not marked Not marked Unlimited
## 1614 Not marked Not marked Not marked Not marked Unlimited
## 1615 Not marked Not marked Not marked Marked <NA>
## 1616 Not marked Not marked Not marked Not marked Unlimited
## 1617 Not marked Not marked Not marked Not marked Unlimited
## 1618 Not marked Not marked Not marked Not marked No contract
## 1619 Not marked Not marked Not marked Marked Unlimited
## 1620 Not marked Not marked Not marked Not marked No contract
## 1621 Not marked Not marked Not marked Marked Unlimited
## 1622 Not marked Not marked Not marked Marked Unlimited
## 1623 Not marked Not marked Not marked Not marked <NA>
## 1624 Not marked Not marked Not marked Marked Unlimited
## 1625 Not marked Not marked Marked Not marked No contract
## 1626 Not marked Not marked Not marked Marked No contract
## 1627 Not marked Not marked Not marked Not marked Unlimited
## 1628 Not marked Not marked Not marked Marked <NA>
## 1629 Not marked Marked Not marked Not marked No contract
## 1630 Not marked Marked Not marked Not marked No contract
## 1631 Not marked Not marked Not marked Marked Unlimited
## 1632 Not marked Not marked Not marked Not marked No contract
## 1633 Not marked Not marked Not marked Marked Unlimited
## 1634 Not marked Not marked Not marked Not marked Unlimited
## 1635 Not marked Not marked Not marked Not marked Limited
## 1636 Marked Not marked Not marked Not marked Unlimited
## 1637 Not marked Not marked Not marked Not marked Unlimited
## 1638 Not marked Not marked Not marked Not marked Unlimited
## 1639 Not marked Not marked Not marked Not marked <NA>
## 1640 Not marked Not marked Not marked Not marked <NA>
## 1641 Not marked Not marked Not marked Not marked Unlimited
## 1642 Not marked Not marked Not marked Not marked Unlimited
## 1643 Not marked Not marked Not marked Not marked Unlimited
## 1644 Not marked Not marked Not marked Not marked Unlimited
## 1645 Not marked Not marked Not marked Not marked No contract
## 1646 Not marked Not marked Not marked Not marked Unlimited
## 1647 Not marked Not marked Not marked Marked Unlimited
## 1648 Not marked Not marked Not marked Marked Unlimited
## 1649 Not marked Not marked Not marked Not marked Unlimited
## 1650 Not marked Not marked Not marked Marked Unlimited
## 1651 Not marked Not marked Not marked Marked Unlimited
## 1652 Not marked Not marked Not marked Not marked No contract
## 1653 Not marked Not marked Not marked Not marked <NA>
## 1654 Not marked Not marked Not marked Marked Unlimited
## 1655 Not marked Not marked Not marked Not marked Unlimited
## 1656 Not marked Not marked Not marked Not marked <NA>
## 1657 Not marked Not marked Not marked Marked Unlimited
## 1658 Not marked Not marked Not marked Marked Unlimited
## 1659 Not marked Not marked Not marked Marked No contract
## 1660 Not marked Not marked Marked Not marked Unlimited
## 1661 Not marked Not marked Not marked Marked No contract
## 1662 Not marked Not marked Not marked Not marked Unlimited
## 1663 Not marked Not marked Not marked Not marked Unlimited
## 1664 Not marked Not marked Not marked Marked Unlimited
## 1665 Not marked Not marked Not marked Not marked Unlimited
## 1666 Not marked Not marked Not marked Not marked Unlimited
## 1667 Not marked Not marked Not marked Not marked Unlimited
## 1668 Not marked Not marked Not marked Marked Unlimited
## 1669 Not marked Not marked Not marked Not marked Unlimited
## 1670 Not marked Not marked Not marked Marked Unlimited
## 1671 Not marked Not marked Not marked Not marked Limited
## 1672 Marked Not marked Not marked Not marked <NA>
## 1673 Not marked Not marked Not marked Not marked <NA>
## 1674 Not marked Not marked Not marked Not marked Unlimited
## 1675 Not marked Not marked Not marked Not marked Unlimited
## 1676 Not marked Not marked Not marked Not marked Unlimited
## 1677 Not marked Not marked Not marked Not marked No contract
## 1678 Not marked Not marked Not marked Not marked <NA>
## 1679 Not marked Not marked Not marked Not marked Unlimited
## 1680 Not marked Not marked Not marked Not marked <NA>
## 1681 Not marked Not marked Not marked Marked Unlimited
## 1682 Not marked Not marked Not marked Marked No contract
## 1683 Not marked Not marked Not marked Not marked <NA>
## 1684 Not marked Not marked Not marked Not marked Unlimited
## 1685 Not marked Not marked Not marked Not marked <NA>
## 1686 Not marked Not marked Not marked Not marked Unlimited
## 1687 Not marked Not marked Not marked Not marked Unlimited
## 1688 Not marked Not marked Not marked Not marked Unlimited
## 1689 Not marked Not marked Not marked Not marked Unlimited
## 1690 Marked Not marked Not marked Not marked Unlimited
## 1691 Not marked Not marked Not marked Not marked Unlimited
## 1692 Not marked Not marked Not marked Not marked No contract
## 1693 Not marked Not marked Not marked Marked No contract
## 1694 Not marked Not marked Not marked Not marked No contract
## 1695 Marked Not marked Not marked Not marked No contract
## 1696 Not marked Not marked Not marked Not marked Unlimited
## 1697 Not marked Not marked Not marked Not marked <NA>
## 1698 Not marked Not marked Not marked Not marked Unlimited
## 1699 Not marked Not marked Not marked Marked Unlimited
## 1700 Not marked Not marked Not marked Not marked Unlimited
## 1701 Not marked Not marked Not marked Not marked <NA>
## 1702 Not marked Not marked Not marked Not marked Unlimited
## 1703 Not marked Not marked Not marked Not marked Unlimited
## 1704 Not marked Not marked Not marked Marked No contract
## 1705 Not marked Not marked Not marked Not marked Limited
## 1706 Marked Not marked Not marked Not marked Limited
## 1707 Not marked Not marked Not marked Not marked Unlimited
## 1708 Not marked Not marked Not marked Not marked Unlimited
## 1709 Not marked Not marked Not marked Not marked Unlimited
## 1710 Not marked Not marked Not marked Not marked Unlimited
## 1711 Not marked Not marked Not marked Not marked No contract
## 1712 Not marked Not marked Not marked Not marked Unlimited
## 1713 Not marked Not marked Not marked Marked No contract
## 1714 Not marked Not marked Not marked Not marked Unlimited
## 1715 Not marked Not marked Not marked Not marked Unlimited
## 1716 Not marked Not marked Not marked Not marked Unlimited
## 1717 Not marked Not marked Not marked Marked <NA>
## 1718 Not marked Not marked Not marked Not marked <NA>
## 1719 Not marked Not marked Not marked Not marked <NA>
## 1720 Not marked Not marked Not marked Marked Unlimited
## 1721 Not marked Marked Not marked Not marked Unlimited
## 1722 Not marked Not marked Not marked Not marked <NA>
## 1723 Not marked Not marked Not marked Marked No contract
## 1724 Not marked Not marked Not marked Not marked <NA>
## 1725 Not marked Not marked Not marked Not marked Limited
## 1726 Not marked Not marked Not marked Not marked Unlimited
## 1727 Not marked Not marked Not marked Not marked Limited
## 1728 Not marked Not marked Not marked Marked Unlimited
## 1729 Not marked Not marked Not marked Not marked Limited
## 1730 Not marked Not marked Not marked Not marked <NA>
## 1731 Not marked Not marked Not marked Not marked <NA>
## 1732 Marked Not marked Not marked Not marked Limited
## 1733 Not marked Not marked Not marked Marked No contract
## 1734 Not marked Not marked Not marked Not marked Unlimited
## 1735 Not marked Not marked Not marked Not marked Unlimited
## 1736 Not marked Not marked Not marked Not marked Unlimited
## 1737 Not marked Not marked Not marked Marked <NA>
## 1738 Not marked Not marked Not marked Not marked No contract
## 1739 Not marked Not marked Not marked Not marked Unlimited
## 1740 Not marked Not marked Not marked Not marked Unlimited
## 1741 Not marked Not marked Not marked Not marked Unlimited
## 1742 Not marked Marked Not marked Not marked Limited
## 1743 Not marked Not marked Not marked Marked Unlimited
## 1744 Not marked Not marked Not marked Not marked Unlimited
## 1745 Not marked Not marked Not marked Not marked Unlimited
## 1746 Not marked Not marked Not marked Not marked Unlimited
## 1747 Not marked Not marked Not marked Not marked Unlimited
## 1748 Not marked Not marked Not marked Not marked No contract
## 1749 Not marked Not marked Not marked Not marked Unlimited
## 1750 Not marked Not marked Not marked Not marked <NA>
## 1751 Not marked Not marked Not marked Marked No contract
## 1752 Not marked Not marked Not marked Not marked <NA>
## 1753 Not marked Not marked Not marked Not marked Unlimited
## 1754 Not marked Not marked Not marked Not marked Limited
## 1755 Not marked Not marked Marked Not marked No contract
## 1756 Not marked Not marked Not marked Marked Unlimited
## 1757 Not marked Not marked Not marked Not marked Unlimited
## 1758 Not marked Not marked Not marked Marked <NA>
## 1759 Not marked Not marked Not marked Not marked <NA>
## 1760 Not marked Not marked Not marked Not marked Unlimited
## 1761 Not marked Not marked Not marked Not marked Unlimited
## 1762 Not marked Not marked Not marked Not marked No contract
## 1763 Not marked Not marked Not marked Not marked No contract
## 1764 Not marked Not marked Not marked Not marked No contract
## 1765 Not marked Not marked Not marked Marked Unlimited
## 1766 Not marked Not marked Not marked Not marked Unlimited
## 1767 Not marked Not marked Not marked Not marked Unlimited
## 1768 Not marked Not marked Not marked Not marked Unlimited
## 1769 Not marked Marked Not marked Not marked <NA>
## 1770 Marked Not marked Not marked Not marked Unlimited
## 1771 Not marked Not marked Not marked Not marked Unlimited
## 1772 Not marked Not marked Not marked Not marked Unlimited
## 1773 Not marked Not marked Not marked Not marked No contract
## 1774 Not marked Not marked Marked Not marked No contract
## 1775 Not marked Not marked Not marked Not marked <NA>
## 1776 Not marked Not marked Not marked Marked <NA>
## 1777 Not marked Not marked Not marked Not marked Unlimited
## 1778 Not marked Not marked Not marked Marked <NA>
## 1779 Not marked Not marked Not marked Not marked Unlimited
## 1780 Not marked Not marked Not marked Not marked Unlimited
## 1781 Not marked Not marked Not marked Not marked <NA>
## 1782 Not marked Not marked Not marked Marked Unlimited
## 1783 Not marked Not marked Not marked Not marked Unlimited
## 1784 Not marked Not marked Not marked Marked <NA>
## 1785 Not marked Not marked Not marked Not marked No contract
## 1786 Not marked Not marked Not marked Marked <NA>
## 1787 Not marked Not marked Not marked Not marked <NA>
## 1788 Not marked Not marked Not marked Not marked Unlimited
## 1789 Not marked Not marked Not marked Not marked <NA>
## 1790 Not marked Not marked Not marked Not marked No contract
## 1791 Not marked Not marked Not marked Marked Unlimited
## 1792 Not marked Not marked Not marked Not marked Unlimited
## 1793 Not marked Not marked Not marked Not marked Unlimited
## 1794 Not marked Not marked Not marked Marked Unlimited
## 1795 Not marked Not marked Not marked Marked Unlimited
## 1796 Not marked Marked Not marked Not marked Unlimited
## 1797 Not marked Not marked Not marked Not marked Unlimited
## 1798 Not marked Not marked Not marked Not marked No contract
## 1799 Not marked Not marked Not marked Not marked <NA>
## 1800 Not marked Not marked Not marked Not marked Unlimited
## 1801 Not marked Not marked Not marked Marked <NA>
## 1802 Not marked Not marked Not marked Not marked Unlimited
## 1803 Not marked Not marked Not marked Not marked <NA>
## 1804 Not marked Not marked Not marked Marked Unlimited
## 1805 Not marked Not marked Not marked Not marked Unlimited
## 1806 Not marked Not marked Not marked Not marked Unlimited
## 1807 Not marked Not marked Not marked Marked Unlimited
## 1808 Not marked Not marked Not marked Not marked <NA>
## 1809 Not marked Marked Not marked Not marked Unlimited
## 1810 Not marked Not marked Not marked Not marked Unlimited
## 1811 Not marked Not marked Not marked Not marked <NA>
## 1812 Not marked Not marked Not marked Marked Unlimited
## 1813 Not marked Not marked Not marked Not marked Unlimited
## 1814 Not marked Not marked Not marked Not marked Limited
## 1815 Not marked Not marked Not marked Marked <NA>
## 1816 Not marked Not marked Not marked Marked Limited
## 1817 Not marked Not marked Not marked Marked Unlimited
## 1818 Not marked Not marked Not marked Marked <NA>
## 1819 Not marked Not marked Not marked Marked Unlimited
## 1820 Not marked Not marked Not marked Not marked Unlimited
## 1821 Not marked Not marked Not marked Marked Unlimited
## 1822 Not marked Not marked Not marked Not marked Unlimited
## 1823 Marked Not marked Not marked Not marked Unlimited
## 1824 Not marked Not marked Not marked Not marked Unlimited
## 1825 Not marked Not marked Not marked Not marked Unlimited
## 1826 Not marked Not marked Not marked Marked Unlimited
## 1827 Not marked Not marked Not marked Not marked Unlimited
## 1828 Not marked Not marked Not marked Not marked Unlimited
## 1829 Not marked Not marked Not marked Not marked <NA>
## 1830 Not marked Not marked Not marked Marked No contract
## 1831 Not marked Not marked Not marked Not marked Unlimited
## 1832 Not marked Not marked Not marked Not marked <NA>
## 1833 Marked Not marked Not marked Not marked <NA>
## 1834 Not marked Not marked Not marked Not marked Unlimited
## 1835 Not marked Not marked Not marked Not marked Unlimited
## 1836 Not marked Not marked Not marked Not marked <NA>
## 1837 Not marked Not marked Not marked Marked Unlimited
## 1838 Not marked Not marked Not marked Marked Unlimited
## 1839 Not marked Not marked Not marked Not marked Unlimited
## 1840 Not marked Not marked Not marked Not marked <NA>
## 1841 Not marked Not marked Not marked Not marked Unlimited
## 1842 Not marked Not marked Not marked Marked Unlimited
## 1843 Not marked Not marked Not marked Marked Unlimited
## 1844 Not marked Not marked Not marked Marked <NA>
## 1845 Not marked Not marked Not marked Marked <NA>
## 1846 Not marked Not marked Not marked Marked Unlimited
## 1847 Not marked Not marked Not marked Marked <NA>
## 1848 Not marked Not marked Not marked Marked Unlimited
## 1849 Not marked Not marked Not marked Not marked No contract
## 1850 Not marked Not marked Not marked Not marked <NA>
## 1851 Not marked Not marked Not marked Marked No contract
## 1852 Not marked Not marked Not marked Not marked Unlimited
## 1853 Not marked Not marked Not marked Not marked No contract
## 1854 Not marked Not marked Not marked Not marked Unlimited
## 1855 Not marked Not marked Not marked Not marked Unlimited
## 1856 Not marked Not marked Not marked Not marked Limited
## 1857 Not marked Not marked Not marked Marked Unlimited
## 1858 Not marked Not marked Marked Not marked Limited
## 1859 Not marked Not marked Not marked Not marked Unlimited
## 1860 Not marked Not marked Not marked Marked No contract
## 1861 Not marked Not marked Not marked Marked Unlimited
## 1862 Not marked Not marked Not marked Not marked Unlimited
## 1863 Not marked Not marked Not marked Not marked Unlimited
## 1864 Not marked Not marked Not marked Not marked Unlimited
## 1865 Marked Not marked Not marked Not marked <NA>
## 1866 Not marked Not marked Not marked Not marked <NA>
## 1867 Not marked Not marked Not marked Not marked Unlimited
## 1868 Not marked Not marked Not marked Not marked Limited
## 1869 Not marked Not marked Not marked Marked Unlimited
## 1870 Not marked Not marked Not marked Marked No contract
## 1871 Not marked Not marked Not marked Not marked No contract
## 1872 Not marked Marked Not marked Not marked <NA>
## 1873 Not marked Not marked Not marked Marked Unlimited
## 1874 Not marked Not marked Not marked Not marked No contract
## 1875 Not marked Not marked Not marked Marked <NA>
## 1876 Not marked Not marked Not marked Marked Unlimited
## 1877 Not marked Not marked Not marked Marked <NA>
## 1878 Not marked Not marked Not marked Not marked <NA>
## 1879 Not marked Not marked Not marked Not marked Unlimited
## 1880 Not marked Not marked Not marked Not marked Unlimited
## 1881 Not marked Not marked Not marked Not marked Unlimited
## 1882 Not marked Not marked Not marked Not marked Unlimited
## 1883 Not marked Not marked Not marked Marked <NA>
## 1884 Not marked Not marked Not marked Marked No contract
## 1885 Not marked Not marked Not marked Marked Unlimited
## 1886 Not marked Not marked Not marked Not marked Limited
## 1887 Not marked Not marked Not marked Not marked <NA>
## 1888 Not marked Not marked Not marked Marked Limited
## 1889 Not marked Not marked Not marked Marked Unlimited
## 1890 Not marked Not marked Not marked Not marked No contract
## 1891 Not marked Not marked Not marked Not marked Unlimited
## 1892 Not marked Marked Not marked Not marked Limited
## 1893 Not marked Not marked Not marked Not marked <NA>
## 1894 Not marked Not marked Not marked Not marked Unlimited
## 1895 Not marked Not marked Not marked Not marked Unlimited
## 1896 Not marked Not marked Not marked Not marked Unlimited
## 1897 Not marked Not marked Not marked Not marked No contract
## 1898 Not marked Not marked Not marked Marked No contract
## 1899 Not marked Not marked Not marked Not marked Unlimited
## 1900 Not marked Not marked Not marked Marked Unlimited
## 1901 Not marked Not marked Not marked Marked Unlimited
## 1902 Not marked Not marked Not marked Marked Unlimited
## 1903 Not marked Not marked Not marked Not marked Unlimited
## 1904 Not marked Not marked Not marked Not marked <NA>
## 1905 Not marked Not marked Not marked Not marked Unlimited
## 1906 Not marked Not marked Not marked Not marked <NA>
## 1907 Not marked Not marked Not marked Marked No contract
## 1908 Not marked Not marked Not marked Not marked <NA>
## 1909 Not marked Not marked Not marked Not marked Limited
## 1910 Not marked Not marked Not marked Not marked Unlimited
## 1911 Not marked Not marked Not marked Not marked Unlimited
## 1912 Not marked Not marked Not marked Not marked Unlimited
## 1913 Not marked Not marked Not marked Not marked Unlimited
## 1914 Not marked Not marked Not marked Not marked Unlimited
## 1915 Not marked Not marked Not marked Not marked No contract
## 1916 Not marked Not marked Not marked Not marked No contract
## 1917 Not marked Not marked Not marked Marked No contract
## 1918 Not marked Not marked Not marked Marked Unlimited
## 1919 Not marked Not marked Not marked Not marked Unlimited
## 1920 Not marked Not marked Not marked Marked Unlimited
## 1921 Not marked Not marked Not marked Marked Unlimited
## 1922 Not marked Not marked Not marked Marked Unlimited
## 1923 Not marked Not marked Not marked Not marked Unlimited
## 1924 Not marked Not marked Not marked Not marked Unlimited
## 1925 Not marked Not marked Not marked Marked Unlimited
## 1926 Not marked Not marked Not marked Not marked Unlimited
## 1927 Not marked Not marked Not marked Not marked Unlimited
## 1928 Not marked Not marked Not marked Marked Unlimited
## 1929 Not marked Not marked Not marked Not marked Limited
## 1930 Not marked Not marked Not marked Marked Unlimited
## 1931 Not marked Not marked Not marked Not marked Unlimited
## 1932 Not marked Not marked Not marked Marked No contract
## 1933 Not marked Not marked Not marked Marked Unlimited
## 1934 Not marked Not marked Marked Not marked Limited
## 1935 Not marked Not marked Not marked Marked Unlimited
## 1936 Not marked Not marked Not marked Marked <NA>
## 1937 Not marked Not marked Not marked Not marked Unlimited
## 1938 Not marked Not marked Not marked Marked No contract
## 1939 Not marked Not marked Not marked Not marked Unlimited
## 1940 Not marked Not marked Marked Not marked Unlimited
## 1941 Not marked Not marked Not marked Not marked <NA>
## 1942 Not marked Not marked Not marked Not marked <NA>
## 1943 Not marked Not marked Not marked Marked Unlimited
## 1944 Not marked Not marked Not marked Marked Unlimited
## 1945 Not marked Not marked Not marked Not marked Unlimited
## 1946 Not marked Not marked Not marked Marked Unlimited
## 1947 Not marked Marked Not marked Not marked Unlimited
## 1948 Not marked Not marked Not marked Not marked <NA>
## 1949 Not marked Not marked Not marked Not marked Unlimited
## 1950 Not marked Not marked Not marked Marked Unlimited
## 1951 Not marked Not marked Not marked Not marked <NA>
## 1952 Not marked Not marked Not marked Not marked Unlimited
## 1953 <NA> <NA> <NA> <NA> <NA>
## 1954 Not marked Not marked Not marked Marked No contract
## 1955 Not marked Not marked Not marked Not marked Unlimited
## 1956 Not marked Not marked Not marked Marked Unlimited
## 1957 Not marked Not marked Not marked Not marked Unlimited
## 1958 Not marked Not marked Not marked Marked <NA>
## 1959 Marked Not marked Not marked Not marked <NA>
## 1960 Not marked Not marked Not marked Not marked No contract
## 1961 Not marked Not marked Not marked Not marked <NA>
## 1962 Not marked Not marked Not marked Not marked <NA>
## 1963 Not marked Not marked Not marked Marked <NA>
## 1964 Not marked Not marked Not marked Marked Unlimited
## 1965 Not marked Not marked Not marked Not marked Unlimited
## 1966 Not marked Not marked Not marked Marked Unlimited
## 1967 Not marked Not marked Not marked Not marked Unlimited
## 1968 Not marked Not marked Not marked Marked Unlimited
## 1969 Not marked Not marked Not marked Marked Unlimited
## 1970 Not marked Not marked Not marked Not marked Unlimited
## 1971 Not marked Not marked Not marked Not marked Unlimited
## 1972 Not marked Not marked Not marked Marked No contract
## 1973 Not marked Not marked Not marked Not marked Unlimited
## 1974 Not marked Not marked Not marked Marked <NA>
## 1975 Not marked Not marked Not marked Not marked Unlimited
## 1976 Not marked Not marked Not marked Marked <NA>
## 1977 Marked Not marked Not marked Not marked No contract
## 1978 Not marked Not marked Not marked Not marked <NA>
## 1979 Not marked Not marked Not marked Not marked Unlimited
## 1980 Not marked Not marked Not marked Marked Unlimited
## 1981 Not marked Not marked Not marked Not marked Unlimited
## 1982 Not marked Not marked Not marked Not marked Unlimited
## 1983 Not marked Not marked Not marked Not marked <NA>
## 1984 Not marked Not marked Marked Not marked Unlimited
## 1985 Not marked Not marked Not marked Not marked Unlimited
## 1986 Not marked Not marked Not marked Not marked Unlimited
## 1987 Not marked Not marked Not marked Marked Unlimited
## 1988 Not marked Not marked Not marked Not marked No contract
## 1989 Not marked Not marked Not marked Not marked Unlimited
## 1990 Not marked Not marked Not marked Not marked Unlimited
## 1991 Not marked Not marked Not marked Marked <NA>
## 1992 Not marked Not marked Not marked Not marked No contract
## 1993 Not marked Not marked Not marked Not marked Unlimited
## 1994 Not marked Marked Not marked Not marked Unlimited
## 1995 Not marked Not marked Not marked Marked <NA>
## 1996 Not marked Not marked Not marked Not marked Unlimited
## 1997 Not marked Not marked Not marked Marked Unlimited
## 1998 Not marked Not marked Not marked Marked <NA>
## 1999 Marked Not marked Not marked Not marked Limited
## 2000 Not marked Not marked Not marked Marked <NA>
## 2001 Not marked Not marked Not marked Not marked Limited
## 2002 Marked Not marked Not marked Not marked <NA>
## 2003 Not marked Not marked Not marked Marked Unlimited
## 2004 Not marked Not marked Not marked Not marked <NA>
## 2005 Not marked Not marked Not marked Not marked Unlimited
## 2006 Not marked Not marked Not marked Not marked Unlimited
## 2007 Not marked Not marked Not marked Not marked Unlimited
## 2008 Not marked Marked Marked Not marked Limited
## 2009 Not marked Not marked Not marked Not marked Unlimited
## 2010 Not marked Not marked Not marked Not marked Limited
## 2011 Not marked Not marked Not marked Marked No contract
## 2012 Not marked Not marked Not marked Not marked Unlimited
## 2013 Not marked Not marked Not marked Not marked Limited
## 2014 Not marked Not marked Not marked Not marked Unlimited
## 2015 Not marked Not marked Not marked Not marked Unlimited
## 2016 Not marked Not marked Not marked Marked Unlimited
## 2017 Not marked Not marked Not marked Not marked No contract
## 2018 Not marked Not marked Not marked Marked Unlimited
## 2019 Not marked Not marked Not marked Marked Unlimited
## 2020 Not marked Not marked Not marked Marked Unlimited
## 2021 Not marked Not marked Not marked Marked Unlimited
## 2022 Not marked Marked Not marked Not marked Limited
## 2023 Not marked Not marked Not marked Not marked Unlimited
## 2024 Not marked Marked Not marked Not marked Unlimited
## 2025 Not marked Not marked Not marked Marked Unlimited
## 2026 Not marked Not marked Not marked Marked Limited
## 2027 Not marked Not marked Not marked Not marked <NA>
## 2028 Not marked Not marked Not marked Not marked Unlimited
## 2029 Not marked Not marked Not marked Not marked No contract
## 2030 Not marked Not marked Not marked Not marked Unlimited
## 2031 Not marked Not marked Not marked Not marked Unlimited
## 2032 Not marked Not marked Not marked Not marked Unlimited
## 2033 Marked Not marked Not marked Not marked Unlimited
## 2034 Not marked Not marked Not marked Not marked Unlimited
## 2035 Not marked Not marked Not marked Not marked No contract
## 2036 Not marked Not marked Not marked Marked Unlimited
## 2037 Not marked Not marked Not marked Not marked <NA>
## 2038 Not marked Not marked Not marked Not marked Unlimited
## 2039 Not marked Not marked Not marked Marked <NA>
## 2040 Not marked Not marked Not marked Marked <NA>
## 2041 Not marked Not marked Not marked Marked Unlimited
## 2042 Marked Not marked Not marked Not marked <NA>
## 2043 Not marked Not marked Not marked Marked Unlimited
## 2044 Not marked Not marked Not marked Not marked Limited
## 2045 Not marked Not marked Not marked Not marked Limited
## 2046 Not marked Not marked Not marked Marked <NA>
## 2047 Not marked Not marked Not marked Not marked No contract
## 2048 Not marked Not marked Not marked Not marked Unlimited
## 2049 Not marked Not marked Not marked Marked <NA>
## 2050 Not marked Not marked Not marked Not marked Unlimited
## 2051 Not marked Not marked Not marked Not marked Unlimited
## 2052 Not marked Not marked Not marked Marked <NA>
## 2053 Not marked Not marked Not marked Not marked Unlimited
## 2054 Not marked Not marked Not marked Not marked Limited
## 2055 Not marked Not marked Not marked Not marked Limited
## 2056 Not marked Not marked Not marked Not marked <NA>
## 2057 Not marked Not marked Not marked Marked Unlimited
## 2058 Not marked Not marked Not marked Marked No contract
## 2059 Not marked Not marked Not marked Not marked Unlimited
## 2060 Not marked Not marked Not marked Not marked Unlimited
## 2061 Not marked Not marked Not marked Marked Unlimited
## 2062 Not marked Not marked Not marked Marked Unlimited
## 2063 Not marked Marked Not marked Not marked No contract
## 2064 Not marked Not marked Not marked Marked <NA>
## 2065 Not marked Not marked Not marked Not marked Unlimited
## 2066 Not marked Not marked Not marked Marked Unlimited
## 2067 Not marked Not marked Not marked Not marked Unlimited
## 2068 Not marked Marked Not marked Not marked Unlimited
## 2069 Not marked Not marked Not marked Marked <NA>
## 2070 Not marked Not marked Not marked Not marked <NA>
## 2071 Marked Not marked Not marked Not marked <NA>
## 2072 Not marked Not marked Not marked Marked Unlimited
## 2073 Not marked Not marked Not marked Marked Unlimited
## 2074 Not marked Not marked Not marked Marked Unlimited
## 2075 Not marked Not marked Not marked Marked Unlimited
## 2076 Not marked Not marked Not marked Marked Unlimited
## 2077 Not marked Not marked Not marked Not marked Unlimited
## 2078 Not marked Not marked Not marked Not marked <NA>
## 2079 Marked Not marked Not marked Not marked No contract
## 2080 Not marked Not marked Not marked Not marked <NA>
## 2081 Not marked Not marked Not marked Not marked Unlimited
## 2082 Not marked Not marked Not marked Not marked No contract
## 2083 Not marked Not marked Not marked Not marked No contract
## 2084 Not marked Not marked Not marked Not marked <NA>
## 2085 Not marked Not marked Not marked Not marked <NA>
## 2086 Not marked Not marked Not marked Marked Unlimited
## 2087 Not marked Not marked Not marked Not marked Unlimited
## 2088 Not marked Not marked Not marked Marked Unlimited
## 2089 Not marked Not marked Not marked Not marked Unlimited
## 2090 Not marked Not marked Not marked Not marked <NA>
## 2091 Not marked Not marked Not marked Not marked Unlimited
## 2092 Not marked Not marked Not marked Not marked Unlimited
## 2093 Not marked Not marked Not marked Not marked Unlimited
## 2094 Not marked Not marked Not marked Not marked No contract
## 2095 Not marked Not marked Not marked Marked Limited
## 2096 Not marked Not marked Not marked Marked Unlimited
## 2097 Not marked Not marked Not marked Not marked Unlimited
## 2098 Not marked Not marked Not marked Not marked No contract
## 2099 Not marked Not marked Not marked Not marked Unlimited
## 2100 Not marked Not marked Not marked Not marked Unlimited
## 2101 Not marked Not marked Not marked Not marked Unlimited
## 2102 Not marked Not marked Not marked Not marked Unlimited
## 2103 Not marked Not marked Not marked Not marked Unlimited
## 2104 Not marked Marked Not marked Not marked Unlimited
## 2105 Marked Not marked Not marked Not marked <NA>
## 2106 Not marked Not marked Not marked Not marked <NA>
## 2107 Not marked Not marked Not marked Not marked Unlimited
## 2108 Not marked Not marked Not marked Not marked Limited
## 2109 Not marked Not marked Not marked Not marked Unlimited
## 2110 Not marked Not marked Not marked Not marked No contract
## 2111 Not marked Not marked Not marked Marked Unlimited
## 2112 Not marked Not marked Not marked Marked <NA>
## 2113 Not marked Not marked Not marked Marked Unlimited
## 2114 Not marked Not marked Not marked Not marked Unlimited
## 2115 Not marked Not marked Not marked Not marked Unlimited
## 2116 Not marked Not marked Not marked Not marked Unlimited
## 2117 Not marked Not marked Not marked Marked Unlimited
## 2118 Not marked Not marked Not marked Not marked No contract
## 2119 Not marked Not marked Not marked Not marked Unlimited
## 2120 Not marked Not marked Not marked Not marked Unlimited
## 2121 Not marked Not marked Not marked Not marked No contract
## 2122 Marked Not marked Not marked Not marked <NA>
## 2123 Not marked Not marked Not marked Not marked Unlimited
## 2124 Not marked Not marked Not marked Not marked No contract
## 2125 Not marked Not marked Not marked Marked Unlimited
## 2126 Not marked Not marked Not marked Not marked <NA>
## 2127 Not marked Not marked Not marked Marked Unlimited
## 2128 Not marked Not marked Not marked Marked Unlimited
## 2129 Not marked Not marked Not marked Marked Unlimited
## 2130 Not marked Not marked Not marked Marked No contract
## 2131 Not marked Not marked Not marked Not marked Unlimited
## 2132 Not marked Not marked Not marked Not marked Unlimited
## 2133 Not marked Marked Not marked Not marked Unlimited
## 2134 Not marked Not marked Not marked Not marked Limited
## 2135 Not marked Not marked Not marked Not marked <NA>
## 2136 Not marked Not marked Not marked Marked Unlimited
## 2137 Not marked Not marked Not marked Not marked Limited
## 2138 Not marked Not marked Not marked Marked No contract
## 2139 Marked Marked Not marked Not marked Limited
## 2140 Not marked Not marked Not marked Marked <NA>
## 2141 Not marked Not marked Not marked Marked Unlimited
## 2142 Not marked Not marked Not marked Not marked Unlimited
## 2143 Not marked Not marked Not marked Not marked <NA>
## 2144 Not marked Not marked Not marked Not marked No contract
## 2145 Not marked Not marked Not marked Marked Unlimited
## 2146 Not marked Not marked Not marked Not marked <NA>
## 2147 Not marked Not marked Not marked Marked Unlimited
## 2148 Not marked Not marked Not marked Marked Unlimited
## 2149 Not marked Not marked Not marked Not marked Unlimited
## 2150 Not marked Not marked Not marked Marked Unlimited
## 2151 Not marked Not marked Not marked Not marked <NA>
## 2152 Not marked Not marked Not marked Marked Unlimited
## 2153 Not marked Not marked Not marked Not marked Unlimited
## 2154 Not marked Not marked Not marked Not marked Unlimited
## 2155 Not marked Not marked Not marked Marked No contract
## 2156 Not marked Not marked Not marked Not marked <NA>
## 2157 Not marked Not marked Not marked Marked No contract
## 2158 Not marked Not marked Not marked Not marked Unlimited
## 2159 Not marked Not marked Not marked Marked Unlimited
## 2160 Marked Not marked Not marked Not marked <NA>
## 2161 Not marked Marked Not marked Not marked Limited
## 2162 Not marked Not marked Not marked Not marked Unlimited
## 2163 Not marked Not marked Not marked Marked Limited
## 2164 Not marked Not marked Not marked Not marked Unlimited
## 2165 Not marked Not marked Not marked Marked Limited
## 2166 Not marked Not marked Not marked Not marked Unlimited
## 2167 Not marked Not marked Marked Not marked Unlimited
## 2168 Not marked Not marked Not marked Marked Unlimited
## 2169 Not marked Not marked Not marked Not marked Unlimited
## 2170 Not marked Not marked Not marked Not marked Unlimited
## 2171 Not marked Not marked Not marked Marked <NA>
## 2172 Not marked Not marked Not marked Not marked Limited
## 2173 Not marked Not marked Not marked Marked Unlimited
## 2174 Not marked Not marked Not marked Not marked Unlimited
## 2175 Not marked Not marked Not marked Marked Unlimited
## 2176 Not marked Not marked Not marked Not marked Unlimited
## 2177 Marked Not marked Not marked Not marked <NA>
## 2178 Not marked Not marked Not marked Not marked Unlimited
## 2179 Not marked Not marked Marked Not marked Unlimited
## 2180 Not marked Not marked Not marked Not marked <NA>
## 2181 Not marked Not marked Not marked Not marked Unlimited
## 2182 Not marked Not marked Not marked Not marked Unlimited
## 2183 Not marked Not marked Not marked Not marked Unlimited
## 2184 Not marked Not marked Not marked Marked Unlimited
## 2185 Not marked Not marked Not marked Not marked <NA>
## 2186 Not marked Not marked Not marked Not marked <NA>
## 2187 Not marked Marked Not marked Not marked Unlimited
## 2188 Marked Not marked Not marked Not marked <NA>
## 2189 Not marked Not marked Not marked Not marked Unlimited
## 2190 Not marked Not marked Not marked Not marked Unlimited
## 2191 Not marked Not marked Not marked Not marked Unlimited
## 2192 Not marked Not marked Not marked Not marked Unlimited
## 2193 Not marked Not marked Not marked Marked Unlimited
## 2194 Not marked Not marked Not marked Not marked <NA>
## 2195 Not marked Marked Not marked Not marked <NA>
## 2196 Not marked Marked Not marked Not marked Limited
## 2197 Not marked Not marked Not marked Marked Unlimited
## 2198 Not marked Not marked Not marked Marked Unlimited
## 2199 Not marked Not marked Not marked Not marked Unlimited
## 2200 Not marked Not marked Not marked Not marked Limited
## 2201 Not marked Marked Not marked Not marked <NA>
## 2202 Not marked Not marked Not marked Not marked Unlimited
## 2203 Not marked Not marked Not marked Not marked Unlimited
## 2204 Not marked Not marked Not marked Marked <NA>
## 2205 Not marked Not marked Not marked Marked Unlimited
## 2206 Not marked Not marked Not marked Not marked <NA>
## 2207 Not marked Not marked Not marked Not marked <NA>
## 2208 Not marked Not marked Not marked Not marked Unlimited
## 2209 Not marked Not marked Not marked Not marked <NA>
## 2210 Not marked Not marked Not marked Marked Unlimited
## 2211 Not marked Not marked Not marked Not marked No contract
## 2212 Not marked Not marked Not marked Not marked Unlimited
## 2213 Not marked Not marked Not marked Marked Limited
## 2214 Not marked Not marked Not marked Not marked Unlimited
## 2215 Not marked Not marked Not marked Marked Unlimited
## 2216 Not marked Marked Not marked Not marked Limited
## 2217 Not marked Not marked Not marked Not marked Unlimited
## 2218 Marked Not marked Not marked Not marked Limited
## 2219 Not marked Not marked Not marked Marked <NA>
## 2220 Not marked Not marked Not marked Not marked Limited
## 2221 Not marked Not marked Not marked Marked Unlimited
## 2222 Not marked Not marked Not marked Not marked Unlimited
## 2223 Not marked Marked Not marked Not marked Unlimited
## 2224 Not marked Not marked Not marked Not marked Unlimited
## 2225 Not marked Not marked Not marked Not marked Unlimited
## 2226 Not marked Not marked Not marked Not marked No contract
## 2227 Not marked Not marked Not marked Not marked <NA>
## 2228 Not marked Not marked Not marked Marked Unlimited
## 2229 Not marked Not marked Not marked Marked Unlimited
## 2230 Marked Not marked Not marked Not marked Limited
## 2231 Marked Not marked Not marked Not marked Unlimited
## 2232 Not marked Not marked Not marked Not marked Unlimited
## 2233 Marked Not marked Not marked Not marked No contract
## 2234 Not marked Not marked Not marked Marked No contract
## 2235 Not marked Not marked Not marked Not marked Unlimited
## 2236 Not marked Not marked Not marked Not marked Unlimited
## 2237 Not marked Not marked Not marked Marked No contract
## 2238 Not marked Marked Not marked Not marked Unlimited
## 2239 Not marked Not marked Not marked Not marked Limited
## 2240 Not marked Not marked Not marked Marked Unlimited
## 2241 Not marked Not marked Not marked Marked <NA>
## 2242 Not marked Not marked Not marked Not marked No contract
## 2243 Not marked Not marked Not marked Not marked Unlimited
## 2244 Not marked Not marked Marked Not marked <NA>
## 2245 Marked Not marked Not marked Not marked <NA>
## 2246 Not marked Not marked Not marked Not marked <NA>
## 2247 Not marked Not marked Not marked Not marked No contract
## 2248 Not marked Not marked Not marked Marked Unlimited
## 2249 Not marked Not marked Not marked Not marked Unlimited
## 2250 Not marked Not marked Not marked Marked <NA>
## 2251 Not marked Not marked Not marked Not marked No contract
## 2252 Not marked Not marked Not marked Marked Unlimited
## 2253 Not marked Not marked Not marked Not marked Unlimited
## 2254 Not marked Not marked Not marked Not marked <NA>
## 2255 Not marked Not marked Not marked Not marked Unlimited
## 2256 Not marked Not marked Marked Not marked <NA>
## 2257 Not marked Not marked Not marked Marked <NA>
## 2258 Not marked Not marked Not marked Marked No contract
## 2259 Not marked Not marked Not marked Not marked <NA>
## 2260 Not marked Not marked Not marked Not marked Unlimited
## 2261 Not marked Not marked Not marked Not marked Unlimited
## 2262 Not marked Not marked Not marked Not marked <NA>
## 2263 Not marked Not marked Not marked Marked Unlimited
## 2264 Not marked Not marked Not marked Not marked <NA>
## 2265 Not marked Not marked Not marked Marked Unlimited
## 2266 <NA> <NA> <NA> <NA> <NA>
## 2267 <NA> <NA> <NA> <NA> <NA>
## 2268 <NA> <NA> <NA> <NA> <NA>
## 2269 <NA> <NA> <NA> <NA> <NA>
## 2270 <NA> <NA> <NA> <NA> <NA>
## 2271 <NA> <NA> <NA> <NA> <NA>
## 2272 <NA> <NA> <NA> <NA> <NA>
## 2273 <NA> <NA> <NA> <NA> <NA>
## 2274 <NA> <NA> <NA> <NA> <NA>
## 2275 <NA> <NA> <NA> <NA> <NA>
## 2276 <NA> <NA> <NA> <NA> <NA>
## 2277 <NA> <NA> <NA> <NA> <NA>
## 2278 <NA> <NA> <NA> <NA> <NA>
## 2279 <NA> <NA> <NA> <NA> <NA>
## 2280 <NA> <NA> <NA> <NA> <NA>
## 2281 <NA> <NA> <NA> <NA> <NA>
## 2282 <NA> <NA> <NA> <NA> <NA>
## 2283 <NA> <NA> <NA> <NA> <NA>
## 2284 <NA> <NA> <NA> <NA> <NA>
## 2285 <NA> <NA> <NA> <NA> <NA>
## 2286 <NA> <NA> <NA> <NA> <NA>
## 2287 <NA> <NA> <NA> <NA> <NA>
## 2288 <NA> <NA> <NA> <NA> <NA>
## 2289 <NA> <NA> <NA> <NA> <NA>
## 2290 <NA> <NA> <NA> <NA> <NA>
## 2291 <NA> <NA> <NA> <NA> <NA>
## 2292 <NA> <NA> <NA> <NA> <NA>
## 2293 <NA> <NA> <NA> <NA> <NA>
## 2294 <NA> <NA> <NA> <NA> <NA>
## 2295 <NA> <NA> <NA> <NA> <NA>
## 2296 <NA> <NA> <NA> <NA> <NA>
## 2297 <NA> <NA> <NA> <NA> <NA>
## 2298 <NA> <NA> <NA> <NA> <NA>
## 2299 <NA> <NA> <NA> <NA> <NA>
## 2300 <NA> <NA> <NA> <NA> <NA>
## 2301 <NA> <NA> <NA> <NA> <NA>
## 2302 <NA> <NA> <NA> <NA> <NA>
## 2303 <NA> <NA> <NA> <NA> <NA>
## 2304 <NA> <NA> <NA> <NA> <NA>
## 2305 <NA> <NA> <NA> <NA> <NA>
## 2306 <NA> <NA> <NA> <NA> <NA>
## 2307 <NA> <NA> <NA> <NA> <NA>
## 2308 <NA> <NA> <NA> <NA> <NA>
## 2309 <NA> <NA> <NA> <NA> <NA>
## 2310 <NA> <NA> <NA> <NA> <NA>
## 2311 <NA> <NA> <NA> <NA> <NA>
## 2312 <NA> <NA> <NA> <NA> <NA>
## 2313 <NA> <NA> <NA> <NA> <NA>
## 2314 <NA> <NA> <NA> <NA> <NA>
## 2315 <NA> <NA> <NA> <NA> <NA>
## 2316 <NA> <NA> <NA> <NA> <NA>
## 2317 <NA> <NA> <NA> <NA> <NA>
## 2318 <NA> <NA> <NA> <NA> <NA>
## 2319 <NA> <NA> <NA> <NA> <NA>
## 2320 <NA> <NA> <NA> <NA> <NA>
## 2321 <NA> <NA> <NA> <NA> <NA>
## 2322 <NA> <NA> <NA> <NA> <NA>
## 2323 <NA> <NA> <NA> <NA> <NA>
## 2324 <NA> <NA> <NA> <NA> <NA>
## 2325 <NA> <NA> <NA> <NA> <NA>
## 2326 <NA> <NA> <NA> <NA> <NA>
## 2327 <NA> <NA> <NA> <NA> <NA>
## 2328 <NA> <NA> <NA> <NA> <NA>
## 2329 <NA> <NA> <NA> <NA> <NA>
## 2330 <NA> <NA> <NA> <NA> <NA>
## 2331 <NA> <NA> <NA> <NA> <NA>
## 2332 <NA> <NA> <NA> <NA> <NA>
## 2333 <NA> <NA> <NA> <NA> <NA>
## 2334 <NA> <NA> <NA> <NA> <NA>
## 2335 <NA> <NA> <NA> <NA> <NA>
## 2336 <NA> <NA> <NA> <NA> <NA>
## 2337 <NA> <NA> <NA> <NA> <NA>
## 2338 <NA> <NA> <NA> <NA> <NA>
## 2339 <NA> <NA> <NA> <NA> <NA>
## 2340 <NA> <NA> <NA> <NA> <NA>
## 2341 <NA> <NA> <NA> <NA> <NA>
## 2342 <NA> <NA> <NA> <NA> <NA>
## 2343 <NA> <NA> <NA> <NA> <NA>
## 2344 <NA> <NA> <NA> <NA> <NA>
## 2345 <NA> <NA> <NA> <NA> <NA>
## 2346 <NA> <NA> <NA> <NA> <NA>
## 2347 <NA> <NA> <NA> <NA> <NA>
## 2348 <NA> <NA> <NA> <NA> <NA>
## 2349 <NA> <NA> <NA> <NA> <NA>
## 2350 <NA> <NA> <NA> <NA> <NA>
## 2351 <NA> <NA> <NA> <NA> <NA>
## 2352 <NA> <NA> <NA> <NA> <NA>
## 2353 <NA> <NA> <NA> <NA> <NA>
## 2354 <NA> <NA> <NA> <NA> <NA>
## 2355 <NA> <NA> <NA> <NA> <NA>
## 2356 <NA> <NA> <NA> <NA> <NA>
## 2357 <NA> <NA> <NA> <NA> <NA>
## 2358 <NA> <NA> <NA> <NA> <NA>
## 2359 <NA> <NA> <NA> <NA> <NA>
## 2360 <NA> <NA> <NA> <NA> <NA>
## 2361 <NA> <NA> <NA> <NA> <NA>
## 2362 <NA> <NA> <NA> <NA> <NA>
## 2363 <NA> <NA> <NA> <NA> <NA>
## 2364 <NA> <NA> <NA> <NA> <NA>
## 2365 <NA> <NA> <NA> <NA> <NA>
## 2366 <NA> <NA> <NA> <NA> <NA>
## 2367 <NA> <NA> <NA> <NA> <NA>
## 2368 <NA> <NA> <NA> <NA> <NA>
## 2369 <NA> <NA> <NA> <NA> <NA>
## 2370 <NA> <NA> <NA> <NA> <NA>
## 2371 <NA> <NA> <NA> <NA> <NA>
## 2372 <NA> <NA> <NA> <NA> <NA>
## 2373 <NA> <NA> <NA> <NA> <NA>
## 2374 <NA> <NA> <NA> <NA> <NA>
## 2375 <NA> <NA> <NA> <NA> <NA>
## 2376 <NA> <NA> <NA> <NA> <NA>
## 2377 <NA> <NA> <NA> <NA> <NA>
## 2378 <NA> <NA> <NA> <NA> <NA>
## 2379 <NA> <NA> <NA> <NA> <NA>
## 2380 <NA> <NA> <NA> <NA> <NA>
## 2381 <NA> <NA> <NA> <NA> <NA>
## 2382 <NA> <NA> <NA> <NA> <NA>
## 2383 <NA> <NA> <NA> <NA> <NA>
## 2384 <NA> <NA> <NA> <NA> <NA>
## 2385 <NA> <NA> <NA> <NA> <NA>
## 2386 <NA> <NA> <NA> <NA> <NA>
## 2387 <NA> <NA> <NA> <NA> <NA>
## 2388 <NA> <NA> <NA> <NA> <NA>
## 2389 <NA> <NA> <NA> <NA> <NA>
## 2390 <NA> <NA> <NA> <NA> <NA>
## 2391 <NA> <NA> <NA> <NA> <NA>
## 2392 <NA> <NA> <NA> <NA> <NA>
## 2393 <NA> <NA> <NA> <NA> <NA>
## 2394 <NA> <NA> <NA> <NA> <NA>
## 2395 <NA> <NA> <NA> <NA> <NA>
## 2396 <NA> <NA> <NA> <NA> <NA>
## 2397 <NA> <NA> <NA> <NA> <NA>
## 2398 <NA> <NA> <NA> <NA> <NA>
## 2399 <NA> <NA> <NA> <NA> <NA>
## 2400 <NA> <NA> <NA> <NA> <NA>
## 2401 <NA> <NA> <NA> <NA> <NA>
## 2402 <NA> <NA> <NA> <NA> <NA>
## 2403 <NA> <NA> <NA> <NA> <NA>
## 2404 <NA> <NA> <NA> <NA> <NA>
## 2405 <NA> <NA> <NA> <NA> <NA>
## 2406 <NA> <NA> <NA> <NA> <NA>
## 2407 <NA> <NA> <NA> <NA> <NA>
## 2408 <NA> <NA> <NA> <NA> <NA>
## 2409 <NA> <NA> <NA> <NA> <NA>
## 2410 <NA> <NA> <NA> <NA> <NA>
## 2411 <NA> <NA> <NA> <NA> <NA>
## 2412 <NA> <NA> <NA> <NA> <NA>
## 2413 <NA> <NA> <NA> <NA> <NA>
## 2414 <NA> <NA> <NA> <NA> <NA>
## 2415 <NA> <NA> <NA> <NA> <NA>
## 2416 <NA> <NA> <NA> <NA> <NA>
## 2417 <NA> <NA> <NA> <NA> <NA>
## 2418 <NA> <NA> <NA> <NA> <NA>
## 2419 <NA> <NA> <NA> <NA> <NA>
## 2420 <NA> <NA> <NA> <NA> <NA>
## 2421 <NA> <NA> <NA> <NA> <NA>
## 2422 <NA> <NA> <NA> <NA> <NA>
## 2423 <NA> <NA> <NA> <NA> <NA>
## 2424 <NA> <NA> <NA> <NA> <NA>
## 2425 <NA> <NA> <NA> <NA> <NA>
## 2426 <NA> <NA> <NA> <NA> <NA>
## 2427 <NA> <NA> <NA> <NA> <NA>
## 2428 <NA> <NA> <NA> <NA> <NA>
## 2429 <NA> <NA> <NA> <NA> <NA>
## 2430 <NA> <NA> <NA> <NA> <NA>
## 2431 <NA> <NA> <NA> <NA> <NA>
## 2432 <NA> <NA> <NA> <NA> <NA>
## 2433 <NA> <NA> <NA> <NA> <NA>
## 2434 <NA> <NA> <NA> <NA> <NA>
## 2435 <NA> <NA> <NA> <NA> <NA>
## 2436 <NA> <NA> <NA> <NA> <NA>
## 2437 <NA> <NA> <NA> <NA> <NA>
## 2438 <NA> <NA> <NA> <NA> <NA>
## 2439 <NA> <NA> <NA> <NA> <NA>
## 2440 <NA> <NA> <NA> <NA> <NA>
## 2441 <NA> <NA> <NA> <NA> <NA>
## 2442 <NA> <NA> <NA> <NA> <NA>
## 2443 <NA> <NA> <NA> <NA> <NA>
## 2444 <NA> <NA> <NA> <NA> <NA>
## 2445 <NA> <NA> <NA> <NA> <NA>
## 2446 <NA> <NA> <NA> <NA> <NA>
## 2447 <NA> <NA> <NA> <NA> <NA>
## 2448 <NA> <NA> <NA> <NA> <NA>
## 2449 <NA> <NA> <NA> <NA> <NA>
## 2450 <NA> <NA> <NA> <NA> <NA>
## 2451 <NA> <NA> <NA> <NA> <NA>
## 2452 <NA> <NA> <NA> <NA> <NA>
## 2453 <NA> <NA> <NA> <NA> <NA>
## 2454 <NA> <NA> <NA> <NA> <NA>
## 2455 <NA> <NA> <NA> <NA> <NA>
## 2456 <NA> <NA> <NA> <NA> <NA>
## 2457 <NA> <NA> <NA> <NA> <NA>
## 2458 <NA> <NA> <NA> <NA> <NA>
## 2459 <NA> <NA> <NA> <NA> <NA>
## 2460 <NA> <NA> <NA> <NA> <NA>
## 2461 <NA> <NA> <NA> <NA> <NA>
## 2462 <NA> <NA> <NA> <NA> <NA>
## 2463 <NA> <NA> <NA> <NA> <NA>
## 2464 <NA> <NA> <NA> <NA> <NA>
## 2465 <NA> <NA> <NA> <NA> <NA>
## 2466 <NA> <NA> <NA> <NA> <NA>
## 2467 <NA> <NA> <NA> <NA> <NA>
## 2468 <NA> <NA> <NA> <NA> <NA>
## 2469 <NA> <NA> <NA> <NA> <NA>
## 2470 <NA> <NA> <NA> <NA> <NA>
## 2471 <NA> <NA> <NA> <NA> <NA>
## 2472 <NA> <NA> <NA> <NA> <NA>
## 2473 <NA> <NA> <NA> <NA> <NA>
## 2474 <NA> <NA> <NA> <NA> <NA>
## 2475 <NA> <NA> <NA> <NA> <NA>
## 2476 <NA> <NA> <NA> <NA> <NA>
## 2477 <NA> <NA> <NA> <NA> <NA>
## 2478 <NA> <NA> <NA> <NA> <NA>
## 2479 <NA> <NA> <NA> <NA> <NA>
## 2480 <NA> <NA> <NA> <NA> <NA>
## 2481 <NA> <NA> <NA> <NA> <NA>
## 2482 <NA> <NA> <NA> <NA> <NA>
## 2483 <NA> <NA> <NA> <NA> <NA>
## 2484 <NA> <NA> <NA> <NA> <NA>
## 2485 <NA> <NA> <NA> <NA> <NA>
## 2486 <NA> <NA> <NA> <NA> <NA>
## 2487 <NA> <NA> <NA> <NA> <NA>
## 2488 <NA> <NA> <NA> <NA> <NA>
## 2489 <NA> <NA> <NA> <NA> <NA>
## 2490 <NA> <NA> <NA> <NA> <NA>
## 2491 <NA> <NA> <NA> <NA> <NA>
## 2492 <NA> <NA> <NA> <NA> <NA>
## 2493 <NA> <NA> <NA> <NA> <NA>
## 2494 <NA> <NA> <NA> <NA> <NA>
## 2495 <NA> <NA> <NA> <NA> <NA>
## 2496 <NA> <NA> <NA> <NA> <NA>
## 2497 <NA> <NA> <NA> <NA> <NA>
## 2498 <NA> <NA> <NA> <NA> <NA>
## 2499 <NA> <NA> <NA> <NA> <NA>
## 2500 <NA> <NA> <NA> <NA> <NA>
## 2501 <NA> <NA> <NA> <NA> <NA>
## 2502 <NA> <NA> <NA> <NA> <NA>
## 2503 <NA> <NA> <NA> <NA> <NA>
## 2504 <NA> <NA> <NA> <NA> <NA>
## 2505 <NA> <NA> <NA> <NA> <NA>
## 2506 <NA> <NA> <NA> <NA> <NA>
## 2507 <NA> <NA> <NA> <NA> <NA>
## 2508 <NA> <NA> <NA> <NA> <NA>
## 2509 <NA> <NA> <NA> <NA> <NA>
## 2510 <NA> <NA> <NA> <NA> <NA>
## 2511 <NA> <NA> <NA> <NA> <NA>
## 2512 <NA> <NA> <NA> <NA> <NA>
## 2513 <NA> <NA> <NA> <NA> <NA>
## 2514 <NA> <NA> <NA> <NA> <NA>
## 2515 <NA> <NA> <NA> <NA> <NA>
## 2516 <NA> <NA> <NA> <NA> <NA>
## 2517 <NA> <NA> <NA> <NA> <NA>
## 2518 <NA> <NA> <NA> <NA> <NA>
## 2519 <NA> <NA> <NA> <NA> <NA>
## 2520 <NA> <NA> <NA> <NA> <NA>
## 2521 <NA> <NA> <NA> <NA> <NA>
## 2522 <NA> <NA> <NA> <NA> <NA>
## 2523 <NA> <NA> <NA> <NA> <NA>
## 2524 <NA> <NA> <NA> <NA> <NA>
## 2525 <NA> <NA> <NA> <NA> <NA>
## 2526 <NA> <NA> <NA> <NA> <NA>
## 2527 <NA> <NA> <NA> <NA> <NA>
## 2528 <NA> <NA> <NA> <NA> <NA>
## 2529 <NA> <NA> <NA> <NA> <NA>
## 2530 <NA> <NA> <NA> <NA> <NA>
## 2531 <NA> <NA> <NA> <NA> <NA>
## 2532 <NA> <NA> <NA> <NA> <NA>
## 2533 <NA> <NA> <NA> <NA> <NA>
## 2534 <NA> <NA> <NA> <NA> <NA>
## 2535 <NA> <NA> <NA> <NA> <NA>
## 2536 <NA> <NA> <NA> <NA> <NA>
## 2537 <NA> <NA> <NA> <NA> <NA>
## 2538 <NA> <NA> <NA> <NA> <NA>
## 2539 <NA> <NA> <NA> <NA> <NA>
## 2540 <NA> <NA> <NA> <NA> <NA>
## 2541 <NA> <NA> <NA> <NA> <NA>
## 2542 <NA> <NA> <NA> <NA> <NA>
## 2543 <NA> <NA> <NA> <NA> <NA>
## 2544 <NA> <NA> <NA> <NA> <NA>
## 2545 <NA> <NA> <NA> <NA> <NA>
## 2546 <NA> <NA> <NA> <NA> <NA>
## 2547 <NA> <NA> <NA> <NA> <NA>
## 2548 <NA> <NA> <NA> <NA> <NA>
## 2549 <NA> <NA> <NA> <NA> <NA>
## 2550 <NA> <NA> <NA> <NA> <NA>
## 2551 <NA> <NA> <NA> <NA> <NA>
## 2552 <NA> <NA> <NA> <NA> <NA>
## 2553 <NA> <NA> <NA> <NA> <NA>
## 2554 <NA> <NA> <NA> <NA> <NA>
## 2555 <NA> <NA> <NA> <NA> <NA>
## 2556 <NA> <NA> <NA> <NA> <NA>
## 2557 <NA> <NA> <NA> <NA> <NA>
## 2558 <NA> <NA> <NA> <NA> <NA>
## 2559 <NA> <NA> <NA> <NA> <NA>
## 2560 <NA> <NA> <NA> <NA> <NA>
## 2561 <NA> <NA> <NA> <NA> <NA>
## 2562 <NA> <NA> <NA> <NA> <NA>
## 2563 <NA> <NA> <NA> <NA> <NA>
## 2564 <NA> <NA> <NA> <NA> <NA>
## 2565 <NA> <NA> <NA> <NA> <NA>
## 2566 <NA> <NA> <NA> <NA> <NA>
## 2567 <NA> <NA> <NA> <NA> <NA>
## 2568 <NA> <NA> <NA> <NA> <NA>
## 2569 <NA> <NA> <NA> <NA> <NA>
## 2570 <NA> <NA> <NA> <NA> <NA>
## 2571 <NA> <NA> <NA> <NA> <NA>
## 2572 <NA> <NA> <NA> <NA> <NA>
## 2573 <NA> <NA> <NA> <NA> <NA>
## 2574 <NA> <NA> <NA> <NA> <NA>
## 2575 <NA> <NA> <NA> <NA> <NA>
## 2576 <NA> <NA> <NA> <NA> <NA>
## 2577 <NA> <NA> <NA> <NA> <NA>
## 2578 <NA> <NA> <NA> <NA> <NA>
## 2579 <NA> <NA> <NA> <NA> <NA>
## 2580 <NA> <NA> <NA> <NA> <NA>
## 2581 <NA> <NA> <NA> <NA> <NA>
## 2582 <NA> <NA> <NA> <NA> <NA>
## 2583 <NA> <NA> <NA> <NA> <NA>
## 2584 <NA> <NA> <NA> <NA> <NA>
## 2585 <NA> <NA> <NA> <NA> <NA>
## 2586 <NA> <NA> <NA> <NA> <NA>
## 2587 <NA> <NA> <NA> <NA> <NA>
## 2588 <NA> <NA> <NA> <NA> <NA>
## 2589 <NA> <NA> <NA> <NA> <NA>
## 2590 <NA> <NA> <NA> <NA> <NA>
## 2591 <NA> <NA> <NA> <NA> <NA>
## 2592 <NA> <NA> <NA> <NA> <NA>
## 2593 <NA> <NA> <NA> <NA> <NA>
## 2594 <NA> <NA> <NA> <NA> <NA>
## 2595 <NA> <NA> <NA> <NA> <NA>
## 2596 <NA> <NA> <NA> <NA> <NA>
## 2597 <NA> <NA> <NA> <NA> <NA>
## 2598 <NA> <NA> <NA> <NA> <NA>
## 2599 <NA> <NA> <NA> <NA> <NA>
## 2600 <NA> <NA> <NA> <NA> <NA>
## 2601 <NA> <NA> <NA> <NA> <NA>
## 2602 <NA> <NA> <NA> <NA> <NA>
## 2603 <NA> <NA> <NA> <NA> <NA>
## 2604 <NA> <NA> <NA> <NA> <NA>
## 2605 <NA> <NA> <NA> <NA> <NA>
## 2606 <NA> <NA> <NA> <NA> <NA>
## 2607 <NA> <NA> <NA> <NA> <NA>
## 2608 <NA> <NA> <NA> <NA> <NA>
## 2609 <NA> <NA> <NA> <NA> <NA>
## 2610 <NA> <NA> <NA> <NA> <NA>
## 2611 <NA> <NA> <NA> <NA> <NA>
## 2612 <NA> <NA> <NA> <NA> <NA>
## 2613 <NA> <NA> <NA> <NA> <NA>
## 2614 <NA> <NA> <NA> <NA> <NA>
## 2615 <NA> <NA> <NA> <NA> <NA>
## 2616 <NA> <NA> <NA> <NA> <NA>
## 2617 <NA> <NA> <NA> <NA> <NA>
## 2618 <NA> <NA> <NA> <NA> <NA>
## 2619 <NA> <NA> <NA> <NA> <NA>
## 2620 <NA> <NA> <NA> <NA> <NA>
## 2621 <NA> <NA> <NA> <NA> <NA>
## 2622 <NA> <NA> <NA> <NA> <NA>
## 2623 <NA> <NA> <NA> <NA> <NA>
## 2624 <NA> <NA> <NA> <NA> <NA>
## 2625 <NA> <NA> <NA> <NA> <NA>
## 2626 <NA> <NA> <NA> <NA> <NA>
## 2627 <NA> <NA> <NA> <NA> <NA>
## 2628 <NA> <NA> <NA> <NA> <NA>
## 2629 <NA> <NA> <NA> <NA> <NA>
## 2630 <NA> <NA> <NA> <NA> <NA>
## 2631 <NA> <NA> <NA> <NA> <NA>
## 2632 <NA> <NA> <NA> <NA> <NA>
## 2633 <NA> <NA> <NA> <NA> <NA>
## 2634 <NA> <NA> <NA> <NA> <NA>
## 2635 <NA> <NA> <NA> <NA> <NA>
## 2636 <NA> <NA> <NA> <NA> <NA>
## 2637 <NA> <NA> <NA> <NA> <NA>
## 2638 <NA> <NA> <NA> <NA> <NA>
## 2639 <NA> <NA> <NA> <NA> <NA>
## 2640 <NA> <NA> <NA> <NA> <NA>
## 2641 <NA> <NA> <NA> <NA> <NA>
## 2642 <NA> <NA> <NA> <NA> <NA>
## 2643 <NA> <NA> <NA> <NA> <NA>
## 2644 <NA> <NA> <NA> <NA> <NA>
## 2645 <NA> <NA> <NA> <NA> <NA>
## 2646 <NA> <NA> <NA> <NA> <NA>
## 2647 <NA> <NA> <NA> <NA> <NA>
## 2648 <NA> <NA> <NA> <NA> <NA>
## 2649 <NA> <NA> <NA> <NA> <NA>
## 2650 <NA> <NA> <NA> <NA> <NA>
## 2651 <NA> <NA> <NA> <NA> <NA>
## 2652 <NA> <NA> <NA> <NA> <NA>
## 2653 <NA> <NA> <NA> <NA> <NA>
## 2654 <NA> <NA> <NA> <NA> <NA>
## 2655 <NA> <NA> <NA> <NA> <NA>
## 2656 <NA> <NA> <NA> <NA> <NA>
## 2657 <NA> <NA> <NA> <NA> <NA>
## 2658 <NA> <NA> <NA> <NA> <NA>
## 2659 <NA> <NA> <NA> <NA> <NA>
## 2660 <NA> <NA> <NA> <NA> <NA>
## 2661 <NA> <NA> <NA> <NA> <NA>
## 2662 <NA> <NA> <NA> <NA> <NA>
## 2663 <NA> <NA> <NA> <NA> <NA>
## 2664 <NA> <NA> <NA> <NA> <NA>
## 2665 <NA> <NA> <NA> <NA> <NA>
## 2666 <NA> <NA> <NA> <NA> <NA>
## 2667 <NA> <NA> <NA> <NA> <NA>
## 2668 <NA> <NA> <NA> <NA> <NA>
## 2669 <NA> <NA> <NA> <NA> <NA>
## 2670 <NA> <NA> <NA> <NA> <NA>
## 2671 <NA> <NA> <NA> <NA> <NA>
## 2672 <NA> <NA> <NA> <NA> <NA>
## 2673 <NA> <NA> <NA> <NA> <NA>
## 2674 <NA> <NA> <NA> <NA> <NA>
## 2675 <NA> <NA> <NA> <NA> <NA>
## 2676 <NA> <NA> <NA> <NA> <NA>
## 2677 <NA> <NA> <NA> <NA> <NA>
## 2678 <NA> <NA> <NA> <NA> <NA>
## 2679 <NA> <NA> <NA> <NA> <NA>
## 2680 <NA> <NA> <NA> <NA> <NA>
## 2681 <NA> <NA> <NA> <NA> <NA>
## 2682 <NA> <NA> <NA> <NA> <NA>
## 2683 <NA> <NA> <NA> <NA> <NA>
## 2684 <NA> <NA> <NA> <NA> <NA>
## 2685 <NA> <NA> <NA> <NA> <NA>
## 2686 <NA> <NA> <NA> <NA> <NA>
## 2687 <NA> <NA> <NA> <NA> <NA>
## 2688 <NA> <NA> <NA> <NA> <NA>
## 2689 <NA> <NA> <NA> <NA> <NA>
## 2690 <NA> <NA> <NA> <NA> <NA>
## 2691 <NA> <NA> <NA> <NA> <NA>
## 2692 <NA> <NA> <NA> <NA> <NA>
## 2693 <NA> <NA> <NA> <NA> <NA>
## 2694 <NA> <NA> <NA> <NA> <NA>
## 2695 <NA> <NA> <NA> <NA> <NA>
## 2696 <NA> <NA> <NA> <NA> <NA>
## 2697 <NA> <NA> <NA> <NA> <NA>
## 2698 <NA> <NA> <NA> <NA> <NA>
## 2699 <NA> <NA> <NA> <NA> <NA>
## 2700 <NA> <NA> <NA> <NA> <NA>
## 2701 <NA> <NA> <NA> <NA> <NA>
## 2702 <NA> <NA> <NA> <NA> <NA>
## 2703 <NA> <NA> <NA> <NA> <NA>
## 2704 <NA> <NA> <NA> <NA> <NA>
## 2705 <NA> <NA> <NA> <NA> <NA>
## 2706 <NA> <NA> <NA> <NA> <NA>
## 2707 <NA> <NA> <NA> <NA> <NA>
## 2708 <NA> <NA> <NA> <NA> <NA>
## 2709 <NA> <NA> <NA> <NA> <NA>
## 2710 <NA> <NA> <NA> <NA> <NA>
## 2711 <NA> <NA> <NA> <NA> <NA>
## 2712 <NA> <NA> <NA> <NA> <NA>
## 2713 <NA> <NA> <NA> <NA> <NA>
## 2714 <NA> <NA> <NA> <NA> <NA>
## 2715 <NA> <NA> <NA> <NA> <NA>
## 2716 <NA> <NA> <NA> <NA> <NA>
## 2717 <NA> <NA> <NA> <NA> <NA>
## 2718 <NA> <NA> <NA> <NA> <NA>
## 2719 <NA> <NA> <NA> <NA> <NA>
## 2720 <NA> <NA> <NA> <NA> <NA>
## 2721 <NA> <NA> <NA> <NA> <NA>
## 2722 <NA> <NA> <NA> <NA> <NA>
## 2723 <NA> <NA> <NA> <NA> <NA>
## 2724 <NA> <NA> <NA> <NA> <NA>
## 2725 <NA> <NA> <NA> <NA> <NA>
## 2726 <NA> <NA> <NA> <NA> <NA>
## 2727 <NA> <NA> <NA> <NA> <NA>
## 2728 <NA> <NA> <NA> <NA> <NA>
## 2729 <NA> <NA> <NA> <NA> <NA>
## 2730 <NA> <NA> <NA> <NA> <NA>
## 2731 <NA> <NA> <NA> <NA> <NA>
## 2732 <NA> <NA> <NA> <NA> <NA>
## 2733 <NA> <NA> <NA> <NA> <NA>
## 2734 <NA> <NA> <NA> <NA> <NA>
## 2735 <NA> <NA> <NA> <NA> <NA>
## 2736 <NA> <NA> <NA> <NA> <NA>
## 2737 <NA> <NA> <NA> <NA> <NA>
## 2738 <NA> <NA> <NA> <NA> <NA>
## 2739 <NA> <NA> <NA> <NA> <NA>
## 2740 <NA> <NA> <NA> <NA> <NA>
## 2741 <NA> <NA> <NA> <NA> <NA>
## 2742 <NA> <NA> <NA> <NA> <NA>
## 2743 <NA> <NA> <NA> <NA> <NA>
## 2744 <NA> <NA> <NA> <NA> <NA>
## 2745 <NA> <NA> <NA> <NA> <NA>
## 2746 <NA> <NA> <NA> <NA> <NA>
## 2747 <NA> <NA> <NA> <NA> <NA>
## 2748 <NA> <NA> <NA> <NA> <NA>
## 2749 <NA> <NA> <NA> <NA> <NA>
## 2750 <NA> <NA> <NA> <NA> <NA>
## 2751 <NA> <NA> <NA> <NA> <NA>
## 2752 <NA> <NA> <NA> <NA> <NA>
## 2753 <NA> <NA> <NA> <NA> <NA>
## 2754 <NA> <NA> <NA> <NA> <NA>
## 2755 <NA> <NA> <NA> <NA> <NA>
## 2756 <NA> <NA> <NA> <NA> <NA>
## 2757 <NA> <NA> <NA> <NA> <NA>
## 2758 <NA> <NA> <NA> <NA> <NA>
## 2759 <NA> <NA> <NA> <NA> <NA>
## 2760 <NA> <NA> <NA> <NA> <NA>
## 2761 <NA> <NA> <NA> <NA> <NA>
## 2762 <NA> <NA> <NA> <NA> <NA>
## 2763 <NA> <NA> <NA> <NA> <NA>
## 2764 <NA> <NA> <NA> <NA> <NA>
## 2765 <NA> <NA> <NA> <NA> <NA>
## 2766 <NA> <NA> <NA> <NA> <NA>
## 2767 <NA> <NA> <NA> <NA> <NA>
## 2768 <NA> <NA> <NA> <NA> <NA>
## 2769 <NA> <NA> <NA> <NA> <NA>
## 2770 <NA> <NA> <NA> <NA> <NA>
## 2771 <NA> <NA> <NA> <NA> <NA>
## 2772 <NA> <NA> <NA> <NA> <NA>
## 2773 <NA> <NA> <NA> <NA> <NA>
## 2774 <NA> <NA> <NA> <NA> <NA>
## 2775 <NA> <NA> <NA> <NA> <NA>
## 2776 <NA> <NA> <NA> <NA> <NA>
## 2777 <NA> <NA> <NA> <NA> <NA>
## 2778 <NA> <NA> <NA> <NA> <NA>
## 2779 <NA> <NA> <NA> <NA> <NA>
## 2780 <NA> <NA> <NA> <NA> <NA>
## 2781 <NA> <NA> <NA> <NA> <NA>
## 2782 <NA> <NA> <NA> <NA> <NA>
## 2783 <NA> <NA> <NA> <NA> <NA>
## 2784 <NA> <NA> <NA> <NA> <NA>
## 2785 <NA> <NA> <NA> <NA> <NA>
## 2786 <NA> <NA> <NA> <NA> <NA>
## 2787 <NA> <NA> <NA> <NA> <NA>
## 2788 <NA> <NA> <NA> <NA> <NA>
## 2789 <NA> <NA> <NA> <NA> <NA>
## 2790 <NA> <NA> <NA> <NA> <NA>
## 2791 <NA> <NA> <NA> <NA> <NA>
## 2792 <NA> <NA> <NA> <NA> <NA>
## 2793 <NA> <NA> <NA> <NA> <NA>
## 2794 <NA> <NA> <NA> <NA> <NA>
## 2795 <NA> <NA> <NA> <NA> <NA>
## 2796 <NA> <NA> <NA> <NA> <NA>
## 2797 <NA> <NA> <NA> <NA> <NA>
## 2798 <NA> <NA> <NA> <NA> <NA>
## 2799 <NA> <NA> <NA> <NA> <NA>
## 2800 <NA> <NA> <NA> <NA> <NA>
## 2801 <NA> <NA> <NA> <NA> <NA>
## 2802 <NA> <NA> <NA> <NA> <NA>
## 2803 <NA> <NA> <NA> <NA> <NA>
## 2804 <NA> <NA> <NA> <NA> <NA>
## 2805 <NA> <NA> <NA> <NA> <NA>
## 2806 <NA> <NA> <NA> <NA> <NA>
## 2807 <NA> <NA> <NA> <NA> <NA>
## 2808 <NA> <NA> <NA> <NA> <NA>
## 2809 <NA> <NA> <NA> <NA> <NA>
## 2810 <NA> <NA> <NA> <NA> <NA>
## 2811 <NA> <NA> <NA> <NA> <NA>
## 2812 <NA> <NA> <NA> <NA> <NA>
## 2813 <NA> <NA> <NA> <NA> <NA>
## 2814 <NA> <NA> <NA> <NA> <NA>
## 2815 <NA> <NA> <NA> <NA> <NA>
## 2816 <NA> <NA> <NA> <NA> <NA>
## 2817 <NA> <NA> <NA> <NA> <NA>
## 2818 <NA> <NA> <NA> <NA> <NA>
## 2819 <NA> <NA> <NA> <NA> <NA>
## 2820 <NA> <NA> <NA> <NA> <NA>
## 2821 <NA> <NA> <NA> <NA> <NA>
## 2822 <NA> <NA> <NA> <NA> <NA>
## 2823 <NA> <NA> <NA> <NA> <NA>
## 2824 <NA> <NA> <NA> <NA> <NA>
## 2825 <NA> <NA> <NA> <NA> <NA>
## 2826 <NA> <NA> <NA> <NA> <NA>
## 2827 <NA> <NA> <NA> <NA> <NA>
## 2828 <NA> <NA> <NA> <NA> <NA>
## 2829 <NA> <NA> <NA> <NA> <NA>
## 2830 <NA> <NA> <NA> <NA> <NA>
## 2831 <NA> <NA> <NA> <NA> <NA>
## 2832 <NA> <NA> <NA> <NA> <NA>
## 2833 <NA> <NA> <NA> <NA> <NA>
## 2834 <NA> <NA> <NA> <NA> <NA>
## 2835 <NA> <NA> <NA> <NA> <NA>
## 2836 <NA> <NA> <NA> <NA> <NA>
## 2837 <NA> <NA> <NA> <NA> <NA>
## 2838 <NA> <NA> <NA> <NA> <NA>
## 2839 <NA> <NA> <NA> <NA> <NA>
## 2840 <NA> <NA> <NA> <NA> <NA>
## 2841 <NA> <NA> <NA> <NA> <NA>
## 2842 <NA> <NA> <NA> <NA> <NA>
## 2843 <NA> <NA> <NA> <NA> <NA>
## 2844 <NA> <NA> <NA> <NA> <NA>
## 2845 <NA> <NA> <NA> <NA> <NA>
## 2846 <NA> <NA> <NA> <NA> <NA>
## 2847 <NA> <NA> <NA> <NA> <NA>
## 2848 <NA> <NA> <NA> <NA> <NA>
## 2849 <NA> <NA> <NA> <NA> <NA>
## 2850 <NA> <NA> <NA> <NA> <NA>
## 2851 <NA> <NA> <NA> <NA> <NA>
## 2852 <NA> <NA> <NA> <NA> <NA>
## 2853 <NA> <NA> <NA> <NA> <NA>
## 2854 <NA> <NA> <NA> <NA> <NA>
## 2855 <NA> <NA> <NA> <NA> <NA>
## 2856 <NA> <NA> <NA> <NA> <NA>
## 2857 <NA> <NA> <NA> <NA> <NA>
## 2858 <NA> <NA> <NA> <NA> <NA>
## 2859 <NA> <NA> <NA> <NA> <NA>
## 2860 <NA> <NA> <NA> <NA> <NA>
## 2861 <NA> <NA> <NA> <NA> <NA>
## 2862 <NA> <NA> <NA> <NA> <NA>
## 2863 <NA> <NA> <NA> <NA> <NA>
## 2864 <NA> <NA> <NA> <NA> <NA>
## 2865 <NA> <NA> <NA> <NA> <NA>
## 2866 <NA> <NA> <NA> <NA> <NA>
## 2867 <NA> <NA> <NA> <NA> <NA>
## 2868 <NA> <NA> <NA> <NA> <NA>
## 2869 <NA> <NA> <NA> <NA> <NA>
## 2870 <NA> <NA> <NA> <NA> <NA>
## 2871 <NA> <NA> <NA> <NA> <NA>
## 2872 <NA> <NA> <NA> <NA> <NA>
## 2873 <NA> <NA> <NA> <NA> <NA>
## 2874 <NA> <NA> <NA> <NA> <NA>
## 2875 <NA> <NA> <NA> <NA> <NA>
## 2876 <NA> <NA> <NA> <NA> <NA>
## 2877 <NA> <NA> <NA> <NA> <NA>
## 2878 <NA> <NA> <NA> <NA> <NA>
## 2879 <NA> <NA> <NA> <NA> <NA>
## 2880 <NA> <NA> <NA> <NA> <NA>
## 2881 <NA> <NA> <NA> <NA> <NA>
## 2882 <NA> <NA> <NA> <NA> <NA>
## 2883 <NA> <NA> <NA> <NA> <NA>
## 2884 <NA> <NA> <NA> <NA> <NA>
## 2885 <NA> <NA> <NA> <NA> <NA>
## 2886 <NA> <NA> <NA> <NA> <NA>
## 2887 <NA> <NA> <NA> <NA> <NA>
## 2888 <NA> <NA> <NA> <NA> <NA>
## 2889 <NA> <NA> <NA> <NA> <NA>
## 2890 <NA> <NA> <NA> <NA> <NA>
## 2891 <NA> <NA> <NA> <NA> <NA>
## 2892 <NA> <NA> <NA> <NA> <NA>
## 2893 <NA> <NA> <NA> <NA> <NA>
## 2894 <NA> <NA> <NA> <NA> <NA>
## 2895 <NA> <NA> <NA> <NA> <NA>
## 2896 <NA> <NA> <NA> <NA> <NA>
## 2897 <NA> <NA> <NA> <NA> <NA>
## 2898 <NA> <NA> <NA> <NA> <NA>
## 2899 <NA> <NA> <NA> <NA> <NA>
## 2900 <NA> <NA> <NA> <NA> <NA>
## 2901 <NA> <NA> <NA> <NA> <NA>
## 2902 <NA> <NA> <NA> <NA> <NA>
## 2903 <NA> <NA> <NA> <NA> <NA>
## 2904 <NA> <NA> <NA> <NA> <NA>
## 2905 <NA> <NA> <NA> <NA> <NA>
## 2906 <NA> <NA> <NA> <NA> <NA>
## 2907 <NA> <NA> <NA> <NA> <NA>
## 2908 <NA> <NA> <NA> <NA> <NA>
## 2909 <NA> <NA> <NA> <NA> <NA>
## 2910 <NA> <NA> <NA> <NA> <NA>
## 2911 <NA> <NA> <NA> <NA> <NA>
## 2912 <NA> <NA> <NA> <NA> <NA>
## 2913 <NA> <NA> <NA> <NA> <NA>
## 2914 <NA> <NA> <NA> <NA> <NA>
## 2915 <NA> <NA> <NA> <NA> <NA>
## 2916 <NA> <NA> <NA> <NA> <NA>
## 2917 <NA> <NA> <NA> <NA> <NA>
## 2918 <NA> <NA> <NA> <NA> <NA>
## 2919 <NA> <NA> <NA> <NA> <NA>
## 2920 <NA> <NA> <NA> <NA> <NA>
## 2921 <NA> <NA> <NA> <NA> <NA>
## 2922 <NA> <NA> <NA> <NA> <NA>
## 2923 <NA> <NA> <NA> <NA> <NA>
## 2924 <NA> <NA> <NA> <NA> <NA>
## 2925 <NA> <NA> <NA> <NA> <NA>
## 2926 <NA> <NA> <NA> <NA> <NA>
## 2927 <NA> <NA> <NA> <NA> <NA>
## 2928 <NA> <NA> <NA> <NA> <NA>
## 2929 <NA> <NA> <NA> <NA> <NA>
## 2930 <NA> <NA> <NA> <NA> <NA>
## 2931 <NA> <NA> <NA> <NA> <NA>
## 2932 <NA> <NA> <NA> <NA> <NA>
## 2933 <NA> <NA> <NA> <NA> <NA>
## 2934 <NA> <NA> <NA> <NA> <NA>
## 2935 <NA> <NA> <NA> <NA> <NA>
## 2936 <NA> <NA> <NA> <NA> <NA>
## 2937 <NA> <NA> <NA> <NA> <NA>
## 2938 <NA> <NA> <NA> <NA> <NA>
## 2939 <NA> <NA> <NA> <NA> <NA>
## 2940 <NA> <NA> <NA> <NA> <NA>
## 2941 <NA> <NA> <NA> <NA> <NA>
## 2942 <NA> <NA> <NA> <NA> <NA>
## 2943 <NA> <NA> <NA> <NA> <NA>
## 2944 <NA> <NA> <NA> <NA> <NA>
## 2945 <NA> <NA> <NA> <NA> <NA>
## 2946 <NA> <NA> <NA> <NA> <NA>
## 2947 <NA> <NA> <NA> <NA> <NA>
## 2948 <NA> <NA> <NA> <NA> <NA>
## 2949 <NA> <NA> <NA> <NA> <NA>
## 2950 <NA> <NA> <NA> <NA> <NA>
## 2951 <NA> <NA> <NA> <NA> <NA>
## 2952 <NA> <NA> <NA> <NA> <NA>
## 2953 <NA> <NA> <NA> <NA> <NA>
## 2954 <NA> <NA> <NA> <NA> <NA>
## 2955 <NA> <NA> <NA> <NA> <NA>
## 2956 <NA> <NA> <NA> <NA> <NA>
## 2957 <NA> <NA> <NA> <NA> <NA>
## 2958 <NA> <NA> <NA> <NA> <NA>
## 2959 <NA> <NA> <NA> <NA> <NA>
## 2960 <NA> <NA> <NA> <NA> <NA>
## 2961 <NA> <NA> <NA> <NA> <NA>
## 2962 <NA> <NA> <NA> <NA> <NA>
## 2963 <NA> <NA> <NA> <NA> <NA>
## 2964 <NA> <NA> <NA> <NA> <NA>
## 2965 <NA> <NA> <NA> <NA> <NA>
## 2966 <NA> <NA> <NA> <NA> <NA>
## 2967 <NA> <NA> <NA> <NA> <NA>
## 2968 <NA> <NA> <NA> <NA> <NA>
## 2969 <NA> <NA> <NA> <NA> <NA>
## 2970 <NA> <NA> <NA> <NA> <NA>
## 2971 <NA> <NA> <NA> <NA> <NA>
## 2972 <NA> <NA> <NA> <NA> <NA>
## 2973 <NA> <NA> <NA> <NA> <NA>
## 2974 <NA> <NA> <NA> <NA> <NA>
## 2975 <NA> <NA> <NA> <NA> <NA>
## 2976 <NA> <NA> <NA> <NA> <NA>
## 2977 <NA> <NA> <NA> <NA> <NA>
## 2978 <NA> <NA> <NA> <NA> <NA>
## 2979 <NA> <NA> <NA> <NA> <NA>
## 2980 <NA> <NA> <NA> <NA> <NA>
## 2981 <NA> <NA> <NA> <NA> <NA>
## 2982 <NA> <NA> <NA> <NA> <NA>
## 2983 <NA> <NA> <NA> <NA> <NA>
## 2984 <NA> <NA> <NA> <NA> <NA>
## 2985 <NA> <NA> <NA> <NA> <NA>
## 2986 <NA> <NA> <NA> <NA> <NA>
## 2987 <NA> <NA> <NA> <NA> <NA>
## 2988 <NA> <NA> <NA> <NA> <NA>
## 2989 <NA> <NA> <NA> <NA> <NA>
## 2990 <NA> <NA> <NA> <NA> <NA>
## 2991 <NA> <NA> <NA> <NA> <NA>
## 2992 <NA> <NA> <NA> <NA> <NA>
## 2993 <NA> <NA> <NA> <NA> <NA>
## 2994 <NA> <NA> <NA> <NA> <NA>
## 2995 <NA> <NA> <NA> <NA> <NA>
## 2996 <NA> <NA> <NA> <NA> <NA>
## 2997 <NA> <NA> <NA> <NA> <NA>
## 2998 <NA> <NA> <NA> <NA> <NA>
## 2999 <NA> <NA> <NA> <NA> <NA>
## 3000 <NA> <NA> <NA> <NA> <NA>
## 3001 <NA> <NA> <NA> <NA> <NA>
## 3002 <NA> <NA> <NA> <NA> <NA>
## 3003 <NA> <NA> <NA> <NA> <NA>
## 3004 <NA> <NA> <NA> <NA> <NA>
## 3005 <NA> <NA> <NA> <NA> <NA>
## 3006 <NA> <NA> <NA> <NA> <NA>
## 3007 <NA> <NA> <NA> <NA> <NA>
## 3008 <NA> <NA> <NA> <NA> <NA>
## 3009 <NA> <NA> <NA> <NA> <NA>
## 3010 <NA> <NA> <NA> <NA> <NA>
## 3011 <NA> <NA> <NA> <NA> <NA>
## 3012 <NA> <NA> <NA> <NA> <NA>
## 3013 <NA> <NA> <NA> <NA> <NA>
## 3014 <NA> <NA> <NA> <NA> <NA>
## 3015 <NA> <NA> <NA> <NA> <NA>
## 3016 <NA> <NA> <NA> <NA> <NA>
## 3017 <NA> <NA> <NA> <NA> <NA>
## 3018 <NA> <NA> <NA> <NA> <NA>
## 3019 <NA> <NA> <NA> <NA> <NA>
## 3020 <NA> <NA> <NA> <NA> <NA>
## 3021 <NA> <NA> <NA> <NA> <NA>
## 3022 <NA> <NA> <NA> <NA> <NA>
## 3023 <NA> <NA> <NA> <NA> <NA>
## 3024 <NA> <NA> <NA> <NA> <NA>
## 3025 <NA> <NA> <NA> <NA> <NA>
## 3026 <NA> <NA> <NA> <NA> <NA>
## 3027 <NA> <NA> <NA> <NA> <NA>
## 3028 <NA> <NA> <NA> <NA> <NA>
## 3029 <NA> <NA> <NA> <NA> <NA>
## 3030 <NA> <NA> <NA> <NA> <NA>
## 3031 <NA> <NA> <NA> <NA> <NA>
## 3032 <NA> <NA> <NA> <NA> <NA>
## 3033 <NA> <NA> <NA> <NA> <NA>
## 3034 <NA> <NA> <NA> <NA> <NA>
## 3035 <NA> <NA> <NA> <NA> <NA>
## 3036 <NA> <NA> <NA> <NA> <NA>
## 3037 <NA> <NA> <NA> <NA> <NA>
## 3038 <NA> <NA> <NA> <NA> <NA>
## 3039 <NA> <NA> <NA> <NA> <NA>
## 3040 <NA> <NA> <NA> <NA> <NA>
## 3041 <NA> <NA> <NA> <NA> <NA>
## 3042 <NA> <NA> <NA> <NA> <NA>
## 3043 <NA> <NA> <NA> <NA> <NA>
## 3044 <NA> <NA> <NA> <NA> <NA>
## 3045 <NA> <NA> <NA> <NA> <NA>
## 3046 <NA> <NA> <NA> <NA> <NA>
## 3047 <NA> <NA> <NA> <NA> <NA>
## 3048 <NA> <NA> <NA> <NA> <NA>
## 3049 <NA> <NA> <NA> <NA> <NA>
## 3050 <NA> <NA> <NA> <NA> <NA>
## 3051 <NA> <NA> <NA> <NA> <NA>
## 3052 <NA> <NA> <NA> <NA> <NA>
## 3053 <NA> <NA> <NA> <NA> <NA>
## 3054 <NA> <NA> <NA> <NA> <NA>
## 3055 <NA> <NA> <NA> <NA> <NA>
## 3056 <NA> <NA> <NA> <NA> <NA>
## 3057 <NA> <NA> <NA> <NA> <NA>
## 3058 <NA> <NA> <NA> <NA> <NA>
## 3059 <NA> <NA> <NA> <NA> <NA>
## 3060 <NA> <NA> <NA> <NA> <NA>
## 3061 <NA> <NA> <NA> <NA> <NA>
## 3062 <NA> <NA> <NA> <NA> <NA>
## 3063 <NA> <NA> <NA> <NA> <NA>
## 3064 <NA> <NA> <NA> <NA> <NA>
## 3065 <NA> <NA> <NA> <NA> <NA>
## 3066 <NA> <NA> <NA> <NA> <NA>
## 3067 <NA> <NA> <NA> <NA> <NA>
## 3068 <NA> <NA> <NA> <NA> <NA>
## 3069 <NA> <NA> <NA> <NA> <NA>
## 3070 <NA> <NA> <NA> <NA> <NA>
## 3071 <NA> <NA> <NA> <NA> <NA>
## 3072 <NA> <NA> <NA> <NA> <NA>
## 3073 <NA> <NA> <NA> <NA> <NA>
## 3074 <NA> <NA> <NA> <NA> <NA>
## 3075 <NA> <NA> <NA> <NA> <NA>
## 3076 <NA> <NA> <NA> <NA> <NA>
## 3077 <NA> <NA> <NA> <NA> <NA>
## 3078 <NA> <NA> <NA> <NA> <NA>
## 3079 <NA> <NA> <NA> <NA> <NA>
## 3080 <NA> <NA> <NA> <NA> <NA>
## 3081 <NA> <NA> <NA> <NA> <NA>
## 3082 <NA> <NA> <NA> <NA> <NA>
## 3083 <NA> <NA> <NA> <NA> <NA>
## 3084 <NA> <NA> <NA> <NA> <NA>
## 3085 <NA> <NA> <NA> <NA> <NA>
## 3086 <NA> <NA> <NA> <NA> <NA>
## 3087 <NA> <NA> <NA> <NA> <NA>
## 3088 <NA> <NA> <NA> <NA> <NA>
## 3089 <NA> <NA> <NA> <NA> <NA>
## 3090 <NA> <NA> <NA> <NA> <NA>
## 3091 <NA> <NA> <NA> <NA> <NA>
## 3092 <NA> <NA> <NA> <NA> <NA>
## 3093 <NA> <NA> <NA> <NA> <NA>
## 3094 <NA> <NA> <NA> <NA> <NA>
## 3095 <NA> <NA> <NA> <NA> <NA>
## 3096 <NA> <NA> <NA> <NA> <NA>
## 3097 <NA> <NA> <NA> <NA> <NA>
## 3098 <NA> <NA> <NA> <NA> <NA>
## 3099 <NA> <NA> <NA> <NA> <NA>
## 3100 <NA> <NA> <NA> <NA> <NA>
## 3101 <NA> <NA> <NA> <NA> <NA>
## 3102 <NA> <NA> <NA> <NA> <NA>
## 3103 <NA> <NA> <NA> <NA> <NA>
## 3104 <NA> <NA> <NA> <NA> <NA>
## 3105 <NA> <NA> <NA> <NA> <NA>
## 3106 <NA> <NA> <NA> <NA> <NA>
## 3107 <NA> <NA> <NA> <NA> <NA>
## 3108 <NA> <NA> <NA> <NA> <NA>
## 3109 <NA> <NA> <NA> <NA> <NA>
## 3110 <NA> <NA> <NA> <NA> <NA>
## 3111 <NA> <NA> <NA> <NA> <NA>
## 3112 <NA> <NA> <NA> <NA> <NA>
## 3113 <NA> <NA> <NA> <NA> <NA>
## 3114 <NA> <NA> <NA> <NA> <NA>
## 3115 <NA> <NA> <NA> <NA> <NA>
## 3116 <NA> <NA> <NA> <NA> <NA>
## 3117 <NA> <NA> <NA> <NA> <NA>
## 3118 <NA> <NA> <NA> <NA> <NA>
## 3119 <NA> <NA> <NA> <NA> <NA>
## 3120 <NA> <NA> <NA> <NA> <NA>
## 3121 <NA> <NA> <NA> <NA> <NA>
## 3122 <NA> <NA> <NA> <NA> <NA>
## 3123 <NA> <NA> <NA> <NA> <NA>
## 3124 <NA> <NA> <NA> <NA> <NA>
## 3125 <NA> <NA> <NA> <NA> <NA>
## 3126 <NA> <NA> <NA> <NA> <NA>
## 3127 <NA> <NA> <NA> <NA> <NA>
## 3128 <NA> <NA> <NA> <NA> <NA>
## 3129 <NA> <NA> <NA> <NA> <NA>
## 3130 <NA> <NA> <NA> <NA> <NA>
## 3131 <NA> <NA> <NA> <NA> <NA>
## 3132 <NA> <NA> <NA> <NA> <NA>
## 3133 <NA> <NA> <NA> <NA> <NA>
## 3134 <NA> <NA> <NA> <NA> <NA>
## 3135 <NA> <NA> <NA> <NA> <NA>
## 3136 <NA> <NA> <NA> <NA> <NA>
## 3137 <NA> <NA> <NA> <NA> <NA>
## 3138 <NA> <NA> <NA> <NA> <NA>
## 3139 <NA> <NA> <NA> <NA> <NA>
## 3140 <NA> <NA> <NA> <NA> <NA>
## 3141 <NA> <NA> <NA> <NA> <NA>
## 3142 <NA> <NA> <NA> <NA> <NA>
## 3143 <NA> <NA> <NA> <NA> <NA>
## 3144 <NA> <NA> <NA> <NA> <NA>
## 3145 <NA> <NA> <NA> <NA> <NA>
## 3146 <NA> <NA> <NA> <NA> <NA>
## 3147 <NA> <NA> <NA> <NA> <NA>
## 3148 <NA> <NA> <NA> <NA> <NA>
## 3149 <NA> <NA> <NA> <NA> <NA>
## 3150 <NA> <NA> <NA> <NA> <NA>
## 3151 <NA> <NA> <NA> <NA> <NA>
## 3152 <NA> <NA> <NA> <NA> <NA>
## 3153 <NA> <NA> <NA> <NA> <NA>
## 3154 <NA> <NA> <NA> <NA> <NA>
## 3155 <NA> <NA> <NA> <NA> <NA>
## 3156 <NA> <NA> <NA> <NA> <NA>
## 3157 <NA> <NA> <NA> <NA> <NA>
## 3158 <NA> <NA> <NA> <NA> <NA>
## 3159 <NA> <NA> <NA> <NA> <NA>
## 3160 <NA> <NA> <NA> <NA> <NA>
## 3161 <NA> <NA> <NA> <NA> <NA>
## 3162 <NA> <NA> <NA> <NA> <NA>
## 3163 <NA> <NA> <NA> <NA> <NA>
## 3164 <NA> <NA> <NA> <NA> <NA>
## 3165 <NA> <NA> <NA> <NA> <NA>
## 3166 <NA> <NA> <NA> <NA> <NA>
## 3167 <NA> <NA> <NA> <NA> <NA>
## 3168 <NA> <NA> <NA> <NA> <NA>
## 3169 <NA> <NA> <NA> <NA> <NA>
## 3170 <NA> <NA> <NA> <NA> <NA>
## 3171 <NA> <NA> <NA> <NA> <NA>
## 3172 <NA> <NA> <NA> <NA> <NA>
## 3173 <NA> <NA> <NA> <NA> <NA>
## 3174 <NA> <NA> <NA> <NA> <NA>
## 3175 <NA> <NA> <NA> <NA> <NA>
## 3176 <NA> <NA> <NA> <NA> <NA>
## 3177 <NA> <NA> <NA> <NA> <NA>
## 3178 <NA> <NA> <NA> <NA> <NA>
## 3179 <NA> <NA> <NA> <NA> <NA>
## 3180 <NA> <NA> <NA> <NA> <NA>
## 3181 <NA> <NA> <NA> <NA> <NA>
## 3182 <NA> <NA> <NA> <NA> <NA>
## 3183 <NA> <NA> <NA> <NA> <NA>
## 3184 <NA> <NA> <NA> <NA> <NA>
## 3185 <NA> <NA> <NA> <NA> <NA>
## 3186 <NA> <NA> <NA> <NA> <NA>
## 3187 <NA> <NA> <NA> <NA> <NA>
## 3188 <NA> <NA> <NA> <NA> <NA>
## 3189 <NA> <NA> <NA> <NA> <NA>
## 3190 <NA> <NA> <NA> <NA> <NA>
## 3191 <NA> <NA> <NA> <NA> <NA>
## 3192 <NA> <NA> <NA> <NA> <NA>
## 3193 <NA> <NA> <NA> <NA> <NA>
## 3194 <NA> <NA> <NA> <NA> <NA>
## 3195 <NA> <NA> <NA> <NA> <NA>
## 3196 <NA> <NA> <NA> <NA> <NA>
## 3197 <NA> <NA> <NA> <NA> <NA>
## 3198 <NA> <NA> <NA> <NA> <NA>
## 3199 <NA> <NA> <NA> <NA> <NA>
## 3200 <NA> <NA> <NA> <NA> <NA>
## 3201 <NA> <NA> <NA> <NA> <NA>
## 3202 <NA> <NA> <NA> <NA> <NA>
## 3203 <NA> <NA> <NA> <NA> <NA>
## 3204 <NA> <NA> <NA> <NA> <NA>
## 3205 <NA> <NA> <NA> <NA> <NA>
## 3206 <NA> <NA> <NA> <NA> <NA>
## 3207 <NA> <NA> <NA> <NA> <NA>
## 3208 <NA> <NA> <NA> <NA> <NA>
## 3209 <NA> <NA> <NA> <NA> <NA>
## 3210 <NA> <NA> <NA> <NA> <NA>
## 3211 <NA> <NA> <NA> <NA> <NA>
## 3212 <NA> <NA> <NA> <NA> <NA>
## 3213 <NA> <NA> <NA> <NA> <NA>
## 3214 <NA> <NA> <NA> <NA> <NA>
## 3215 <NA> <NA> <NA> <NA> <NA>
## 3216 <NA> <NA> <NA> <NA> <NA>
## 3217 <NA> <NA> <NA> <NA> <NA>
## 3218 <NA> <NA> <NA> <NA> <NA>
## 3219 <NA> <NA> <NA> <NA> <NA>
## 3220 <NA> <NA> <NA> <NA> <NA>
## 3221 <NA> <NA> <NA> <NA> <NA>
## 3222 <NA> <NA> <NA> <NA> <NA>
## 3223 <NA> <NA> <NA> <NA> <NA>
## 3224 <NA> <NA> <NA> <NA> <NA>
## 3225 <NA> <NA> <NA> <NA> <NA>
## 3226 <NA> <NA> <NA> <NA> <NA>
## 3227 <NA> <NA> <NA> <NA> <NA>
## 3228 <NA> <NA> <NA> <NA> <NA>
## 3229 <NA> <NA> <NA> <NA> <NA>
## 3230 <NA> <NA> <NA> <NA> <NA>
## 3231 <NA> <NA> <NA> <NA> <NA>
## 3232 <NA> <NA> <NA> <NA> <NA>
## 3233 <NA> <NA> <NA> <NA> <NA>
## 3234 <NA> <NA> <NA> <NA> <NA>
## 3235 <NA> <NA> <NA> <NA> <NA>
## 3236 <NA> <NA> <NA> <NA> <NA>
## 3237 <NA> <NA> <NA> <NA> <NA>
## 3238 <NA> <NA> <NA> <NA> <NA>
## 3239 <NA> <NA> <NA> <NA> <NA>
## 3240 <NA> <NA> <NA> <NA> <NA>
## 3241 <NA> <NA> <NA> <NA> <NA>
## 3242 <NA> <NA> <NA> <NA> <NA>
## 3243 <NA> <NA> <NA> <NA> <NA>
## 3244 <NA> <NA> <NA> <NA> <NA>
## 3245 <NA> <NA> <NA> <NA> <NA>
## 3246 <NA> <NA> <NA> <NA> <NA>
## 3247 <NA> <NA> <NA> <NA> <NA>
## 3248 <NA> <NA> <NA> <NA> <NA>
## 3249 <NA> <NA> <NA> <NA> <NA>
## 3250 <NA> <NA> <NA> <NA> <NA>
## 3251 <NA> <NA> <NA> <NA> <NA>
## 3252 <NA> <NA> <NA> <NA> <NA>
## 3253 <NA> <NA> <NA> <NA> <NA>
## 3254 <NA> <NA> <NA> <NA> <NA>
## 3255 <NA> <NA> <NA> <NA> <NA>
## 3256 <NA> <NA> <NA> <NA> <NA>
## 3257 <NA> <NA> <NA> <NA> <NA>
## 3258 <NA> <NA> <NA> <NA> <NA>
## 3259 <NA> <NA> <NA> <NA> <NA>
## 3260 <NA> <NA> <NA> <NA> <NA>
## 3261 <NA> <NA> <NA> <NA> <NA>
## 3262 <NA> <NA> <NA> <NA> <NA>
## 3263 <NA> <NA> <NA> <NA> <NA>
## 3264 <NA> <NA> <NA> <NA> <NA>
## 3265 <NA> <NA> <NA> <NA> <NA>
## 3266 <NA> <NA> <NA> <NA> <NA>
## 3267 <NA> <NA> <NA> <NA> <NA>
## 3268 <NA> <NA> <NA> <NA> <NA>
## 3269 <NA> <NA> <NA> <NA> <NA>
## 3270 <NA> <NA> <NA> <NA> <NA>
## 3271 <NA> <NA> <NA> <NA> <NA>
## 3272 <NA> <NA> <NA> <NA> <NA>
## 3273 <NA> <NA> <NA> <NA> <NA>
## 3274 <NA> <NA> <NA> <NA> <NA>
## 3275 <NA> <NA> <NA> <NA> <NA>
## 3276 <NA> <NA> <NA> <NA> <NA>
## 3277 <NA> <NA> <NA> <NA> <NA>
## 3278 <NA> <NA> <NA> <NA> <NA>
## 3279 <NA> <NA> <NA> <NA> <NA>
## 3280 <NA> <NA> <NA> <NA> <NA>
## 3281 <NA> <NA> <NA> <NA> <NA>
## 3282 <NA> <NA> <NA> <NA> <NA>
## 3283 <NA> <NA> <NA> <NA> <NA>
## 3284 <NA> <NA> <NA> <NA> <NA>
## 3285 <NA> <NA> <NA> <NA> <NA>
## 3286 <NA> <NA> <NA> <NA> <NA>
## 3287 <NA> <NA> <NA> <NA> <NA>
## 3288 <NA> <NA> <NA> <NA> <NA>
## 3289 <NA> <NA> <NA> <NA> <NA>
## 3290 <NA> <NA> <NA> <NA> <NA>
## 3291 <NA> <NA> <NA> <NA> <NA>
## 3292 <NA> <NA> <NA> <NA> <NA>
## 3293 <NA> <NA> <NA> <NA> <NA>
## 3294 <NA> <NA> <NA> <NA> <NA>
## 3295 <NA> <NA> <NA> <NA> <NA>
## 3296 <NA> <NA> <NA> <NA> <NA>
## 3297 <NA> <NA> <NA> <NA> <NA>
## 3298 <NA> <NA> <NA> <NA> <NA>
## 3299 <NA> <NA> <NA> <NA> <NA>
## 3300 <NA> <NA> <NA> <NA> <NA>
## 3301 <NA> <NA> <NA> <NA> <NA>
## 3302 <NA> <NA> <NA> <NA> <NA>
## 3303 <NA> <NA> <NA> <NA> <NA>
## 3304 <NA> <NA> <NA> <NA> <NA>
## 3305 <NA> <NA> <NA> <NA> <NA>
## 3306 <NA> <NA> <NA> <NA> <NA>
## 3307 <NA> <NA> <NA> <NA> <NA>
## 3308 <NA> <NA> <NA> <NA> <NA>
## 3309 <NA> <NA> <NA> <NA> <NA>
## 3310 <NA> <NA> <NA> <NA> <NA>
## 3311 <NA> <NA> <NA> <NA> <NA>
## 3312 <NA> <NA> <NA> <NA> <NA>
## 3313 <NA> <NA> <NA> <NA> <NA>
## 3314 <NA> <NA> <NA> <NA> <NA>
## 3315 <NA> <NA> <NA> <NA> <NA>
## 3316 <NA> <NA> <NA> <NA> <NA>
## 3317 <NA> <NA> <NA> <NA> <NA>
## 3318 <NA> <NA> <NA> <NA> <NA>
## 3319 <NA> <NA> <NA> <NA> <NA>
## 3320 <NA> <NA> <NA> <NA> <NA>
## 3321 <NA> <NA> <NA> <NA> <NA>
## 3322 <NA> <NA> <NA> <NA> <NA>
## 3323 <NA> <NA> <NA> <NA> <NA>
## 3324 <NA> <NA> <NA> <NA> <NA>
## 3325 <NA> <NA> <NA> <NA> <NA>
## 3326 <NA> <NA> <NA> <NA> <NA>
## 3327 <NA> <NA> <NA> <NA> <NA>
## 3328 <NA> <NA> <NA> <NA> <NA>
## 3329 <NA> <NA> <NA> <NA> <NA>
## 3330 <NA> <NA> <NA> <NA> <NA>
## 3331 <NA> <NA> <NA> <NA> <NA>
## 3332 <NA> <NA> <NA> <NA> <NA>
## 3333 <NA> <NA> <NA> <NA> <NA>
## 3334 <NA> <NA> <NA> <NA> <NA>
## 3335 <NA> <NA> <NA> <NA> <NA>
## 3336 <NA> <NA> <NA> <NA> <NA>
## 3337 <NA> <NA> <NA> <NA> <NA>
## 3338 <NA> <NA> <NA> <NA> <NA>
## 3339 <NA> <NA> <NA> <NA> <NA>
## 3340 <NA> <NA> <NA> <NA> <NA>
## 3341 <NA> <NA> <NA> <NA> <NA>
## 3342 <NA> <NA> <NA> <NA> <NA>
## 3343 <NA> <NA> <NA> <NA> <NA>
## 3344 <NA> <NA> <NA> <NA> <NA>
## 3345 <NA> <NA> <NA> <NA> <NA>
## 3346 <NA> <NA> <NA> <NA> <NA>
## 3347 <NA> <NA> <NA> <NA> <NA>
## 3348 <NA> <NA> <NA> <NA> <NA>
## 3349 <NA> <NA> <NA> <NA> <NA>
## 3350 <NA> <NA> <NA> <NA> <NA>
## 3351 <NA> <NA> <NA> <NA> <NA>
## 3352 <NA> <NA> <NA> <NA> <NA>
## 3353 <NA> <NA> <NA> <NA> <NA>
## 3354 <NA> <NA> <NA> <NA> <NA>
## 3355 <NA> <NA> <NA> <NA> <NA>
## 3356 <NA> <NA> <NA> <NA> <NA>
## 3357 <NA> <NA> <NA> <NA> <NA>
## 3358 <NA> <NA> <NA> <NA> <NA>
## 3359 <NA> <NA> <NA> <NA> <NA>
## 3360 <NA> <NA> <NA> <NA> <NA>
## 3361 <NA> <NA> <NA> <NA> <NA>
## 3362 <NA> <NA> <NA> <NA> <NA>
## 3363 <NA> <NA> <NA> <NA> <NA>
## 3364 <NA> <NA> <NA> <NA> <NA>
## 3365 <NA> <NA> <NA> <NA> <NA>
## 3366 <NA> <NA> <NA> <NA> <NA>
## 3367 <NA> <NA> <NA> <NA> <NA>
## 3368 <NA> <NA> <NA> <NA> <NA>
## 3369 <NA> <NA> <NA> <NA> <NA>
## 3370 <NA> <NA> <NA> <NA> <NA>
## 3371 <NA> <NA> <NA> <NA> <NA>
## 3372 <NA> <NA> <NA> <NA> <NA>
## 3373 <NA> <NA> <NA> <NA> <NA>
## 3374 <NA> <NA> <NA> <NA> <NA>
## 3375 <NA> <NA> <NA> <NA> <NA>
## 3376 <NA> <NA> <NA> <NA> <NA>
## 3377 <NA> <NA> <NA> <NA> <NA>
## 3378 <NA> <NA> <NA> <NA> <NA>
## 3379 <NA> <NA> <NA> <NA> <NA>
## 3380 <NA> <NA> <NA> <NA> <NA>
## 3381 <NA> <NA> <NA> <NA> <NA>
## 3382 <NA> <NA> <NA> <NA> <NA>
## 3383 <NA> <NA> <NA> <NA> <NA>
## 3384 <NA> <NA> <NA> <NA> <NA>
## 3385 <NA> <NA> <NA> <NA> <NA>
## 3386 <NA> <NA> <NA> <NA> <NA>
## 3387 <NA> <NA> <NA> <NA> <NA>
## 3388 <NA> <NA> <NA> <NA> <NA>
## 3389 <NA> <NA> <NA> <NA> <NA>
## 3390 <NA> <NA> <NA> <NA> <NA>
## 3391 <NA> <NA> <NA> <NA> <NA>
## 3392 <NA> <NA> <NA> <NA> <NA>
## 3393 <NA> <NA> <NA> <NA> <NA>
## 3394 <NA> <NA> <NA> <NA> <NA>
## 3395 <NA> <NA> <NA> <NA> <NA>
## 3396 <NA> <NA> <NA> <NA> <NA>
## 3397 <NA> <NA> <NA> <NA> <NA>
## 3398 <NA> <NA> <NA> <NA> <NA>
## 3399 <NA> <NA> <NA> <NA> <NA>
## 3400 <NA> <NA> <NA> <NA> <NA>
## 3401 <NA> <NA> <NA> <NA> <NA>
## 3402 <NA> <NA> <NA> <NA> <NA>
## 3403 <NA> <NA> <NA> <NA> <NA>
## 3404 <NA> <NA> <NA> <NA> <NA>
## 3405 <NA> <NA> <NA> <NA> <NA>
## 3406 <NA> <NA> <NA> <NA> <NA>
## 3407 <NA> <NA> <NA> <NA> <NA>
## 3408 <NA> <NA> <NA> <NA> <NA>
## 3409 <NA> <NA> <NA> <NA> <NA>
## 3410 <NA> <NA> <NA> <NA> <NA>
## 3411 <NA> <NA> <NA> <NA> <NA>
## 3412 <NA> <NA> <NA> <NA> <NA>
## 3413 <NA> <NA> <NA> <NA> <NA>
## 3414 <NA> <NA> <NA> <NA> <NA>
## 3415 <NA> <NA> <NA> <NA> <NA>
## 3416 <NA> <NA> <NA> <NA> <NA>
## 3417 <NA> <NA> <NA> <NA> <NA>
## 3418 <NA> <NA> <NA> <NA> <NA>
## 3419 <NA> <NA> <NA> <NA> <NA>
## 3420 <NA> <NA> <NA> <NA> <NA>
## 3421 <NA> <NA> <NA> <NA> <NA>
## 3422 <NA> <NA> <NA> <NA> <NA>
## 3423 <NA> <NA> <NA> <NA> <NA>
## 3424 <NA> <NA> <NA> <NA> <NA>
## 3425 <NA> <NA> <NA> <NA> <NA>
## 3426 <NA> <NA> <NA> <NA> <NA>
## 3427 <NA> <NA> <NA> <NA> <NA>
## 3428 <NA> <NA> <NA> <NA> <NA>
## 3429 <NA> <NA> <NA> <NA> <NA>
## 3430 <NA> <NA> <NA> <NA> <NA>
## 3431 <NA> <NA> <NA> <NA> <NA>
## 3432 <NA> <NA> <NA> <NA> <NA>
## 3433 <NA> <NA> <NA> <NA> <NA>
## 3434 <NA> <NA> <NA> <NA> <NA>
## 3435 <NA> <NA> <NA> <NA> <NA>
## 3436 <NA> <NA> <NA> <NA> <NA>
## 3437 <NA> <NA> <NA> <NA> <NA>
## 3438 <NA> <NA> <NA> <NA> <NA>
## 3439 <NA> <NA> <NA> <NA> <NA>
## 3440 <NA> <NA> <NA> <NA> <NA>
## 3441 <NA> <NA> <NA> <NA> <NA>
## 3442 <NA> <NA> <NA> <NA> <NA>
## 3443 <NA> <NA> <NA> <NA> <NA>
## 3444 <NA> <NA> <NA> <NA> <NA>
## 3445 <NA> <NA> <NA> <NA> <NA>
## 3446 <NA> <NA> <NA> <NA> <NA>
## 3447 <NA> <NA> <NA> <NA> <NA>
## 3448 <NA> <NA> <NA> <NA> <NA>
## 3449 <NA> <NA> <NA> <NA> <NA>
## 3450 <NA> <NA> <NA> <NA> <NA>
## 3451 <NA> <NA> <NA> <NA> <NA>
## 3452 <NA> <NA> <NA> <NA> <NA>
## 3453 <NA> <NA> <NA> <NA> <NA>
## 3454 <NA> <NA> <NA> <NA> <NA>
## 3455 <NA> <NA> <NA> <NA> <NA>
## 3456 <NA> <NA> <NA> <NA> <NA>
## 3457 <NA> <NA> <NA> <NA> <NA>
## 3458 <NA> <NA> <NA> <NA> <NA>
## 3459 <NA> <NA> <NA> <NA> <NA>
## 3460 <NA> <NA> <NA> <NA> <NA>
## 3461 <NA> <NA> <NA> <NA> <NA>
## 3462 <NA> <NA> <NA> <NA> <NA>
## 3463 <NA> <NA> <NA> <NA> <NA>
## 3464 <NA> <NA> <NA> <NA> <NA>
## 3465 <NA> <NA> <NA> <NA> <NA>
## 3466 <NA> <NA> <NA> <NA> <NA>
## 3467 <NA> <NA> <NA> <NA> <NA>
## 3468 <NA> <NA> <NA> <NA> <NA>
## 3469 <NA> <NA> <NA> <NA> <NA>
## 3470 <NA> <NA> <NA> <NA> <NA>
## 3471 <NA> <NA> <NA> <NA> <NA>
## 3472 <NA> <NA> <NA> <NA> <NA>
## 3473 <NA> <NA> <NA> <NA> <NA>
## 3474 <NA> <NA> <NA> <NA> <NA>
## 3475 <NA> <NA> <NA> <NA> <NA>
## 3476 <NA> <NA> <NA> <NA> <NA>
## 3477 <NA> <NA> <NA> <NA> <NA>
## 3478 <NA> <NA> <NA> <NA> <NA>
## 3479 <NA> <NA> <NA> <NA> <NA>
## 3480 <NA> <NA> <NA> <NA> <NA>
## 3481 <NA> <NA> <NA> <NA> <NA>
## 3482 <NA> <NA> <NA> <NA> <NA>
## 3483 <NA> <NA> <NA> <NA> <NA>
## 3484 <NA> <NA> <NA> <NA> <NA>
## 3485 <NA> <NA> <NA> <NA> <NA>
## 3486 <NA> <NA> <NA> <NA> <NA>
## 3487 <NA> <NA> <NA> <NA> <NA>
## 3488 <NA> <NA> <NA> <NA> <NA>
## 3489 <NA> <NA> <NA> <NA> <NA>
## 3490 <NA> <NA> <NA> <NA> <NA>
## 3491 <NA> <NA> <NA> <NA> <NA>
## 3492 <NA> <NA> <NA> <NA> <NA>
## 3493 <NA> <NA> <NA> <NA> <NA>
## 3494 <NA> <NA> <NA> <NA> <NA>
## 3495 <NA> <NA> <NA> <NA> <NA>
## 3496 <NA> <NA> <NA> <NA> <NA>
## 3497 <NA> <NA> <NA> <NA> <NA>
## 3498 <NA> <NA> <NA> <NA> <NA>
## 3499 <NA> <NA> <NA> <NA> <NA>
## 3500 <NA> <NA> <NA> <NA> <NA>
## 3501 <NA> <NA> <NA> <NA> <NA>
## 3502 <NA> <NA> <NA> <NA> <NA>
## 3503 <NA> <NA> <NA> <NA> <NA>
## 3504 <NA> <NA> <NA> <NA> <NA>
## 3505 <NA> <NA> <NA> <NA> <NA>
## 3506 <NA> <NA> <NA> <NA> <NA>
## 3507 <NA> <NA> <NA> <NA> <NA>
## 3508 <NA> <NA> <NA> <NA> <NA>
## 3509 <NA> <NA> <NA> <NA> <NA>
## 3510 <NA> <NA> <NA> <NA> <NA>
## 3511 <NA> <NA> <NA> <NA> <NA>
## 3512 <NA> <NA> <NA> <NA> <NA>
## 3513 <NA> <NA> <NA> <NA> <NA>
## 3514 <NA> <NA> <NA> <NA> <NA>
## 3515 <NA> <NA> <NA> <NA> <NA>
## 3516 <NA> <NA> <NA> <NA> <NA>
## 3517 <NA> <NA> <NA> <NA> <NA>
## 3518 <NA> <NA> <NA> <NA> <NA>
## 3519 <NA> <NA> <NA> <NA> <NA>
## 3520 <NA> <NA> <NA> <NA> <NA>
## 3521 <NA> <NA> <NA> <NA> <NA>
## 3522 <NA> <NA> <NA> <NA> <NA>
## 3523 <NA> <NA> <NA> <NA> <NA>
## 3524 <NA> <NA> <NA> <NA> <NA>
## 3525 <NA> <NA> <NA> <NA> <NA>
## 3526 <NA> <NA> <NA> <NA> <NA>
## 3527 <NA> <NA> <NA> <NA> <NA>
## 3528 <NA> <NA> <NA> <NA> <NA>
## 3529 <NA> <NA> <NA> <NA> <NA>
## 3530 <NA> <NA> <NA> <NA> <NA>
## 3531 <NA> <NA> <NA> <NA> <NA>
## 3532 <NA> <NA> <NA> <NA> <NA>
## 3533 <NA> <NA> <NA> <NA> <NA>
## 3534 <NA> <NA> <NA> <NA> <NA>
## 3535 <NA> <NA> <NA> <NA> <NA>
## 3536 <NA> <NA> <NA> <NA> <NA>
## 3537 <NA> <NA> <NA> <NA> <NA>
## 3538 <NA> <NA> <NA> <NA> <NA>
## 3539 <NA> <NA> <NA> <NA> <NA>
## 3540 <NA> <NA> <NA> <NA> <NA>
## 3541 <NA> <NA> <NA> <NA> <NA>
## 3542 <NA> <NA> <NA> <NA> <NA>
## 3543 <NA> <NA> <NA> <NA> <NA>
## 3544 <NA> <NA> <NA> <NA> <NA>
## 3545 <NA> <NA> <NA> <NA> <NA>
## 3546 <NA> <NA> <NA> <NA> <NA>
## 3547 <NA> <NA> <NA> <NA> <NA>
## 3548 <NA> <NA> <NA> <NA> <NA>
## 3549 <NA> <NA> <NA> <NA> <NA>
## 3550 <NA> <NA> <NA> <NA> <NA>
## 3551 <NA> <NA> <NA> <NA> <NA>
## 3552 <NA> <NA> <NA> <NA> <NA>
## 3553 <NA> <NA> <NA> <NA> <NA>
## 3554 <NA> <NA> <NA> <NA> <NA>
## 3555 <NA> <NA> <NA> <NA> <NA>
## 3556 <NA> <NA> <NA> <NA> <NA>
## 3557 <NA> <NA> <NA> <NA> <NA>
## 3558 <NA> <NA> <NA> <NA> <NA>
## 3559 <NA> <NA> <NA> <NA> <NA>
## 3560 <NA> <NA> <NA> <NA> <NA>
## 3561 <NA> <NA> <NA> <NA> <NA>
## 3562 <NA> <NA> <NA> <NA> <NA>
## 3563 <NA> <NA> <NA> <NA> <NA>
## 3564 <NA> <NA> <NA> <NA> <NA>
## 3565 <NA> <NA> <NA> <NA> <NA>
## 3566 <NA> <NA> <NA> <NA> <NA>
## 3567 <NA> <NA> <NA> <NA> <NA>
## 3568 <NA> <NA> <NA> <NA> <NA>
## 3569 <NA> <NA> <NA> <NA> <NA>
## 3570 <NA> <NA> <NA> <NA> <NA>
## 3571 <NA> <NA> <NA> <NA> <NA>
## 3572 <NA> <NA> <NA> <NA> <NA>
## 3573 <NA> <NA> <NA> <NA> <NA>
## 3574 <NA> <NA> <NA> <NA> <NA>
## 3575 <NA> <NA> <NA> <NA> <NA>
## 3576 <NA> <NA> <NA> <NA> <NA>
## 3577 <NA> <NA> <NA> <NA> <NA>
## 3578 <NA> <NA> <NA> <NA> <NA>
## 3579 <NA> <NA> <NA> <NA> <NA>
## 3580 <NA> <NA> <NA> <NA> <NA>
## 3581 <NA> <NA> <NA> <NA> <NA>
## 3582 <NA> <NA> <NA> <NA> <NA>
## 3583 <NA> <NA> <NA> <NA> <NA>
## 3584 <NA> <NA> <NA> <NA> <NA>
## 3585 <NA> <NA> <NA> <NA> <NA>
## 3586 <NA> <NA> <NA> <NA> <NA>
## 3587 <NA> <NA> <NA> <NA> <NA>
## 3588 <NA> <NA> <NA> <NA> <NA>
## 3589 <NA> <NA> <NA> <NA> <NA>
## 3590 <NA> <NA> <NA> <NA> <NA>
## 3591 <NA> <NA> <NA> <NA> <NA>
## 3592 <NA> <NA> <NA> <NA> <NA>
## 3593 <NA> <NA> <NA> <NA> <NA>
## 3594 <NA> <NA> <NA> <NA> <NA>
## 3595 <NA> <NA> <NA> <NA> <NA>
## 3596 <NA> <NA> <NA> <NA> <NA>
## 3597 <NA> <NA> <NA> <NA> <NA>
## 3598 <NA> <NA> <NA> <NA> <NA>
## 3599 <NA> <NA> <NA> <NA> <NA>
## 3600 <NA> <NA> <NA> <NA> <NA>
## 3601 <NA> <NA> <NA> <NA> <NA>
## 3602 <NA> <NA> <NA> <NA> <NA>
## 3603 <NA> <NA> <NA> <NA> <NA>
## 3604 <NA> <NA> <NA> <NA> <NA>
## 3605 <NA> <NA> <NA> <NA> <NA>
## 3606 <NA> <NA> <NA> <NA> <NA>
## 3607 <NA> <NA> <NA> <NA> <NA>
## 3608 <NA> <NA> <NA> <NA> <NA>
## 3609 <NA> <NA> <NA> <NA> <NA>
## 3610 <NA> <NA> <NA> <NA> <NA>
## 3611 <NA> <NA> <NA> <NA> <NA>
## 3612 <NA> <NA> <NA> <NA> <NA>
## 3613 <NA> <NA> <NA> <NA> <NA>
## 3614 <NA> <NA> <NA> <NA> <NA>
## 3615 <NA> <NA> <NA> <NA> <NA>
## 3616 <NA> <NA> <NA> <NA> <NA>
## 3617 <NA> <NA> <NA> <NA> <NA>
## 3618 <NA> <NA> <NA> <NA> <NA>
## 3619 <NA> <NA> <NA> <NA> <NA>
## 3620 <NA> <NA> <NA> <NA> <NA>
## 3621 <NA> <NA> <NA> <NA> <NA>
## 3622 <NA> <NA> <NA> <NA> <NA>
## 3623 <NA> <NA> <NA> <NA> <NA>
## 3624 <NA> <NA> <NA> <NA> <NA>
## 3625 <NA> <NA> <NA> <NA> <NA>
## 3626 <NA> <NA> <NA> <NA> <NA>
## 3627 <NA> <NA> <NA> <NA> <NA>
## 3628 <NA> <NA> <NA> <NA> <NA>
## 3629 <NA> <NA> <NA> <NA> <NA>
## 3630 <NA> <NA> <NA> <NA> <NA>
## 3631 <NA> <NA> <NA> <NA> <NA>
## 3632 <NA> <NA> <NA> <NA> <NA>
## 3633 <NA> <NA> <NA> <NA> <NA>
## 3634 <NA> <NA> <NA> <NA> <NA>
## 3635 <NA> <NA> <NA> <NA> <NA>
## 3636 <NA> <NA> <NA> <NA> <NA>
## 3637 <NA> <NA> <NA> <NA> <NA>
## 3638 <NA> <NA> <NA> <NA> <NA>
## 3639 <NA> <NA> <NA> <NA> <NA>
## 3640 <NA> <NA> <NA> <NA> <NA>
## 3641 <NA> <NA> <NA> <NA> <NA>
## 3642 <NA> <NA> <NA> <NA> <NA>
## 3643 <NA> <NA> <NA> <NA> <NA>
## 3644 <NA> <NA> <NA> <NA> <NA>
## 3645 <NA> <NA> <NA> <NA> <NA>
## 3646 <NA> <NA> <NA> <NA> <NA>
## 3647 <NA> <NA> <NA> <NA> <NA>
## 3648 <NA> <NA> <NA> <NA> <NA>
## 3649 <NA> <NA> <NA> <NA> <NA>
## 3650 <NA> <NA> <NA> <NA> <NA>
## 3651 <NA> <NA> <NA> <NA> <NA>
## 3652 <NA> <NA> <NA> <NA> <NA>
## 3653 <NA> <NA> <NA> <NA> <NA>
## 3654 <NA> <NA> <NA> <NA> <NA>
## 3655 <NA> <NA> <NA> <NA> <NA>
## 3656 <NA> <NA> <NA> <NA> <NA>
## 3657 <NA> <NA> <NA> <NA> <NA>
## 3658 <NA> <NA> <NA> <NA> <NA>
## 3659 <NA> <NA> <NA> <NA> <NA>
## 3660 <NA> <NA> <NA> <NA> <NA>
## 3661 <NA> <NA> <NA> <NA> <NA>
## 3662 <NA> <NA> <NA> <NA> <NA>
## 3663 <NA> <NA> <NA> <NA> <NA>
## 3664 <NA> <NA> <NA> <NA> <NA>
## 3665 <NA> <NA> <NA> <NA> <NA>
## 3666 <NA> <NA> <NA> <NA> <NA>
## 3667 <NA> <NA> <NA> <NA> <NA>
## 3668 <NA> <NA> <NA> <NA> <NA>
## 3669 <NA> <NA> <NA> <NA> <NA>
## 3670 <NA> <NA> <NA> <NA> <NA>
## 3671 <NA> <NA> <NA> <NA> <NA>
## 3672 <NA> <NA> <NA> <NA> <NA>
## 3673 <NA> <NA> <NA> <NA> <NA>
## 3674 <NA> <NA> <NA> <NA> <NA>
## 3675 <NA> <NA> <NA> <NA> <NA>
## 3676 <NA> <NA> <NA> <NA> <NA>
## 3677 <NA> <NA> <NA> <NA> <NA>
## 3678 <NA> <NA> <NA> <NA> <NA>
## 3679 <NA> <NA> <NA> <NA> <NA>
## 3680 <NA> <NA> <NA> <NA> <NA>
## 3681 <NA> <NA> <NA> <NA> <NA>
## 3682 <NA> <NA> <NA> <NA> <NA>
## 3683 <NA> <NA> <NA> <NA> <NA>
## 3684 <NA> <NA> <NA> <NA> <NA>
## 3685 <NA> <NA> <NA> <NA> <NA>
## 3686 <NA> <NA> <NA> <NA> <NA>
## 3687 <NA> <NA> <NA> <NA> <NA>
## 3688 <NA> <NA> <NA> <NA> <NA>
## 3689 <NA> <NA> <NA> <NA> <NA>
## 3690 <NA> <NA> <NA> <NA> <NA>
## 3691 <NA> <NA> <NA> <NA> <NA>
## 3692 <NA> <NA> <NA> <NA> <NA>
## 3693 <NA> <NA> <NA> <NA> <NA>
## 3694 <NA> <NA> <NA> <NA> <NA>
## 3695 <NA> <NA> <NA> <NA> <NA>
## 3696 <NA> <NA> <NA> <NA> <NA>
## 3697 <NA> <NA> <NA> <NA> <NA>
## 3698 <NA> <NA> <NA> <NA> <NA>
## 3699 <NA> <NA> <NA> <NA> <NA>
## 3700 <NA> <NA> <NA> <NA> <NA>
## 3701 <NA> <NA> <NA> <NA> <NA>
## 3702 <NA> <NA> <NA> <NA> <NA>
## 3703 <NA> <NA> <NA> <NA> <NA>
## 3704 <NA> <NA> <NA> <NA> <NA>
## 3705 <NA> <NA> <NA> <NA> <NA>
## 3706 <NA> <NA> <NA> <NA> <NA>
## 3707 <NA> <NA> <NA> <NA> <NA>
## 3708 <NA> <NA> <NA> <NA> <NA>
## 3709 <NA> <NA> <NA> <NA> <NA>
## 3710 <NA> <NA> <NA> <NA> <NA>
## 3711 <NA> <NA> <NA> <NA> <NA>
## 3712 <NA> <NA> <NA> <NA> <NA>
## 3713 <NA> <NA> <NA> <NA> <NA>
## 3714 <NA> <NA> <NA> <NA> <NA>
## 3715 <NA> <NA> <NA> <NA> <NA>
## 3716 <NA> <NA> <NA> <NA> <NA>
## 3717 <NA> <NA> <NA> <NA> <NA>
## 3718 <NA> <NA> <NA> <NA> <NA>
## 3719 <NA> <NA> <NA> <NA> <NA>
## 3720 <NA> <NA> <NA> <NA> <NA>
## 3721 <NA> <NA> <NA> <NA> <NA>
## 3722 <NA> <NA> <NA> <NA> <NA>
## 3723 <NA> <NA> <NA> <NA> <NA>
## 3724 <NA> <NA> <NA> <NA> <NA>
## 3725 <NA> <NA> <NA> <NA> <NA>
## 3726 <NA> <NA> <NA> <NA> <NA>
## 3727 <NA> <NA> <NA> <NA> <NA>
## 3728 <NA> <NA> <NA> <NA> <NA>
## 3729 <NA> <NA> <NA> <NA> <NA>
## 3730 <NA> <NA> <NA> <NA> <NA>
## 3731 <NA> <NA> <NA> <NA> <NA>
## 3732 <NA> <NA> <NA> <NA> <NA>
## 3733 <NA> <NA> <NA> <NA> <NA>
## 3734 <NA> <NA> <NA> <NA> <NA>
## 3735 <NA> <NA> <NA> <NA> <NA>
## 3736 <NA> <NA> <NA> <NA> <NA>
## 3737 <NA> <NA> <NA> <NA> <NA>
## 3738 <NA> <NA> <NA> <NA> <NA>
## 3739 <NA> <NA> <NA> <NA> <NA>
## 3740 <NA> <NA> <NA> <NA> <NA>
## 3741 <NA> <NA> <NA> <NA> <NA>
## 3742 <NA> <NA> <NA> <NA> <NA>
## 3743 <NA> <NA> <NA> <NA> <NA>
## 3744 <NA> <NA> <NA> <NA> <NA>
## 3745 <NA> <NA> <NA> <NA> <NA>
## 3746 <NA> <NA> <NA> <NA> <NA>
## 3747 <NA> <NA> <NA> <NA> <NA>
## 3748 <NA> <NA> <NA> <NA> <NA>
## 3749 <NA> <NA> <NA> <NA> <NA>
## 3750 <NA> <NA> <NA> <NA> <NA>
## 3751 <NA> <NA> <NA> <NA> <NA>
## 3752 <NA> <NA> <NA> <NA> <NA>
## 3753 <NA> <NA> <NA> <NA> <NA>
## 3754 <NA> <NA> <NA> <NA> <NA>
## 3755 <NA> <NA> <NA> <NA> <NA>
## 3756 <NA> <NA> <NA> <NA> <NA>
## 3757 <NA> <NA> <NA> <NA> <NA>
## 3758 <NA> <NA> <NA> <NA> <NA>
## 3759 <NA> <NA> <NA> <NA> <NA>
## 3760 <NA> <NA> <NA> <NA> <NA>
## 3761 <NA> <NA> <NA> <NA> <NA>
## 3762 <NA> <NA> <NA> <NA> <NA>
## 3763 <NA> <NA> <NA> <NA> <NA>
## 3764 <NA> <NA> <NA> <NA> <NA>
## 3765 <NA> <NA> <NA> <NA> <NA>
## 3766 <NA> <NA> <NA> <NA> <NA>
## 3767 <NA> <NA> <NA> <NA> <NA>
## 3768 <NA> <NA> <NA> <NA> <NA>
## 3769 <NA> <NA> <NA> <NA> <NA>
## 3770 <NA> <NA> <NA> <NA> <NA>
## 3771 <NA> <NA> <NA> <NA> <NA>
## 3772 <NA> <NA> <NA> <NA> <NA>
## 3773 <NA> <NA> <NA> <NA> <NA>
## 3774 <NA> <NA> <NA> <NA> <NA>
## 3775 <NA> <NA> <NA> <NA> <NA>
## 3776 <NA> <NA> <NA> <NA> <NA>
## 3777 <NA> <NA> <NA> <NA> <NA>
## 3778 <NA> <NA> <NA> <NA> <NA>
## 3779 <NA> <NA> <NA> <NA> <NA>
## 3780 <NA> <NA> <NA> <NA> <NA>
## 3781 <NA> <NA> <NA> <NA> <NA>
## 3782 <NA> <NA> <NA> <NA> <NA>
## 3783 <NA> <NA> <NA> <NA> <NA>
## 3784 <NA> <NA> <NA> <NA> <NA>
## 3785 <NA> <NA> <NA> <NA> <NA>
## 3786 <NA> <NA> <NA> <NA> <NA>
## 3787 <NA> <NA> <NA> <NA> <NA>
## 3788 <NA> <NA> <NA> <NA> <NA>
## 3789 <NA> <NA> <NA> <NA> <NA>
## 3790 <NA> <NA> <NA> <NA> <NA>
## 3791 <NA> <NA> <NA> <NA> <NA>
## 3792 <NA> <NA> <NA> <NA> <NA>
## 3793 <NA> <NA> <NA> <NA> <NA>
## 3794 <NA> <NA> <NA> <NA> <NA>
## 3795 <NA> <NA> <NA> <NA> <NA>
## 3796 <NA> <NA> <NA> <NA> <NA>
## 3797 <NA> <NA> <NA> <NA> <NA>
## 3798 <NA> <NA> <NA> <NA> <NA>
## 3799 <NA> <NA> <NA> <NA> <NA>
## 3800 <NA> <NA> <NA> <NA> <NA>
## 3801 <NA> <NA> <NA> <NA> <NA>
## 3802 <NA> <NA> <NA> <NA> <NA>
## 3803 <NA> <NA> <NA> <NA> <NA>
## 3804 <NA> <NA> <NA> <NA> <NA>
## 3805 <NA> <NA> <NA> <NA> <NA>
## 3806 <NA> <NA> <NA> <NA> <NA>
## 3807 <NA> <NA> <NA> <NA> <NA>
## 3808 <NA> <NA> <NA> <NA> <NA>
## 3809 <NA> <NA> <NA> <NA> <NA>
## 3810 <NA> <NA> <NA> <NA> <NA>
## 3811 <NA> <NA> <NA> <NA> <NA>
## 3812 <NA> <NA> <NA> <NA> <NA>
## 3813 <NA> <NA> <NA> <NA> <NA>
## 3814 <NA> <NA> <NA> <NA> <NA>
## 3815 <NA> <NA> <NA> <NA> <NA>
## 3816 <NA> <NA> <NA> <NA> <NA>
## 3817 <NA> <NA> <NA> <NA> <NA>
## 3818 <NA> <NA> <NA> <NA> <NA>
## 3819 <NA> <NA> <NA> <NA> <NA>
## 3820 <NA> <NA> <NA> <NA> <NA>
## 3821 <NA> <NA> <NA> <NA> <NA>
## 3822 <NA> <NA> <NA> <NA> <NA>
## 3823 <NA> <NA> <NA> <NA> <NA>
## 3824 <NA> <NA> <NA> <NA> <NA>
## 3825 <NA> <NA> <NA> <NA> <NA>
## 3826 <NA> <NA> <NA> <NA> <NA>
## 3827 <NA> <NA> <NA> <NA> <NA>
## 3828 <NA> <NA> <NA> <NA> <NA>
## 3829 <NA> <NA> <NA> <NA> <NA>
## 3830 <NA> <NA> <NA> <NA> <NA>
## 3831 <NA> <NA> <NA> <NA> <NA>
## 3832 <NA> <NA> <NA> <NA> <NA>
## 3833 <NA> <NA> <NA> <NA> <NA>
## 3834 <NA> <NA> <NA> <NA> <NA>
## 3835 <NA> <NA> <NA> <NA> <NA>
## 3836 <NA> <NA> <NA> <NA> <NA>
## 3837 <NA> <NA> <NA> <NA> <NA>
## 3838 <NA> <NA> <NA> <NA> <NA>
## 3839 <NA> <NA> <NA> <NA> <NA>
## 3840 <NA> <NA> <NA> <NA> <NA>
## 3841 <NA> <NA> <NA> <NA> <NA>
## 3842 <NA> <NA> <NA> <NA> <NA>
## 3843 <NA> <NA> <NA> <NA> <NA>
## 3844 <NA> <NA> <NA> <NA> <NA>
## 3845 <NA> <NA> <NA> <NA> <NA>
## 3846 <NA> <NA> <NA> <NA> <NA>
## 3847 <NA> <NA> <NA> <NA> <NA>
## 3848 <NA> <NA> <NA> <NA> <NA>
## 3849 <NA> <NA> <NA> <NA> <NA>
## 3850 <NA> <NA> <NA> <NA> <NA>
## 3851 <NA> <NA> <NA> <NA> <NA>
## 3852 <NA> <NA> <NA> <NA> <NA>
## 3853 <NA> <NA> <NA> <NA> <NA>
## 3854 <NA> <NA> <NA> <NA> <NA>
## 3855 <NA> <NA> <NA> <NA> <NA>
## 3856 <NA> <NA> <NA> <NA> <NA>
## 3857 <NA> <NA> <NA> <NA> <NA>
## 3858 <NA> <NA> <NA> <NA> <NA>
## 3859 <NA> <NA> <NA> <NA> <NA>
## 3860 <NA> <NA> <NA> <NA> <NA>
## 3861 <NA> <NA> <NA> <NA> <NA>
## 3862 <NA> <NA> <NA> <NA> <NA>
## 3863 <NA> <NA> <NA> <NA> <NA>
## 3864 <NA> <NA> <NA> <NA> <NA>
## 3865 <NA> <NA> <NA> <NA> <NA>
## 3866 <NA> <NA> <NA> <NA> <NA>
## 3867 <NA> <NA> <NA> <NA> <NA>
## 3868 <NA> <NA> <NA> <NA> <NA>
## 3869 <NA> <NA> <NA> <NA> <NA>
## 3870 <NA> <NA> <NA> <NA> <NA>
## 3871 <NA> <NA> <NA> <NA> <NA>
## 3872 <NA> <NA> <NA> <NA> <NA>
## 3873 <NA> <NA> <NA> <NA> <NA>
## 3874 <NA> <NA> <NA> <NA> <NA>
## 3875 <NA> <NA> <NA> <NA> <NA>
## 3876 <NA> <NA> <NA> <NA> <NA>
## 3877 <NA> <NA> <NA> <NA> <NA>
## 3878 <NA> <NA> <NA> <NA> <NA>
## 3879 <NA> <NA> <NA> <NA> <NA>
## 3880 <NA> <NA> <NA> <NA> <NA>
## 3881 <NA> <NA> <NA> <NA> <NA>
## 3882 <NA> <NA> <NA> <NA> <NA>
## 3883 <NA> <NA> <NA> <NA> <NA>
## 3884 <NA> <NA> <NA> <NA> <NA>
## 3885 <NA> <NA> <NA> <NA> <NA>
## 3886 <NA> <NA> <NA> <NA> <NA>
## 3887 <NA> <NA> <NA> <NA> <NA>
## 3888 <NA> <NA> <NA> <NA> <NA>
## 3889 <NA> <NA> <NA> <NA> <NA>
## 3890 <NA> <NA> <NA> <NA> <NA>
## 3891 <NA> <NA> <NA> <NA> <NA>
## 3892 <NA> <NA> <NA> <NA> <NA>
## 3893 <NA> <NA> <NA> <NA> <NA>
## 3894 <NA> <NA> <NA> <NA> <NA>
## 3895 <NA> <NA> <NA> <NA> <NA>
## 3896 <NA> <NA> <NA> <NA> <NA>
## 3897 <NA> <NA> <NA> <NA> <NA>
## 3898 <NA> <NA> <NA> <NA> <NA>
## 3899 <NA> <NA> <NA> <NA> <NA>
## 3900 <NA> <NA> <NA> <NA> <NA>
## 3901 <NA> <NA> <NA> <NA> <NA>
## 3902 <NA> <NA> <NA> <NA> <NA>
## 3903 <NA> <NA> <NA> <NA> <NA>
## 3904 <NA> <NA> <NA> <NA> <NA>
## 3905 <NA> <NA> <NA> <NA> <NA>
## 3906 <NA> <NA> <NA> <NA> <NA>
## 3907 <NA> <NA> <NA> <NA> <NA>
## 3908 <NA> <NA> <NA> <NA> <NA>
## 3909 <NA> <NA> <NA> <NA> <NA>
## 3910 <NA> <NA> <NA> <NA> <NA>
## 3911 <NA> <NA> <NA> <NA> <NA>
## 3912 <NA> <NA> <NA> <NA> <NA>
## 3913 <NA> <NA> <NA> <NA> <NA>
## 3914 <NA> <NA> <NA> <NA> <NA>
## 3915 <NA> <NA> <NA> <NA> <NA>
## 3916 <NA> <NA> <NA> <NA> <NA>
## 3917 <NA> <NA> <NA> <NA> <NA>
## 3918 <NA> <NA> <NA> <NA> <NA>
## 3919 <NA> <NA> <NA> <NA> <NA>
## 3920 <NA> <NA> <NA> <NA> <NA>
## 3921 <NA> <NA> <NA> <NA> <NA>
## 3922 <NA> <NA> <NA> <NA> <NA>
## 3923 <NA> <NA> <NA> <NA> <NA>
## 3924 <NA> <NA> <NA> <NA> <NA>
## 3925 <NA> <NA> <NA> <NA> <NA>
## 3926 <NA> <NA> <NA> <NA> <NA>
## 3927 <NA> <NA> <NA> <NA> <NA>
## 3928 <NA> <NA> <NA> <NA> <NA>
## 3929 <NA> <NA> <NA> <NA> <NA>
## 3930 <NA> <NA> <NA> <NA> <NA>
## 3931 <NA> <NA> <NA> <NA> <NA>
## 3932 <NA> <NA> <NA> <NA> <NA>
## 3933 <NA> <NA> <NA> <NA> <NA>
## 3934 <NA> <NA> <NA> <NA> <NA>
## 3935 <NA> <NA> <NA> <NA> <NA>
## 3936 <NA> <NA> <NA> <NA> <NA>
## 3937 <NA> <NA> <NA> <NA> <NA>
## 3938 <NA> <NA> <NA> <NA> <NA>
## 3939 <NA> <NA> <NA> <NA> <NA>
## 3940 <NA> <NA> <NA> <NA> <NA>
## 3941 <NA> <NA> <NA> <NA> <NA>
## 3942 <NA> <NA> <NA> <NA> <NA>
## 3943 <NA> <NA> <NA> <NA> <NA>
## 3944 <NA> <NA> <NA> <NA> <NA>
## 3945 <NA> <NA> <NA> <NA> <NA>
## 3946 <NA> <NA> <NA> <NA> <NA>
## 3947 <NA> <NA> <NA> <NA> <NA>
## 3948 <NA> <NA> <NA> <NA> <NA>
## 3949 <NA> <NA> <NA> <NA> <NA>
## 3950 <NA> <NA> <NA> <NA> <NA>
## 3951 <NA> <NA> <NA> <NA> <NA>
## 3952 <NA> <NA> <NA> <NA> <NA>
## 3953 <NA> <NA> <NA> <NA> <NA>
## 3954 <NA> <NA> <NA> <NA> <NA>
## 3955 <NA> <NA> <NA> <NA> <NA>
## 3956 <NA> <NA> <NA> <NA> <NA>
## 3957 <NA> <NA> <NA> <NA> <NA>
## 3958 <NA> <NA> <NA> <NA> <NA>
## 3959 <NA> <NA> <NA> <NA> <NA>
## 3960 <NA> <NA> <NA> <NA> <NA>
## 3961 <NA> <NA> <NA> <NA> <NA>
## 3962 <NA> <NA> <NA> <NA> <NA>
## 3963 <NA> <NA> <NA> <NA> <NA>
## 3964 <NA> <NA> <NA> <NA> <NA>
## 3965 <NA> <NA> <NA> <NA> <NA>
## 3966 <NA> <NA> <NA> <NA> <NA>
## 3967 <NA> <NA> <NA> <NA> <NA>
## 3968 <NA> <NA> <NA> <NA> <NA>
## 3969 <NA> <NA> <NA> <NA> <NA>
## 3970 <NA> <NA> <NA> <NA> <NA>
## 3971 <NA> <NA> <NA> <NA> <NA>
## 3972 <NA> <NA> <NA> <NA> <NA>
## 3973 <NA> <NA> <NA> <NA> <NA>
## 3974 <NA> <NA> <NA> <NA> <NA>
## 3975 <NA> <NA> <NA> <NA> <NA>
## 3976 <NA> <NA> <NA> <NA> <NA>
## 3977 <NA> <NA> <NA> <NA> <NA>
## 3978 <NA> <NA> <NA> <NA> <NA>
## 3979 <NA> <NA> <NA> <NA> <NA>
## 3980 <NA> <NA> <NA> <NA> <NA>
## 3981 <NA> <NA> <NA> <NA> <NA>
## 3982 <NA> <NA> <NA> <NA> <NA>
## 3983 <NA> <NA> <NA> <NA> <NA>
## 3984 <NA> <NA> <NA> <NA> <NA>
## 3985 <NA> <NA> <NA> <NA> <NA>
## 3986 <NA> <NA> <NA> <NA> <NA>
## 3987 <NA> <NA> <NA> <NA> <NA>
## 3988 <NA> <NA> <NA> <NA> <NA>
## 3989 <NA> <NA> <NA> <NA> <NA>
## 3990 <NA> <NA> <NA> <NA> <NA>
## 3991 <NA> <NA> <NA> <NA> <NA>
## 3992 <NA> <NA> <NA> <NA> <NA>
## 3993 <NA> <NA> <NA> <NA> <NA>
## 3994 <NA> <NA> <NA> <NA> <NA>
## 3995 <NA> <NA> <NA> <NA> <NA>
## 3996 <NA> <NA> <NA> <NA> <NA>
## 3997 <NA> <NA> <NA> <NA> <NA>
## 3998 <NA> <NA> <NA> <NA> <NA>
## 3999 <NA> <NA> <NA> <NA> <NA>
## 4000 <NA> <NA> <NA> <NA> <NA>
## 4001 <NA> <NA> <NA> <NA> <NA>
## 4002 <NA> <NA> <NA> <NA> <NA>
## 4003 <NA> <NA> <NA> <NA> <NA>
## 4004 <NA> <NA> <NA> <NA> <NA>
## 4005 <NA> <NA> <NA> <NA> <NA>
## 4006 <NA> <NA> <NA> <NA> <NA>
## 4007 <NA> <NA> <NA> <NA> <NA>
## 4008 <NA> <NA> <NA> <NA> <NA>
## 4009 <NA> <NA> <NA> <NA> <NA>
## 4010 <NA> <NA> <NA> <NA> <NA>
## 4011 <NA> <NA> <NA> <NA> <NA>
## 4012 <NA> <NA> <NA> <NA> <NA>
## 4013 <NA> <NA> <NA> <NA> <NA>
## 4014 <NA> <NA> <NA> <NA> <NA>
## 4015 <NA> <NA> <NA> <NA> <NA>
## 4016 <NA> <NA> <NA> <NA> <NA>
## 4017 <NA> <NA> <NA> <NA> <NA>
## 4018 <NA> <NA> <NA> <NA> <NA>
## 4019 <NA> <NA> <NA> <NA> <NA>
## 4020 <NA> <NA> <NA> <NA> <NA>
## 4021 <NA> <NA> <NA> <NA> <NA>
## 4022 <NA> <NA> <NA> <NA> <NA>
## 4023 <NA> <NA> <NA> <NA> <NA>
## 4024 <NA> <NA> <NA> <NA> <NA>
## 4025 <NA> <NA> <NA> <NA> <NA>
## 4026 <NA> <NA> <NA> <NA> <NA>
## 4027 <NA> <NA> <NA> <NA> <NA>
## 4028 <NA> <NA> <NA> <NA> <NA>
## 4029 <NA> <NA> <NA> <NA> <NA>
## 4030 <NA> <NA> <NA> <NA> <NA>
## 4031 <NA> <NA> <NA> <NA> <NA>
## 4032 <NA> <NA> <NA> <NA> <NA>
## 4033 <NA> <NA> <NA> <NA> <NA>
## 4034 <NA> <NA> <NA> <NA> <NA>
## 4035 <NA> <NA> <NA> <NA> <NA>
## 4036 <NA> <NA> <NA> <NA> <NA>
## 4037 <NA> <NA> <NA> <NA> <NA>
## 4038 <NA> <NA> <NA> <NA> <NA>
## 4039 <NA> <NA> <NA> <NA> <NA>
## 4040 <NA> <NA> <NA> <NA> <NA>
## 4041 <NA> <NA> <NA> <NA> <NA>
## 4042 <NA> <NA> <NA> <NA> <NA>
## 4043 <NA> <NA> <NA> <NA> <NA>
## 4044 <NA> <NA> <NA> <NA> <NA>
## 4045 <NA> <NA> <NA> <NA> <NA>
## 4046 <NA> <NA> <NA> <NA> <NA>
## 4047 <NA> <NA> <NA> <NA> <NA>
## 4048 <NA> <NA> <NA> <NA> <NA>
## 4049 <NA> <NA> <NA> <NA> <NA>
## 4050 <NA> <NA> <NA> <NA> <NA>
## 4051 <NA> <NA> <NA> <NA> <NA>
## 4052 <NA> <NA> <NA> <NA> <NA>
## 4053 <NA> <NA> <NA> <NA> <NA>
## 4054 <NA> <NA> <NA> <NA> <NA>
## 4055 <NA> <NA> <NA> <NA> <NA>
## 4056 <NA> <NA> <NA> <NA> <NA>
## 4057 <NA> <NA> <NA> <NA> <NA>
## 4058 <NA> <NA> <NA> <NA> <NA>
## 4059 <NA> <NA> <NA> <NA> <NA>
## 4060 <NA> <NA> <NA> <NA> <NA>
## 4061 <NA> <NA> <NA> <NA> <NA>
## 4062 <NA> <NA> <NA> <NA> <NA>
## 4063 <NA> <NA> <NA> <NA> <NA>
## 4064 <NA> <NA> <NA> <NA> <NA>
## 4065 <NA> <NA> <NA> <NA> <NA>
## 4066 <NA> <NA> <NA> <NA> <NA>
## 4067 <NA> <NA> <NA> <NA> <NA>
## 4068 <NA> <NA> <NA> <NA> <NA>
## 4069 <NA> <NA> <NA> <NA> <NA>
## 4070 <NA> <NA> <NA> <NA> <NA>
## 4071 <NA> <NA> <NA> <NA> <NA>
## 4072 <NA> <NA> <NA> <NA> <NA>
## 4073 <NA> <NA> <NA> <NA> <NA>
## 4074 <NA> <NA> <NA> <NA> <NA>
## 4075 <NA> <NA> <NA> <NA> <NA>
## 4076 <NA> <NA> <NA> <NA> <NA>
## 4077 <NA> <NA> <NA> <NA> <NA>
## 4078 <NA> <NA> <NA> <NA> <NA>
## 4079 <NA> <NA> <NA> <NA> <NA>
## 4080 <NA> <NA> <NA> <NA> <NA>
## 4081 <NA> <NA> <NA> <NA> <NA>
## 4082 <NA> <NA> <NA> <NA> <NA>
## 4083 <NA> <NA> <NA> <NA> <NA>
## 4084 <NA> <NA> <NA> <NA> <NA>
## 4085 <NA> <NA> <NA> <NA> <NA>
## 4086 <NA> <NA> <NA> <NA> <NA>
## 4087 <NA> <NA> <NA> <NA> <NA>
## 4088 <NA> <NA> <NA> <NA> <NA>
## 4089 <NA> <NA> <NA> <NA> <NA>
## 4090 <NA> <NA> <NA> <NA> <NA>
## 4091 <NA> <NA> <NA> <NA> <NA>
## 4092 <NA> <NA> <NA> <NA> <NA>
## 4093 <NA> <NA> <NA> <NA> <NA>
## 4094 <NA> <NA> <NA> <NA> <NA>
## 4095 <NA> <NA> <NA> <NA> <NA>
## 4096 <NA> <NA> <NA> <NA> <NA>
## 4097 <NA> <NA> <NA> <NA> <NA>
## 4098 <NA> <NA> <NA> <NA> <NA>
## 4099 <NA> <NA> <NA> <NA> <NA>
## 4100 <NA> <NA> <NA> <NA> <NA>
## 4101 <NA> <NA> <NA> <NA> <NA>
## 4102 <NA> <NA> <NA> <NA> <NA>
## 4103 <NA> <NA> <NA> <NA> <NA>
## 4104 <NA> <NA> <NA> <NA> <NA>
## 4105 <NA> <NA> <NA> <NA> <NA>
## 4106 <NA> <NA> <NA> <NA> <NA>
## 4107 <NA> <NA> <NA> <NA> <NA>
## 4108 <NA> <NA> <NA> <NA> <NA>
## 4109 <NA> <NA> <NA> <NA> <NA>
## 4110 <NA> <NA> <NA> <NA> <NA>
## 4111 <NA> <NA> <NA> <NA> <NA>
## 4112 <NA> <NA> <NA> <NA> <NA>
## 4113 <NA> <NA> <NA> <NA> <NA>
## 4114 <NA> <NA> <NA> <NA> <NA>
## 4115 <NA> <NA> <NA> <NA> <NA>
## 4116 <NA> <NA> <NA> <NA> <NA>
## 4117 <NA> <NA> <NA> <NA> <NA>
## 4118 <NA> <NA> <NA> <NA> <NA>
## 4119 <NA> <NA> <NA> <NA> <NA>
## 4120 <NA> <NA> <NA> <NA> <NA>
## 4121 <NA> <NA> <NA> <NA> <NA>
## 4122 <NA> <NA> <NA> <NA> <NA>
## 4123 <NA> <NA> <NA> <NA> <NA>
## 4124 <NA> <NA> <NA> <NA> <NA>
## 4125 <NA> <NA> <NA> <NA> <NA>
## 4126 <NA> <NA> <NA> <NA> <NA>
## 4127 <NA> <NA> <NA> <NA> <NA>
## 4128 <NA> <NA> <NA> <NA> <NA>
## 4129 <NA> <NA> <NA> <NA> <NA>
## 4130 <NA> <NA> <NA> <NA> <NA>
## 4131 <NA> <NA> <NA> <NA> <NA>
## 4132 <NA> <NA> <NA> <NA> <NA>
## 4133 <NA> <NA> <NA> <NA> <NA>
## 4134 <NA> <NA> <NA> <NA> <NA>
## 4135 <NA> <NA> <NA> <NA> <NA>
## 4136 <NA> <NA> <NA> <NA> <NA>
## 4137 <NA> <NA> <NA> <NA> <NA>
## 4138 <NA> <NA> <NA> <NA> <NA>
## 4139 <NA> <NA> <NA> <NA> <NA>
## 4140 <NA> <NA> <NA> <NA> <NA>
## 4141 <NA> <NA> <NA> <NA> <NA>
## 4142 <NA> <NA> <NA> <NA> <NA>
## 4143 <NA> <NA> <NA> <NA> <NA>
## 4144 <NA> <NA> <NA> <NA> <NA>
## 4145 <NA> <NA> <NA> <NA> <NA>
## 4146 <NA> <NA> <NA> <NA> <NA>
## 4147 <NA> <NA> <NA> <NA> <NA>
## 4148 <NA> <NA> <NA> <NA> <NA>
## 4149 <NA> <NA> <NA> <NA> <NA>
## 4150 <NA> <NA> <NA> <NA> <NA>
## 4151 <NA> <NA> <NA> <NA> <NA>
## 4152 <NA> <NA> <NA> <NA> <NA>
## 4153 <NA> <NA> <NA> <NA> <NA>
## 4154 <NA> <NA> <NA> <NA> <NA>
## 4155 <NA> <NA> <NA> <NA> <NA>
## 4156 <NA> <NA> <NA> <NA> <NA>
## 4157 <NA> <NA> <NA> <NA> <NA>
## 4158 <NA> <NA> <NA> <NA> <NA>
## 4159 <NA> <NA> <NA> <NA> <NA>
## 4160 <NA> <NA> <NA> <NA> <NA>
## 4161 <NA> <NA> <NA> <NA> <NA>
## 4162 <NA> <NA> <NA> <NA> <NA>
## 4163 <NA> <NA> <NA> <NA> <NA>
## 4164 <NA> <NA> <NA> <NA> <NA>
## 4165 <NA> <NA> <NA> <NA> <NA>
## 4166 <NA> <NA> <NA> <NA> <NA>
## 4167 <NA> <NA> <NA> <NA> <NA>
## 4168 <NA> <NA> <NA> <NA> <NA>
## 4169 <NA> <NA> <NA> <NA> <NA>
## 4170 <NA> <NA> <NA> <NA> <NA>
## 4171 <NA> <NA> <NA> <NA> <NA>
## 4172 <NA> <NA> <NA> <NA> <NA>
## 4173 <NA> <NA> <NA> <NA> <NA>
## 4174 <NA> <NA> <NA> <NA> <NA>
## 4175 <NA> <NA> <NA> <NA> <NA>
## 4176 <NA> <NA> <NA> <NA> <NA>
## 4177 <NA> <NA> <NA> <NA> <NA>
## 4178 <NA> <NA> <NA> <NA> <NA>
## 4179 <NA> <NA> <NA> <NA> <NA>
## 4180 <NA> <NA> <NA> <NA> <NA>
## 4181 <NA> <NA> <NA> <NA> <NA>
## 4182 <NA> <NA> <NA> <NA> <NA>
## 4183 <NA> <NA> <NA> <NA> <NA>
## 4184 <NA> <NA> <NA> <NA> <NA>
## 4185 <NA> <NA> <NA> <NA> <NA>
## 4186 <NA> <NA> <NA> <NA> <NA>
## 4187 <NA> <NA> <NA> <NA> <NA>
## 4188 <NA> <NA> <NA> <NA> <NA>
## 4189 <NA> <NA> <NA> <NA> <NA>
## 4190 <NA> <NA> <NA> <NA> <NA>
## 4191 <NA> <NA> <NA> <NA> <NA>
## 4192 <NA> <NA> <NA> <NA> <NA>
## 4193 <NA> <NA> <NA> <NA> <NA>
## 4194 <NA> <NA> <NA> <NA> <NA>
## 4195 <NA> <NA> <NA> <NA> <NA>
## 4196 <NA> <NA> <NA> <NA> <NA>
## 4197 <NA> <NA> <NA> <NA> <NA>
## 4198 <NA> <NA> <NA> <NA> <NA>
## 4199 <NA> <NA> <NA> <NA> <NA>
## 4200 <NA> <NA> <NA> <NA> <NA>
## 4201 <NA> <NA> <NA> <NA> <NA>
## 4202 <NA> <NA> <NA> <NA> <NA>
## 4203 <NA> <NA> <NA> <NA> <NA>
## 4204 <NA> <NA> <NA> <NA> <NA>
## 4205 <NA> <NA> <NA> <NA> <NA>
## 4206 <NA> <NA> <NA> <NA> <NA>
## 4207 <NA> <NA> <NA> <NA> <NA>
## 4208 <NA> <NA> <NA> <NA> <NA>
## 4209 <NA> <NA> <NA> <NA> <NA>
## 4210 <NA> <NA> <NA> <NA> <NA>
## 4211 <NA> <NA> <NA> <NA> <NA>
## 4212 <NA> <NA> <NA> <NA> <NA>
## 4213 <NA> <NA> <NA> <NA> <NA>
## 4214 <NA> <NA> <NA> <NA> <NA>
## 4215 <NA> <NA> <NA> <NA> <NA>
## 4216 <NA> <NA> <NA> <NA> <NA>
## 4217 <NA> <NA> <NA> <NA> <NA>
## 4218 <NA> <NA> <NA> <NA> <NA>
## 4219 <NA> <NA> <NA> <NA> <NA>
## 4220 <NA> <NA> <NA> <NA> <NA>
## 4221 <NA> <NA> <NA> <NA> <NA>
## 4222 <NA> <NA> <NA> <NA> <NA>
## 4223 <NA> <NA> <NA> <NA> <NA>
## 4224 <NA> <NA> <NA> <NA> <NA>
## 4225 <NA> <NA> <NA> <NA> <NA>
## 4226 <NA> <NA> <NA> <NA> <NA>
## 4227 <NA> <NA> <NA> <NA> <NA>
## 4228 <NA> <NA> <NA> <NA> <NA>
## 4229 <NA> <NA> <NA> <NA> <NA>
## 4230 <NA> <NA> <NA> <NA> <NA>
## 4231 <NA> <NA> <NA> <NA> <NA>
## 4232 <NA> <NA> <NA> <NA> <NA>
## 4233 <NA> <NA> <NA> <NA> <NA>
## 4234 <NA> <NA> <NA> <NA> <NA>
## 4235 <NA> <NA> <NA> <NA> <NA>
## 4236 <NA> <NA> <NA> <NA> <NA>
## 4237 <NA> <NA> <NA> <NA> <NA>
## 4238 <NA> <NA> <NA> <NA> <NA>
## 4239 <NA> <NA> <NA> <NA> <NA>
## 4240 <NA> <NA> <NA> <NA> <NA>
## 4241 <NA> <NA> <NA> <NA> <NA>
## 4242 <NA> <NA> <NA> <NA> <NA>
## 4243 <NA> <NA> <NA> <NA> <NA>
## 4244 <NA> <NA> <NA> <NA> <NA>
## 4245 <NA> <NA> <NA> <NA> <NA>
## 4246 <NA> <NA> <NA> <NA> <NA>
## 4247 <NA> <NA> <NA> <NA> <NA>
## 4248 <NA> <NA> <NA> <NA> <NA>
## 4249 <NA> <NA> <NA> <NA> <NA>
## 4250 <NA> <NA> <NA> <NA> <NA>
## 4251 <NA> <NA> <NA> <NA> <NA>
## 4252 <NA> <NA> <NA> <NA> <NA>
## 4253 <NA> <NA> <NA> <NA> <NA>
## 4254 <NA> <NA> <NA> <NA> <NA>
## 4255 <NA> <NA> <NA> <NA> <NA>
## 4256 <NA> <NA> <NA> <NA> <NA>
## 4257 <NA> <NA> <NA> <NA> <NA>
## 4258 <NA> <NA> <NA> <NA> <NA>
## 4259 <NA> <NA> <NA> <NA> <NA>
## 4260 <NA> <NA> <NA> <NA> <NA>
## 4261 <NA> <NA> <NA> <NA> <NA>
## 4262 <NA> <NA> <NA> <NA> <NA>
## 4263 <NA> <NA> <NA> <NA> <NA>
## 4264 <NA> <NA> <NA> <NA> <NA>
## 4265 <NA> <NA> <NA> <NA> <NA>
## 4266 <NA> <NA> <NA> <NA> <NA>
## 4267 <NA> <NA> <NA> <NA> <NA>
## 4268 <NA> <NA> <NA> <NA> <NA>
## 4269 <NA> <NA> <NA> <NA> <NA>
## 4270 <NA> <NA> <NA> <NA> <NA>
## 4271 <NA> <NA> <NA> <NA> <NA>
## 4272 <NA> <NA> <NA> <NA> <NA>
## 4273 <NA> <NA> <NA> <NA> <NA>
## 4274 <NA> <NA> <NA> <NA> <NA>
## 4275 <NA> <NA> <NA> <NA> <NA>
## 4276 <NA> <NA> <NA> <NA> <NA>
## 4277 <NA> <NA> <NA> <NA> <NA>
## 4278 <NA> <NA> <NA> <NA> <NA>
## 4279 <NA> <NA> <NA> <NA> <NA>
## 4280 <NA> <NA> <NA> <NA> <NA>
## 4281 <NA> <NA> <NA> <NA> <NA>
## 4282 <NA> <NA> <NA> <NA> <NA>
## 4283 <NA> <NA> <NA> <NA> <NA>
## 4284 <NA> <NA> <NA> <NA> <NA>
## 4285 <NA> <NA> <NA> <NA> <NA>
## 4286 <NA> <NA> <NA> <NA> <NA>
## 4287 <NA> <NA> <NA> <NA> <NA>
## 4288 <NA> <NA> <NA> <NA> <NA>
## 4289 <NA> <NA> <NA> <NA> <NA>
## 4290 <NA> <NA> <NA> <NA> <NA>
## 4291 <NA> <NA> <NA> <NA> <NA>
## 4292 <NA> <NA> <NA> <NA> <NA>
## 4293 <NA> <NA> <NA> <NA> <NA>
## 4294 <NA> <NA> <NA> <NA> <NA>
## 4295 <NA> <NA> <NA> <NA> <NA>
## 4296 <NA> <NA> <NA> <NA> <NA>
## 4297 <NA> <NA> <NA> <NA> <NA>
## 4298 <NA> <NA> <NA> <NA> <NA>
## 4299 <NA> <NA> <NA> <NA> <NA>
## 4300 <NA> <NA> <NA> <NA> <NA>
## 4301 <NA> <NA> <NA> <NA> <NA>
## 4302 <NA> <NA> <NA> <NA> <NA>
## 4303 <NA> <NA> <NA> <NA> <NA>
## 4304 <NA> <NA> <NA> <NA> <NA>
## 4305 <NA> <NA> <NA> <NA> <NA>
## 4306 <NA> <NA> <NA> <NA> <NA>
## 4307 <NA> <NA> <NA> <NA> <NA>
## 4308 <NA> <NA> <NA> <NA> <NA>
## 4309 <NA> <NA> <NA> <NA> <NA>
## 4310 <NA> <NA> <NA> <NA> <NA>
## 4311 <NA> <NA> <NA> <NA> <NA>
## 4312 <NA> <NA> <NA> <NA> <NA>
## 4313 <NA> <NA> <NA> <NA> <NA>
## 4314 <NA> <NA> <NA> <NA> <NA>
## 4315 <NA> <NA> <NA> <NA> <NA>
## 4316 <NA> <NA> <NA> <NA> <NA>
## 4317 <NA> <NA> <NA> <NA> <NA>
## 4318 <NA> <NA> <NA> <NA> <NA>
## 4319 <NA> <NA> <NA> <NA> <NA>
## 4320 <NA> <NA> <NA> <NA> <NA>
## 4321 <NA> <NA> <NA> <NA> <NA>
## 4322 <NA> <NA> <NA> <NA> <NA>
## 4323 <NA> <NA> <NA> <NA> <NA>
## 4324 <NA> <NA> <NA> <NA> <NA>
## 4325 <NA> <NA> <NA> <NA> <NA>
## 4326 <NA> <NA> <NA> <NA> <NA>
## 4327 <NA> <NA> <NA> <NA> <NA>
## 4328 <NA> <NA> <NA> <NA> <NA>
## 4329 <NA> <NA> <NA> <NA> <NA>
## 4330 <NA> <NA> <NA> <NA> <NA>
## 4331 <NA> <NA> <NA> <NA> <NA>
## 4332 <NA> <NA> <NA> <NA> <NA>
## 4333 <NA> <NA> <NA> <NA> <NA>
## 4334 <NA> <NA> <NA> <NA> <NA>
## 4335 <NA> <NA> <NA> <NA> <NA>
## 4336 <NA> <NA> <NA> <NA> <NA>
## 4337 <NA> <NA> <NA> <NA> <NA>
## 4338 <NA> <NA> <NA> <NA> <NA>
## 4339 <NA> <NA> <NA> <NA> <NA>
## 4340 <NA> <NA> <NA> <NA> <NA>
## 4341 <NA> <NA> <NA> <NA> <NA>
## 4342 <NA> <NA> <NA> <NA> <NA>
## 4343 <NA> <NA> <NA> <NA> <NA>
## 4344 <NA> <NA> <NA> <NA> <NA>
## 4345 <NA> <NA> <NA> <NA> <NA>
## 4346 <NA> <NA> <NA> <NA> <NA>
## 4347 <NA> <NA> <NA> <NA> <NA>
## 4348 <NA> <NA> <NA> <NA> <NA>
## 4349 <NA> <NA> <NA> <NA> <NA>
## 4350 <NA> <NA> <NA> <NA> <NA>
## 4351 <NA> <NA> <NA> <NA> <NA>
## 4352 <NA> <NA> <NA> <NA> <NA>
## 4353 <NA> <NA> <NA> <NA> <NA>
## 4354 <NA> <NA> <NA> <NA> <NA>
## 4355 <NA> <NA> <NA> <NA> <NA>
## 4356 <NA> <NA> <NA> <NA> <NA>
## 4357 <NA> <NA> <NA> <NA> <NA>
## 4358 <NA> <NA> <NA> <NA> <NA>
## 4359 <NA> <NA> <NA> <NA> <NA>
## 4360 <NA> <NA> <NA> <NA> <NA>
## 4361 <NA> <NA> <NA> <NA> <NA>
## 4362 <NA> <NA> <NA> <NA> <NA>
## 4363 <NA> <NA> <NA> <NA> <NA>
## 4364 <NA> <NA> <NA> <NA> <NA>
## 4365 <NA> <NA> <NA> <NA> <NA>
## 4366 <NA> <NA> <NA> <NA> <NA>
## 4367 <NA> <NA> <NA> <NA> <NA>
## 4368 <NA> <NA> <NA> <NA> <NA>
## 4369 <NA> <NA> <NA> <NA> <NA>
## 4370 <NA> <NA> <NA> <NA> <NA>
## 4371 <NA> <NA> <NA> <NA> <NA>
## 4372 <NA> <NA> <NA> <NA> <NA>
## 4373 <NA> <NA> <NA> <NA> <NA>
## 4374 <NA> <NA> <NA> <NA> <NA>
## 4375 <NA> <NA> <NA> <NA> <NA>
## 4376 <NA> <NA> <NA> <NA> <NA>
## 4377 <NA> <NA> <NA> <NA> <NA>
## 4378 <NA> <NA> <NA> <NA> <NA>
## 4379 <NA> <NA> <NA> <NA> <NA>
## 4380 <NA> <NA> <NA> <NA> <NA>
## 4381 <NA> <NA> <NA> <NA> <NA>
## 4382 <NA> <NA> <NA> <NA> <NA>
## 4383 <NA> <NA> <NA> <NA> <NA>
## 4384 <NA> <NA> <NA> <NA> <NA>
## 4385 <NA> <NA> <NA> <NA> <NA>
## 4386 <NA> <NA> <NA> <NA> <NA>
## 4387 <NA> <NA> <NA> <NA> <NA>
## 4388 <NA> <NA> <NA> <NA> <NA>
## 4389 <NA> <NA> <NA> <NA> <NA>
## 4390 <NA> <NA> <NA> <NA> <NA>
## 4391 <NA> <NA> <NA> <NA> <NA>
## 4392 <NA> <NA> <NA> <NA> <NA>
## 4393 <NA> <NA> <NA> <NA> <NA>
## 4394 <NA> <NA> <NA> <NA> <NA>
## 4395 <NA> <NA> <NA> <NA> <NA>
## 4396 <NA> <NA> <NA> <NA> <NA>
## 4397 <NA> <NA> <NA> <NA> <NA>
## 4398 <NA> <NA> <NA> <NA> <NA>
## 4399 <NA> <NA> <NA> <NA> <NA>
## 4400 <NA> <NA> <NA> <NA> <NA>
## 4401 <NA> <NA> <NA> <NA> <NA>
## 4402 <NA> <NA> <NA> <NA> <NA>
## 4403 <NA> <NA> <NA> <NA> <NA>
## 4404 <NA> <NA> <NA> <NA> <NA>
## 4405 <NA> <NA> <NA> <NA> <NA>
## 4406 <NA> <NA> <NA> <NA> <NA>
## 4407 <NA> <NA> <NA> <NA> <NA>
## 4408 <NA> <NA> <NA> <NA> <NA>
## 4409 <NA> <NA> <NA> <NA> <NA>
## 4410 <NA> <NA> <NA> <NA> <NA>
## 4411 <NA> <NA> <NA> <NA> <NA>
## 4412 <NA> <NA> <NA> <NA> <NA>
## 4413 <NA> <NA> <NA> <NA> <NA>
## 4414 <NA> <NA> <NA> <NA> <NA>
## 4415 <NA> <NA> <NA> <NA> <NA>
## 4416 <NA> <NA> <NA> <NA> <NA>
## 4417 <NA> <NA> <NA> <NA> <NA>
## 4418 <NA> <NA> <NA> <NA> <NA>
## 4419 <NA> <NA> <NA> <NA> <NA>
## 4420 <NA> <NA> <NA> <NA> <NA>
## 4421 <NA> <NA> <NA> <NA> <NA>
## 4422 <NA> <NA> <NA> <NA> <NA>
## 4423 <NA> <NA> <NA> <NA> <NA>
## 4424 <NA> <NA> <NA> <NA> <NA>
## 4425 <NA> <NA> <NA> <NA> <NA>
## 4426 <NA> <NA> <NA> <NA> <NA>
## 4427 <NA> <NA> <NA> <NA> <NA>
## 4428 <NA> <NA> <NA> <NA> <NA>
## 4429 <NA> <NA> <NA> <NA> <NA>
## 4430 <NA> <NA> <NA> <NA> <NA>
## 4431 <NA> <NA> <NA> <NA> <NA>
## 4432 <NA> <NA> <NA> <NA> <NA>
## 4433 <NA> <NA> <NA> <NA> <NA>
## 4434 <NA> <NA> <NA> <NA> <NA>
## 4435 <NA> <NA> <NA> <NA> <NA>
## 4436 <NA> <NA> <NA> <NA> <NA>
## 4437 <NA> <NA> <NA> <NA> <NA>
## 4438 <NA> <NA> <NA> <NA> <NA>
## 4439 <NA> <NA> <NA> <NA> <NA>
## 4440 <NA> <NA> <NA> <NA> <NA>
## 4441 <NA> <NA> <NA> <NA> <NA>
## 4442 <NA> <NA> <NA> <NA> <NA>
## 4443 <NA> <NA> <NA> <NA> <NA>
## 4444 <NA> <NA> <NA> <NA> <NA>
## 4445 <NA> <NA> <NA> <NA> <NA>
## 4446 <NA> <NA> <NA> <NA> <NA>
## 4447 <NA> <NA> <NA> <NA> <NA>
## 4448 <NA> <NA> <NA> <NA> <NA>
## 4449 <NA> <NA> <NA> <NA> <NA>
## 4450 <NA> <NA> <NA> <NA> <NA>
## 4451 <NA> <NA> <NA> <NA> <NA>
## 4452 <NA> <NA> <NA> <NA> <NA>
## 4453 <NA> <NA> <NA> <NA> <NA>
## 4454 <NA> <NA> <NA> <NA> <NA>
## 4455 <NA> <NA> <NA> <NA> <NA>
## 4456 <NA> <NA> <NA> <NA> <NA>
## 4457 <NA> <NA> <NA> <NA> <NA>
## 4458 <NA> <NA> <NA> <NA> <NA>
## 4459 <NA> <NA> <NA> <NA> <NA>
## 4460 <NA> <NA> <NA> <NA> <NA>
## 4461 <NA> <NA> <NA> <NA> <NA>
## 4462 <NA> <NA> <NA> <NA> <NA>
## 4463 <NA> <NA> <NA> <NA> <NA>
## 4464 <NA> <NA> <NA> <NA> <NA>
## 4465 <NA> <NA> <NA> <NA> <NA>
## 4466 <NA> <NA> <NA> <NA> <NA>
## 4467 <NA> <NA> <NA> <NA> <NA>
## 4468 <NA> <NA> <NA> <NA> <NA>
## 4469 <NA> <NA> <NA> <NA> <NA>
## 4470 <NA> <NA> <NA> <NA> <NA>
## 4471 <NA> <NA> <NA> <NA> <NA>
## 4472 <NA> <NA> <NA> <NA> <NA>
## 4473 <NA> <NA> <NA> <NA> <NA>
## 4474 <NA> <NA> <NA> <NA> <NA>
## 4475 <NA> <NA> <NA> <NA> <NA>
## 4476 <NA> <NA> <NA> <NA> <NA>
## 4477 <NA> <NA> <NA> <NA> <NA>
## 4478 <NA> <NA> <NA> <NA> <NA>
## 4479 <NA> <NA> <NA> <NA> <NA>
## 4480 <NA> <NA> <NA> <NA> <NA>
## 4481 <NA> <NA> <NA> <NA> <NA>
## 4482 <NA> <NA> <NA> <NA> <NA>
## 4483 <NA> <NA> <NA> <NA> <NA>
## 4484 <NA> <NA> <NA> <NA> <NA>
## 4485 <NA> <NA> <NA> <NA> <NA>
## 4486 <NA> <NA> <NA> <NA> <NA>
## 4487 <NA> <NA> <NA> <NA> <NA>
## 4488 <NA> <NA> <NA> <NA> <NA>
## 4489 <NA> <NA> <NA> <NA> <NA>
## 4490 <NA> <NA> <NA> <NA> <NA>
## 4491 <NA> <NA> <NA> <NA> <NA>
## 4492 <NA> <NA> <NA> <NA> <NA>
## 4493 <NA> <NA> <NA> <NA> <NA>
## 4494 <NA> <NA> <NA> <NA> <NA>
## 4495 <NA> <NA> <NA> <NA> <NA>
## 4496 <NA> <NA> <NA> <NA> <NA>
## 4497 <NA> <NA> <NA> <NA> <NA>
## 4498 <NA> <NA> <NA> <NA> <NA>
## 4499 <NA> <NA> <NA> <NA> <NA>
## 4500 <NA> <NA> <NA> <NA> <NA>
## 4501 <NA> <NA> <NA> <NA> <NA>
## 4502 <NA> <NA> <NA> <NA> <NA>
## 4503 <NA> <NA> <NA> <NA> <NA>
## 4504 <NA> <NA> <NA> <NA> <NA>
## 4505 <NA> <NA> <NA> <NA> <NA>
## 4506 <NA> <NA> <NA> <NA> <NA>
## 4507 <NA> <NA> <NA> <NA> <NA>
## 4508 <NA> <NA> <NA> <NA> <NA>
## 4509 <NA> <NA> <NA> <NA> <NA>
## 4510 <NA> <NA> <NA> <NA> <NA>
## 4511 <NA> <NA> <NA> <NA> <NA>
## 4512 <NA> <NA> <NA> <NA> <NA>
## 4513 <NA> <NA> <NA> <NA> <NA>
## 4514 <NA> <NA> <NA> <NA> <NA>
## 4515 <NA> <NA> <NA> <NA> <NA>
## 4516 <NA> <NA> <NA> <NA> <NA>
## 4517 <NA> <NA> <NA> <NA> <NA>
## 4518 <NA> <NA> <NA> <NA> <NA>
## 4519 <NA> <NA> <NA> <NA> <NA>
## 4520 <NA> <NA> <NA> <NA> <NA>
## 4521 <NA> <NA> <NA> <NA> <NA>
## 4522 <NA> <NA> <NA> <NA> <NA>
## 4523 <NA> <NA> <NA> <NA> <NA>
## 4524 <NA> <NA> <NA> <NA> <NA>
## 4525 <NA> <NA> <NA> <NA> <NA>
## 4526 <NA> <NA> <NA> <NA> <NA>
## 4527 <NA> <NA> <NA> <NA> <NA>
## 4528 <NA> <NA> <NA> <NA> <NA>
## 4529 <NA> <NA> <NA> <NA> <NA>
## 4530 <NA> <NA> <NA> <NA> <NA>
## 4531 <NA> <NA> <NA> <NA> <NA>
## 4532 <NA> <NA> <NA> <NA> <NA>
## 4533 <NA> <NA> <NA> <NA> <NA>
## 4534 <NA> <NA> <NA> <NA> <NA>
## 4535 <NA> <NA> <NA> <NA> <NA>
## 4536 <NA> <NA> <NA> <NA> <NA>
## 4537 <NA> <NA> <NA> <NA> <NA>
## 4538 <NA> <NA> <NA> <NA> <NA>
## 4539 <NA> <NA> <NA> <NA> <NA>
## 4540 <NA> <NA> <NA> <NA> <NA>
## 4541 <NA> <NA> <NA> <NA> <NA>
## 4542 <NA> <NA> <NA> <NA> <NA>
## 4543 <NA> <NA> <NA> <NA> <NA>
## 4544 <NA> <NA> <NA> <NA> <NA>
## 4545 <NA> <NA> <NA> <NA> <NA>
## 4546 <NA> <NA> <NA> <NA> <NA>
## 4547 <NA> <NA> <NA> <NA> <NA>
## 4548 <NA> <NA> <NA> <NA> <NA>
## 4549 <NA> <NA> <NA> <NA> <NA>
## 4550 <NA> <NA> <NA> <NA> <NA>
## 4551 <NA> <NA> <NA> <NA> <NA>
## 4552 <NA> <NA> <NA> <NA> <NA>
## 4553 <NA> <NA> <NA> <NA> <NA>
## 4554 <NA> <NA> <NA> <NA> <NA>
## 4555 <NA> <NA> <NA> <NA> <NA>
## 4556 <NA> <NA> <NA> <NA> <NA>
## 4557 <NA> <NA> <NA> <NA> <NA>
## 4558 <NA> <NA> <NA> <NA> <NA>
## 4559 <NA> <NA> <NA> <NA> <NA>
## 4560 <NA> <NA> <NA> <NA> <NA>
## 4561 <NA> <NA> <NA> <NA> <NA>
## 4562 <NA> <NA> <NA> <NA> <NA>
## 4563 <NA> <NA> <NA> <NA> <NA>
## 4564 <NA> <NA> <NA> <NA> <NA>
## 4565 <NA> <NA> <NA> <NA> <NA>
## 4566 <NA> <NA> <NA> <NA> <NA>
## 4567 <NA> <NA> <NA> <NA> <NA>
## 4568 <NA> <NA> <NA> <NA> <NA>
## 4569 <NA> <NA> <NA> <NA> <NA>
## 4570 <NA> <NA> <NA> <NA> <NA>
## 4571 <NA> <NA> <NA> <NA> <NA>
## 4572 <NA> <NA> <NA> <NA> <NA>
## 4573 <NA> <NA> <NA> <NA> <NA>
## 4574 <NA> <NA> <NA> <NA> <NA>
## 4575 <NA> <NA> <NA> <NA> <NA>
## 4576 <NA> <NA> <NA> <NA> <NA>
## 4577 <NA> <NA> <NA> <NA> <NA>
## 4578 <NA> <NA> <NA> <NA> <NA>
## 4579 <NA> <NA> <NA> <NA> <NA>
## 4580 <NA> <NA> <NA> <NA> <NA>
## 4581 <NA> <NA> <NA> <NA> <NA>
## 4582 <NA> <NA> <NA> <NA> <NA>
## 4583 <NA> <NA> <NA> <NA> <NA>
## 4584 <NA> <NA> <NA> <NA> <NA>
## 4585 <NA> <NA> <NA> <NA> <NA>
## 4586 <NA> <NA> <NA> <NA> <NA>
## 4587 <NA> <NA> <NA> <NA> <NA>
## 4588 <NA> <NA> <NA> <NA> <NA>
## 4589 <NA> <NA> <NA> <NA> <NA>
## 4590 <NA> <NA> <NA> <NA> <NA>
## 4591 <NA> <NA> <NA> <NA> <NA>
## 4592 <NA> <NA> <NA> <NA> <NA>
## 4593 <NA> <NA> <NA> <NA> <NA>
## 4594 <NA> <NA> <NA> <NA> <NA>
## 4595 <NA> <NA> <NA> <NA> <NA>
## 4596 <NA> <NA> <NA> <NA> <NA>
## 4597 <NA> <NA> <NA> <NA> <NA>
## 4598 <NA> <NA> <NA> <NA> <NA>
## 4599 <NA> <NA> <NA> <NA> <NA>
## 4600 <NA> <NA> <NA> <NA> <NA>
## 4601 <NA> <NA> <NA> <NA> <NA>
## 4602 <NA> <NA> <NA> <NA> <NA>
## 4603 <NA> <NA> <NA> <NA> <NA>
## 4604 <NA> <NA> <NA> <NA> <NA>
## 4605 <NA> <NA> <NA> <NA> <NA>
## 4606 <NA> <NA> <NA> <NA> <NA>
## 4607 <NA> <NA> <NA> <NA> <NA>
## 4608 <NA> <NA> <NA> <NA> <NA>
## 4609 <NA> <NA> <NA> <NA> <NA>
## 4610 <NA> <NA> <NA> <NA> <NA>
## 4611 <NA> <NA> <NA> <NA> <NA>
## 4612 <NA> <NA> <NA> <NA> <NA>
## 4613 <NA> <NA> <NA> <NA> <NA>
## 4614 <NA> <NA> <NA> <NA> <NA>
## 4615 <NA> <NA> <NA> <NA> <NA>
## 4616 <NA> <NA> <NA> <NA> <NA>
## 4617 <NA> <NA> <NA> <NA> <NA>
## 4618 <NA> <NA> <NA> <NA> <NA>
## 4619 <NA> <NA> <NA> <NA> <NA>
## 4620 <NA> <NA> <NA> <NA> <NA>
## 4621 <NA> <NA> <NA> <NA> <NA>
## 4622 <NA> <NA> <NA> <NA> <NA>
## 4623 <NA> <NA> <NA> <NA> <NA>
## 4624 <NA> <NA> <NA> <NA> <NA>
## 4625 <NA> <NA> <NA> <NA> <NA>
## 4626 <NA> <NA> <NA> <NA> <NA>
## 4627 <NA> <NA> <NA> <NA> <NA>
## 4628 <NA> <NA> <NA> <NA> <NA>
## 4629 <NA> <NA> <NA> <NA> <NA>
## 4630 <NA> <NA> <NA> <NA> <NA>
## 4631 <NA> <NA> <NA> <NA> <NA>
## 4632 <NA> <NA> <NA> <NA> <NA>
## 4633 <NA> <NA> <NA> <NA> <NA>
## 4634 <NA> <NA> <NA> <NA> <NA>
## 4635 <NA> <NA> <NA> <NA> <NA>
## 4636 <NA> <NA> <NA> <NA> <NA>
## 4637 <NA> <NA> <NA> <NA> <NA>
## 4638 <NA> <NA> <NA> <NA> <NA>
## 4639 <NA> <NA> <NA> <NA> <NA>
## 4640 <NA> <NA> <NA> <NA> <NA>
## 4641 <NA> <NA> <NA> <NA> <NA>
## 4642 <NA> <NA> <NA> <NA> <NA>
## 4643 <NA> <NA> <NA> <NA> <NA>
## 4644 <NA> <NA> <NA> <NA> <NA>
## 4645 <NA> <NA> <NA> <NA> <NA>
## 4646 <NA> <NA> <NA> <NA> <NA>
## 4647 <NA> <NA> <NA> <NA> <NA>
## 4648 <NA> <NA> <NA> <NA> <NA>
## 4649 <NA> <NA> <NA> <NA> <NA>
## 4650 <NA> <NA> <NA> <NA> <NA>
## 4651 <NA> <NA> <NA> <NA> <NA>
## 4652 <NA> <NA> <NA> <NA> <NA>
## 4653 <NA> <NA> <NA> <NA> <NA>
## 4654 <NA> <NA> <NA> <NA> <NA>
## 4655 <NA> <NA> <NA> <NA> <NA>
## 4656 <NA> <NA> <NA> <NA> <NA>
## 4657 <NA> <NA> <NA> <NA> <NA>
## 4658 <NA> <NA> <NA> <NA> <NA>
## 4659 <NA> <NA> <NA> <NA> <NA>
## 4660 <NA> <NA> <NA> <NA> <NA>
## 4661 <NA> <NA> <NA> <NA> <NA>
## 4662 <NA> <NA> <NA> <NA> <NA>
## 4663 <NA> <NA> <NA> <NA> <NA>
## 4664 <NA> <NA> <NA> <NA> <NA>
## 4665 <NA> <NA> <NA> <NA> <NA>
## 4666 <NA> <NA> <NA> <NA> <NA>
## 4667 <NA> <NA> <NA> <NA> <NA>
## 4668 <NA> <NA> <NA> <NA> <NA>
## 4669 <NA> <NA> <NA> <NA> <NA>
## 4670 <NA> <NA> <NA> <NA> <NA>
## 4671 <NA> <NA> <NA> <NA> <NA>
## 4672 <NA> <NA> <NA> <NA> <NA>
## 4673 <NA> <NA> <NA> <NA> <NA>
## 4674 <NA> <NA> <NA> <NA> <NA>
## 4675 <NA> <NA> <NA> <NA> <NA>
## 4676 <NA> <NA> <NA> <NA> <NA>
## 4677 <NA> <NA> <NA> <NA> <NA>
## 4678 <NA> <NA> <NA> <NA> <NA>
## 4679 <NA> <NA> <NA> <NA> <NA>
## 4680 <NA> <NA> <NA> <NA> <NA>
## 4681 <NA> <NA> <NA> <NA> <NA>
## 4682 <NA> <NA> <NA> <NA> <NA>
## 4683 <NA> <NA> <NA> <NA> <NA>
## 4684 <NA> <NA> <NA> <NA> <NA>
## 4685 <NA> <NA> <NA> <NA> <NA>
## 4686 <NA> <NA> <NA> <NA> <NA>
## 4687 <NA> <NA> <NA> <NA> <NA>
## 4688 <NA> <NA> <NA> <NA> <NA>
## 4689 <NA> <NA> <NA> <NA> <NA>
## 4690 <NA> <NA> <NA> <NA> <NA>
## 4691 <NA> <NA> <NA> <NA> <NA>
## 4692 <NA> <NA> <NA> <NA> <NA>
## 4693 <NA> <NA> <NA> <NA> <NA>
## 4694 <NA> <NA> <NA> <NA> <NA>
## 4695 <NA> <NA> <NA> <NA> <NA>
## 4696 <NA> <NA> <NA> <NA> <NA>
## 4697 <NA> <NA> <NA> <NA> <NA>
## 4698 <NA> <NA> <NA> <NA> <NA>
## 4699 <NA> <NA> <NA> <NA> <NA>
## 4700 <NA> <NA> <NA> <NA> <NA>
## 4701 <NA> <NA> <NA> <NA> <NA>
## 4702 <NA> <NA> <NA> <NA> <NA>
## 4703 <NA> <NA> <NA> <NA> <NA>
## 4704 <NA> <NA> <NA> <NA> <NA>
## 4705 <NA> <NA> <NA> <NA> <NA>
## 4706 <NA> <NA> <NA> <NA> <NA>
## 4707 <NA> <NA> <NA> <NA> <NA>
## 4708 <NA> <NA> <NA> <NA> <NA>
## 4709 <NA> <NA> <NA> <NA> <NA>
## 4710 <NA> <NA> <NA> <NA> <NA>
## 4711 <NA> <NA> <NA> <NA> <NA>
## 4712 <NA> <NA> <NA> <NA> <NA>
## 4713 <NA> <NA> <NA> <NA> <NA>
## 4714 <NA> <NA> <NA> <NA> <NA>
## 4715 <NA> <NA> <NA> <NA> <NA>
## 4716 <NA> <NA> <NA> <NA> <NA>
## 4717 <NA> <NA> <NA> <NA> <NA>
## 4718 <NA> <NA> <NA> <NA> <NA>
## 4719 <NA> <NA> <NA> <NA> <NA>
## 4720 <NA> <NA> <NA> <NA> <NA>
## 4721 <NA> <NA> <NA> <NA> <NA>
## 4722 <NA> <NA> <NA> <NA> <NA>
## 4723 <NA> <NA> <NA> <NA> <NA>
## 4724 <NA> <NA> <NA> <NA> <NA>
## 4725 <NA> <NA> <NA> <NA> <NA>
## 4726 <NA> <NA> <NA> <NA> <NA>
## 4727 <NA> <NA> <NA> <NA> <NA>
## 4728 <NA> <NA> <NA> <NA> <NA>
## 4729 <NA> <NA> <NA> <NA> <NA>
## 4730 <NA> <NA> <NA> <NA> <NA>
## 4731 <NA> <NA> <NA> <NA> <NA>
## 4732 <NA> <NA> <NA> <NA> <NA>
## 4733 <NA> <NA> <NA> <NA> <NA>
## 4734 <NA> <NA> <NA> <NA> <NA>
## 4735 <NA> <NA> <NA> <NA> <NA>
## 4736 <NA> <NA> <NA> <NA> <NA>
## 4737 <NA> <NA> <NA> <NA> <NA>
## 4738 <NA> <NA> <NA> <NA> <NA>
## 4739 <NA> <NA> <NA> <NA> <NA>
## 4740 <NA> <NA> <NA> <NA> <NA>
## 4741 <NA> <NA> <NA> <NA> <NA>
## 4742 <NA> <NA> <NA> <NA> <NA>
## 4743 <NA> <NA> <NA> <NA> <NA>
## 4744 <NA> <NA> <NA> <NA> <NA>
## 4745 <NA> <NA> <NA> <NA> <NA>
## 4746 <NA> <NA> <NA> <NA> <NA>
## 4747 <NA> <NA> <NA> <NA> <NA>
## 4748 <NA> <NA> <NA> <NA> <NA>
## 4749 <NA> <NA> <NA> <NA> <NA>
## 4750 <NA> <NA> <NA> <NA> <NA>
## 4751 <NA> <NA> <NA> <NA> <NA>
## 4752 <NA> <NA> <NA> <NA> <NA>
## 4753 <NA> <NA> <NA> <NA> <NA>
## 4754 <NA> <NA> <NA> <NA> <NA>
## 4755 <NA> <NA> <NA> <NA> <NA>
## 4756 <NA> <NA> <NA> <NA> <NA>
## 4757 <NA> <NA> <NA> <NA> <NA>
## 4758 <NA> <NA> <NA> <NA> <NA>
## 4759 <NA> <NA> <NA> <NA> <NA>
## 4760 <NA> <NA> <NA> <NA> <NA>
## 4761 <NA> <NA> <NA> <NA> <NA>
## 4762 <NA> <NA> <NA> <NA> <NA>
## 4763 <NA> <NA> <NA> <NA> <NA>
## 4764 <NA> <NA> <NA> <NA> <NA>
## 4765 <NA> <NA> <NA> <NA> <NA>
## 4766 <NA> <NA> <NA> <NA> <NA>
## 4767 <NA> <NA> <NA> <NA> <NA>
## 4768 <NA> <NA> <NA> <NA> <NA>
## 4769 <NA> <NA> <NA> <NA> <NA>
## 4770 <NA> <NA> <NA> <NA> <NA>
## 4771 <NA> <NA> <NA> <NA> <NA>
## 4772 <NA> <NA> <NA> <NA> <NA>
## 4773 <NA> <NA> <NA> <NA> <NA>
## 4774 <NA> <NA> <NA> <NA> <NA>
## 4775 <NA> <NA> <NA> <NA> <NA>
## 4776 <NA> <NA> <NA> <NA> <NA>
## 4777 <NA> <NA> <NA> <NA> <NA>
## 4778 <NA> <NA> <NA> <NA> <NA>
## 4779 <NA> <NA> <NA> <NA> <NA>
## 4780 <NA> <NA> <NA> <NA> <NA>
## 4781 <NA> <NA> <NA> <NA> <NA>
## 4782 <NA> <NA> <NA> <NA> <NA>
## 4783 <NA> <NA> <NA> <NA> <NA>
## 4784 <NA> <NA> <NA> <NA> <NA>
## 4785 <NA> <NA> <NA> <NA> <NA>
## 4786 <NA> <NA> <NA> <NA> <NA>
## 4787 <NA> <NA> <NA> <NA> <NA>
## 4788 <NA> <NA> <NA> <NA> <NA>
## 4789 <NA> <NA> <NA> <NA> <NA>
## 4790 <NA> <NA> <NA> <NA> <NA>
## 4791 <NA> <NA> <NA> <NA> <NA>
## 4792 <NA> <NA> <NA> <NA> <NA>
## 4793 <NA> <NA> <NA> <NA> <NA>
## 4794 <NA> <NA> <NA> <NA> <NA>
## 4795 <NA> <NA> <NA> <NA> <NA>
## 4796 <NA> <NA> <NA> <NA> <NA>
## 4797 <NA> <NA> <NA> <NA> <NA>
## 4798 <NA> <NA> <NA> <NA> <NA>
## 4799 <NA> <NA> <NA> <NA> <NA>
## 4800 <NA> <NA> <NA> <NA> <NA>
## 4801 <NA> <NA> <NA> <NA> <NA>
## 4802 <NA> <NA> <NA> <NA> <NA>
## 4803 <NA> <NA> <NA> <NA> <NA>
## 4804 <NA> <NA> <NA> <NA> <NA>
## 4805 <NA> <NA> <NA> <NA> <NA>
## 4806 <NA> <NA> <NA> <NA> <NA>
## 4807 <NA> <NA> <NA> <NA> <NA>
## 4808 <NA> <NA> <NA> <NA> <NA>
## 4809 <NA> <NA> <NA> <NA> <NA>
## 4810 <NA> <NA> <NA> <NA> <NA>
## 4811 <NA> <NA> <NA> <NA> <NA>
## 4812 <NA> <NA> <NA> <NA> <NA>
## 4813 <NA> <NA> <NA> <NA> <NA>
## 4814 <NA> <NA> <NA> <NA> <NA>
## 4815 <NA> <NA> <NA> <NA> <NA>
## 4816 <NA> <NA> <NA> <NA> <NA>
## 4817 <NA> <NA> <NA> <NA> <NA>
## 4818 <NA> <NA> <NA> <NA> <NA>
## 4819 <NA> <NA> <NA> <NA> <NA>
## 4820 <NA> <NA> <NA> <NA> <NA>
## 4821 <NA> <NA> <NA> <NA> <NA>
## 4822 <NA> <NA> <NA> <NA> <NA>
## 4823 <NA> <NA> <NA> <NA> <NA>
## 4824 <NA> <NA> <NA> <NA> <NA>
## 4825 <NA> <NA> <NA> <NA> <NA>
## 4826 <NA> <NA> <NA> <NA> <NA>
## 4827 <NA> <NA> <NA> <NA> <NA>
## 4828 <NA> <NA> <NA> <NA> <NA>
## 4829 <NA> <NA> <NA> <NA> <NA>
## 4830 <NA> <NA> <NA> <NA> <NA>
## 4831 <NA> <NA> <NA> <NA> <NA>
## 4832 <NA> <NA> <NA> <NA> <NA>
## 4833 <NA> <NA> <NA> <NA> <NA>
## 4834 <NA> <NA> <NA> <NA> <NA>
## 4835 <NA> <NA> <NA> <NA> <NA>
## 4836 <NA> <NA> <NA> <NA> <NA>
## 4837 <NA> <NA> <NA> <NA> <NA>
## 4838 <NA> <NA> <NA> <NA> <NA>
## 4839 <NA> <NA> <NA> <NA> <NA>
## 4840 <NA> <NA> <NA> <NA> <NA>
## 4841 <NA> <NA> <NA> <NA> <NA>
## 4842 <NA> <NA> <NA> <NA> <NA>
## 4843 <NA> <NA> <NA> <NA> <NA>
## 4844 <NA> <NA> <NA> <NA> <NA>
## 4845 <NA> <NA> <NA> <NA> <NA>
## 4846 <NA> <NA> <NA> <NA> <NA>
## 4847 <NA> <NA> <NA> <NA> <NA>
## 4848 <NA> <NA> <NA> <NA> <NA>
## 4849 <NA> <NA> <NA> <NA> <NA>
## 4850 <NA> <NA> <NA> <NA> <NA>
## 4851 <NA> <NA> <NA> <NA> <NA>
## 4852 <NA> <NA> <NA> <NA> <NA>
## 4853 <NA> <NA> <NA> <NA> <NA>
## 4854 <NA> <NA> <NA> <NA> <NA>
## 4855 <NA> <NA> <NA> <NA> <NA>
## 4856 <NA> <NA> <NA> <NA> <NA>
## 4857 <NA> <NA> <NA> <NA> <NA>
## 4858 <NA> <NA> <NA> <NA> <NA>
## 4859 <NA> <NA> <NA> <NA> <NA>
## 4860 <NA> <NA> <NA> <NA> <NA>
## 4861 <NA> <NA> <NA> <NA> <NA>
## 4862 <NA> <NA> <NA> <NA> <NA>
## 4863 <NA> <NA> <NA> <NA> <NA>
## 4864 <NA> <NA> <NA> <NA> <NA>
## 4865 <NA> <NA> <NA> <NA> <NA>
## 4866 <NA> <NA> <NA> <NA> <NA>
## 4867 <NA> <NA> <NA> <NA> <NA>
## 4868 <NA> <NA> <NA> <NA> <NA>
## 4869 <NA> <NA> <NA> <NA> <NA>
## 4870 <NA> <NA> <NA> <NA> <NA>
## 4871 <NA> <NA> <NA> <NA> <NA>
## 4872 <NA> <NA> <NA> <NA> <NA>
## 4873 <NA> <NA> <NA> <NA> <NA>
## 4874 <NA> <NA> <NA> <NA> <NA>
## 4875 <NA> <NA> <NA> <NA> <NA>
## 4876 <NA> <NA> <NA> <NA> <NA>
## 4877 <NA> <NA> <NA> <NA> <NA>
## 4878 <NA> <NA> <NA> <NA> <NA>
## 4879 <NA> <NA> <NA> <NA> <NA>
## 4880 <NA> <NA> <NA> <NA> <NA>
## 4881 <NA> <NA> <NA> <NA> <NA>
## 4882 <NA> <NA> <NA> <NA> <NA>
## 4883 <NA> <NA> <NA> <NA> <NA>
## 4884 <NA> <NA> <NA> <NA> <NA>
## 4885 <NA> <NA> <NA> <NA> <NA>
## 4886 <NA> <NA> <NA> <NA> <NA>
## 4887 <NA> <NA> <NA> <NA> <NA>
## 4888 <NA> <NA> <NA> <NA> <NA>
## 4889 <NA> <NA> <NA> <NA> <NA>
## 4890 <NA> <NA> <NA> <NA> <NA>
## 4891 <NA> <NA> <NA> <NA> <NA>
## 4892 <NA> <NA> <NA> <NA> <NA>
## 4893 <NA> <NA> <NA> <NA> <NA>
## 4894 <NA> <NA> <NA> <NA> <NA>
## 4895 <NA> <NA> <NA> <NA> <NA>
## 4896 <NA> <NA> <NA> <NA> <NA>
## 4897 <NA> <NA> <NA> <NA> <NA>
## 4898 <NA> <NA> <NA> <NA> <NA>
## 4899 <NA> <NA> <NA> <NA> <NA>
## 4900 <NA> <NA> <NA> <NA> <NA>
## 4901 <NA> <NA> <NA> <NA> <NA>
## 4902 <NA> <NA> <NA> <NA> <NA>
## 4903 <NA> <NA> <NA> <NA> <NA>
## 4904 <NA> <NA> <NA> <NA> <NA>
## 4905 <NA> <NA> <NA> <NA> <NA>
## 4906 <NA> <NA> <NA> <NA> <NA>
## 4907 <NA> <NA> <NA> <NA> <NA>
## 4908 <NA> <NA> <NA> <NA> <NA>
## 4909 <NA> <NA> <NA> <NA> <NA>
## 4910 <NA> <NA> <NA> <NA> <NA>
## 4911 <NA> <NA> <NA> <NA> <NA>
## 4912 <NA> <NA> <NA> <NA> <NA>
## 4913 <NA> <NA> <NA> <NA> <NA>
## 4914 <NA> <NA> <NA> <NA> <NA>
## 4915 <NA> <NA> <NA> <NA> <NA>
## 4916 <NA> <NA> <NA> <NA> <NA>
## 4917 <NA> <NA> <NA> <NA> <NA>
## 4918 <NA> <NA> <NA> <NA> <NA>
## 4919 <NA> <NA> <NA> <NA> <NA>
## 4920 <NA> <NA> <NA> <NA> <NA>
## 4921 <NA> <NA> <NA> <NA> <NA>
## 4922 <NA> <NA> <NA> <NA> <NA>
## 4923 <NA> <NA> <NA> <NA> <NA>
## 4924 <NA> <NA> <NA> <NA> <NA>
## 4925 <NA> <NA> <NA> <NA> <NA>
## 4926 <NA> <NA> <NA> <NA> <NA>
## 4927 <NA> <NA> <NA> <NA> <NA>
## 4928 <NA> <NA> <NA> <NA> <NA>
## 4929 <NA> <NA> <NA> <NA> <NA>
## 4930 <NA> <NA> <NA> <NA> <NA>
## 4931 <NA> <NA> <NA> <NA> <NA>
## 4932 <NA> <NA> <NA> <NA> <NA>
## 4933 <NA> <NA> <NA> <NA> <NA>
## 4934 <NA> <NA> <NA> <NA> <NA>
## 4935 <NA> <NA> <NA> <NA> <NA>
## 4936 <NA> <NA> <NA> <NA> <NA>
## 4937 <NA> <NA> <NA> <NA> <NA>
## 4938 <NA> <NA> <NA> <NA> <NA>
## 4939 <NA> <NA> <NA> <NA> <NA>
## 4940 <NA> <NA> <NA> <NA> <NA>
## 4941 <NA> <NA> <NA> <NA> <NA>
## 4942 <NA> <NA> <NA> <NA> <NA>
## 4943 <NA> <NA> <NA> <NA> <NA>
## 4944 <NA> <NA> <NA> <NA> <NA>
## 4945 <NA> <NA> <NA> <NA> <NA>
## 4946 <NA> <NA> <NA> <NA> <NA>
## 4947 <NA> <NA> <NA> <NA> <NA>
## 4948 <NA> <NA> <NA> <NA> <NA>
## 4949 <NA> <NA> <NA> <NA> <NA>
## 4950 <NA> <NA> <NA> <NA> <NA>
## 4951 <NA> <NA> <NA> <NA> <NA>
## 4952 <NA> <NA> <NA> <NA> <NA>
## 4953 <NA> <NA> <NA> <NA> <NA>
## 4954 <NA> <NA> <NA> <NA> <NA>
## 4955 <NA> <NA> <NA> <NA> <NA>
## 4956 <NA> <NA> <NA> <NA> <NA>
## 4957 <NA> <NA> <NA> <NA> <NA>
## 4958 <NA> <NA> <NA> <NA> <NA>
## 4959 <NA> <NA> <NA> <NA> <NA>
## 4960 <NA> <NA> <NA> <NA> <NA>
## 4961 <NA> <NA> <NA> <NA> <NA>
## 4962 <NA> <NA> <NA> <NA> <NA>
## 4963 <NA> <NA> <NA> <NA> <NA>
## 4964 <NA> <NA> <NA> <NA> <NA>
## 4965 <NA> <NA> <NA> <NA> <NA>
## 4966 <NA> <NA> <NA> <NA> <NA>
## 4967 <NA> <NA> <NA> <NA> <NA>
## 4968 <NA> <NA> <NA> <NA> <NA>
## 4969 <NA> <NA> <NA> <NA> <NA>
## 4970 <NA> <NA> <NA> <NA> <NA>
## 4971 <NA> <NA> <NA> <NA> <NA>
## 4972 <NA> <NA> <NA> <NA> <NA>
## 4973 <NA> <NA> <NA> <NA> <NA>
## 4974 <NA> <NA> <NA> <NA> <NA>
## 4975 <NA> <NA> <NA> <NA> <NA>
## 4976 <NA> <NA> <NA> <NA> <NA>
## 4977 <NA> <NA> <NA> <NA> <NA>
## 4978 <NA> <NA> <NA> <NA> <NA>
## 4979 <NA> <NA> <NA> <NA> <NA>
## 4980 <NA> <NA> <NA> <NA> <NA>
## 4981 <NA> <NA> <NA> <NA> <NA>
## 4982 <NA> <NA> <NA> <NA> <NA>
## 4983 <NA> <NA> <NA> <NA> <NA>
## 4984 <NA> <NA> <NA> <NA> <NA>
## 4985 <NA> <NA> <NA> <NA> <NA>
## 4986 <NA> <NA> <NA> <NA> <NA>
## 4987 <NA> <NA> <NA> <NA> <NA>
## 4988 <NA> <NA> <NA> <NA> <NA>
## 4989 <NA> <NA> <NA> <NA> <NA>
## 4990 <NA> <NA> <NA> <NA> <NA>
## 4991 <NA> <NA> <NA> <NA> <NA>
## 4992 <NA> <NA> <NA> <NA> <NA>
## 4993 <NA> <NA> <NA> <NA> <NA>
## 4994 <NA> <NA> <NA> <NA> <NA>
## 4995 <NA> <NA> <NA> <NA> <NA>
## 4996 <NA> <NA> <NA> <NA> <NA>
## 4997 <NA> <NA> <NA> <NA> <NA>
## 4998 <NA> <NA> <NA> <NA> <NA>
## 4999 <NA> <NA> <NA> <NA> <NA>
## hinctnta
## 1 M - 4th decile
## 2 R - 2nd decile
## 3 R - 2nd decile
## 4 S - 6th decile
## 5 J - 1st decile
## 6 F - 5th decile
## 7 H - 10th decile
## 8 R - 2nd decile
## 9 S - 6th decile
## 10 K - 7th decile
## 11 K - 7th decile
## 12 <NA>
## 13 <NA>
## 14 M - 4th decile
## 15 P - 8th decile
## 16 <NA>
## 17 C - 3rd decile
## 18 S - 6th decile
## 19 H - 10th decile
## 20 J - 1st decile
## 21 C - 3rd decile
## 22 H - 10th decile
## 23 C - 3rd decile
## 24 K - 7th decile
## 25 M - 4th decile
## 26 P - 8th decile
## 27 K - 7th decile
## 28 S - 6th decile
## 29 C - 3rd decile
## 30 R - 2nd decile
## 31 M - 4th decile
## 32 F - 5th decile
## 33 R - 2nd decile
## 34 R - 2nd decile
## 35 P - 8th decile
## 36 J - 1st decile
## 37 F - 5th decile
## 38 F - 5th decile
## 39 H - 10th decile
## 40 F - 5th decile
## 41 M - 4th decile
## 42 H - 10th decile
## 43 M - 4th decile
## 44 D - 9th decile
## 45 S - 6th decile
## 46 F - 5th decile
## 47 K - 7th decile
## 48 D - 9th decile
## 49 P - 8th decile
## 50 M - 4th decile
## 51 P - 8th decile
## 52 <NA>
## 53 M - 4th decile
## 54 M - 4th decile
## 55 K - 7th decile
## 56 J - 1st decile
## 57 S - 6th decile
## 58 <NA>
## 59 F - 5th decile
## 60 K - 7th decile
## 61 S - 6th decile
## 62 <NA>
## 63 R - 2nd decile
## 64 C - 3rd decile
## 65 D - 9th decile
## 66 H - 10th decile
## 67 H - 10th decile
## 68 S - 6th decile
## 69 <NA>
## 70 D - 9th decile
## 71 C - 3rd decile
## 72 H - 10th decile
## 73 <NA>
## 74 F - 5th decile
## 75 H - 10th decile
## 76 P - 8th decile
## 77 D - 9th decile
## 78 M - 4th decile
## 79 <NA>
## 80 P - 8th decile
## 81 F - 5th decile
## 82 C - 3rd decile
## 83 C - 3rd decile
## 84 H - 10th decile
## 85 C - 3rd decile
## 86 R - 2nd decile
## 87 <NA>
## 88 D - 9th decile
## 89 <NA>
## 90 M - 4th decile
## 91 <NA>
## 92 K - 7th decile
## 93 D - 9th decile
## 94 C - 3rd decile
## 95 <NA>
## 96 <NA>
## 97 J - 1st decile
## 98 <NA>
## 99 R - 2nd decile
## 100 C - 3rd decile
## 101 C - 3rd decile
## 102 R - 2nd decile
## 103 D - 9th decile
## 104 P - 8th decile
## 105 P - 8th decile
## 106 F - 5th decile
## 107 M - 4th decile
## 108 D - 9th decile
## 109 <NA>
## 110 M - 4th decile
## 111 C - 3rd decile
## 112 D - 9th decile
## 113 R - 2nd decile
## 114 M - 4th decile
## 115 <NA>
## 116 R - 2nd decile
## 117 K - 7th decile
## 118 K - 7th decile
## 119 H - 10th decile
## 120 R - 2nd decile
## 121 H - 10th decile
## 122 R - 2nd decile
## 123 R - 2nd decile
## 124 J - 1st decile
## 125 J - 1st decile
## 126 C - 3rd decile
## 127 <NA>
## 128 H - 10th decile
## 129 H - 10th decile
## 130 R - 2nd decile
## 131 J - 1st decile
## 132 J - 1st decile
## 133 C - 3rd decile
## 134 R - 2nd decile
## 135 S - 6th decile
## 136 <NA>
## 137 <NA>
## 138 M - 4th decile
## 139 F - 5th decile
## 140 J - 1st decile
## 141 J - 1st decile
## 142 D - 9th decile
## 143 R - 2nd decile
## 144 S - 6th decile
## 145 C - 3rd decile
## 146 J - 1st decile
## 147 H - 10th decile
## 148 C - 3rd decile
## 149 S - 6th decile
## 150 S - 6th decile
## 151 D - 9th decile
## 152 J - 1st decile
## 153 J - 1st decile
## 154 J - 1st decile
## 155 C - 3rd decile
## 156 R - 2nd decile
## 157 J - 1st decile
## 158 R - 2nd decile
## 159 J - 1st decile
## 160 <NA>
## 161 H - 10th decile
## 162 C - 3rd decile
## 163 S - 6th decile
## 164 R - 2nd decile
## 165 C - 3rd decile
## 166 R - 2nd decile
## 167 J - 1st decile
## 168 R - 2nd decile
## 169 <NA>
## 170 K - 7th decile
## 171 H - 10th decile
## 172 <NA>
## 173 J - 1st decile
## 174 K - 7th decile
## 175 R - 2nd decile
## 176 D - 9th decile
## 177 F - 5th decile
## 178 J - 1st decile
## 179 J - 1st decile
## 180 R - 2nd decile
## 181 J - 1st decile
## 182 J - 1st decile
## 183 J - 1st decile
## 184 D - 9th decile
## 185 R - 2nd decile
## 186 P - 8th decile
## 187 <NA>
## 188 R - 2nd decile
## 189 M - 4th decile
## 190 <NA>
## 191 R - 2nd decile
## 192 S - 6th decile
## 193 S - 6th decile
## 194 C - 3rd decile
## 195 H - 10th decile
## 196 D - 9th decile
## 197 J - 1st decile
## 198 H - 10th decile
## 199 R - 2nd decile
## 200 H - 10th decile
## 201 P - 8th decile
## 202 R - 2nd decile
## 203 <NA>
## 204 R - 2nd decile
## 205 P - 8th decile
## 206 C - 3rd decile
## 207 J - 1st decile
## 208 <NA>
## 209 D - 9th decile
## 210 <NA>
## 211 R - 2nd decile
## 212 H - 10th decile
## 213 C - 3rd decile
## 214 <NA>
## 215 D - 9th decile
## 216 D - 9th decile
## 217 <NA>
## 218 D - 9th decile
## 219 M - 4th decile
## 220 R - 2nd decile
## 221 <NA>
## 222 F - 5th decile
## 223 K - 7th decile
## 224 J - 1st decile
## 225 H - 10th decile
## 226 K - 7th decile
## 227 J - 1st decile
## 228 P - 8th decile
## 229 F - 5th decile
## 230 M - 4th decile
## 231 J - 1st decile
## 232 C - 3rd decile
## 233 J - 1st decile
## 234 R - 2nd decile
## 235 F - 5th decile
## 236 F - 5th decile
## 237 P - 8th decile
## 238 R - 2nd decile
## 239 J - 1st decile
## 240 R - 2nd decile
## 241 J - 1st decile
## 242 C - 3rd decile
## 243 P - 8th decile
## 244 M - 4th decile
## 245 H - 10th decile
## 246 <NA>
## 247 S - 6th decile
## 248 C - 3rd decile
## 249 M - 4th decile
## 250 K - 7th decile
## 251 K - 7th decile
## 252 F - 5th decile
## 253 <NA>
## 254 F - 5th decile
## 255 C - 3rd decile
## 256 S - 6th decile
## 257 F - 5th decile
## 258 P - 8th decile
## 259 R - 2nd decile
## 260 H - 10th decile
## 261 J - 1st decile
## 262 J - 1st decile
## 263 H - 10th decile
## 264 R - 2nd decile
## 265 P - 8th decile
## 266 J - 1st decile
## 267 D - 9th decile
## 268 R - 2nd decile
## 269 R - 2nd decile
## 270 <NA>
## 271 H - 10th decile
## 272 K - 7th decile
## 273 R - 2nd decile
## 274 S - 6th decile
## 275 K - 7th decile
## 276 J - 1st decile
## 277 C - 3rd decile
## 278 M - 4th decile
## 279 F - 5th decile
## 280 M - 4th decile
## 281 R - 2nd decile
## 282 F - 5th decile
## 283 R - 2nd decile
## 284 <NA>
## 285 S - 6th decile
## 286 F - 5th decile
## 287 H - 10th decile
## 288 H - 10th decile
## 289 R - 2nd decile
## 290 H - 10th decile
## 291 F - 5th decile
## 292 F - 5th decile
## 293 F - 5th decile
## 294 <NA>
## 295 C - 3rd decile
## 296 C - 3rd decile
## 297 D - 9th decile
## 298 J - 1st decile
## 299 M - 4th decile
## 300 S - 6th decile
## 301 F - 5th decile
## 302 C - 3rd decile
## 303 <NA>
## 304 <NA>
## 305 M - 4th decile
## 306 J - 1st decile
## 307 S - 6th decile
## 308 M - 4th decile
## 309 <NA>
## 310 J - 1st decile
## 311 J - 1st decile
## 312 F - 5th decile
## 313 D - 9th decile
## 314 J - 1st decile
## 315 J - 1st decile
## 316 M - 4th decile
## 317 H - 10th decile
## 318 S - 6th decile
## 319 M - 4th decile
## 320 F - 5th decile
## 321 C - 3rd decile
## 322 F - 5th decile
## 323 C - 3rd decile
## 324 S - 6th decile
## 325 P - 8th decile
## 326 F - 5th decile
## 327 C - 3rd decile
## 328 R - 2nd decile
## 329 J - 1st decile
## 330 S - 6th decile
## 331 <NA>
## 332 <NA>
## 333 <NA>
## 334 C - 3rd decile
## 335 C - 3rd decile
## 336 K - 7th decile
## 337 R - 2nd decile
## 338 F - 5th decile
## 339 J - 1st decile
## 340 J - 1st decile
## 341 <NA>
## 342 K - 7th decile
## 343 C - 3rd decile
## 344 H - 10th decile
## 345 F - 5th decile
## 346 C - 3rd decile
## 347 J - 1st decile
## 348 D - 9th decile
## 349 J - 1st decile
## 350 J - 1st decile
## 351 R - 2nd decile
## 352 M - 4th decile
## 353 C - 3rd decile
## 354 C - 3rd decile
## 355 M - 4th decile
## 356 C - 3rd decile
## 357 M - 4th decile
## 358 R - 2nd decile
## 359 <NA>
## 360 M - 4th decile
## 361 F - 5th decile
## 362 R - 2nd decile
## 363 <NA>
## 364 S - 6th decile
## 365 R - 2nd decile
## 366 K - 7th decile
## 367 <NA>
## 368 C - 3rd decile
## 369 <NA>
## 370 P - 8th decile
## 371 M - 4th decile
## 372 S - 6th decile
## 373 S - 6th decile
## 374 <NA>
## 375 <NA>
## 376 C - 3rd decile
## 377 P - 8th decile
## 378 R - 2nd decile
## 379 D - 9th decile
## 380 R - 2nd decile
## 381 <NA>
## 382 K - 7th decile
## 383 S - 6th decile
## 384 R - 2nd decile
## 385 D - 9th decile
## 386 J - 1st decile
## 387 <NA>
## 388 D - 9th decile
## 389 P - 8th decile
## 390 <NA>
## 391 F - 5th decile
## 392 P - 8th decile
## 393 R - 2nd decile
## 394 K - 7th decile
## 395 K - 7th decile
## 396 S - 6th decile
## 397 <NA>
## 398 S - 6th decile
## 399 H - 10th decile
## 400 H - 10th decile
## 401 F - 5th decile
## 402 M - 4th decile
## 403 <NA>
## 404 D - 9th decile
## 405 H - 10th decile
## 406 F - 5th decile
## 407 J - 1st decile
## 408 R - 2nd decile
## 409 F - 5th decile
## 410 R - 2nd decile
## 411 R - 2nd decile
## 412 K - 7th decile
## 413 P - 8th decile
## 414 H - 10th decile
## 415 R - 2nd decile
## 416 M - 4th decile
## 417 D - 9th decile
## 418 <NA>
## 419 P - 8th decile
## 420 M - 4th decile
## 421 <NA>
## 422 <NA>
## 423 R - 2nd decile
## 424 <NA>
## 425 H - 10th decile
## 426 M - 4th decile
## 427 R - 2nd decile
## 428 S - 6th decile
## 429 R - 2nd decile
## 430 <NA>
## 431 R - 2nd decile
## 432 <NA>
## 433 J - 1st decile
## 434 S - 6th decile
## 435 R - 2nd decile
## 436 H - 10th decile
## 437 F - 5th decile
## 438 D - 9th decile
## 439 <NA>
## 440 S - 6th decile
## 441 R - 2nd decile
## 442 M - 4th decile
## 443 R - 2nd decile
## 444 M - 4th decile
## 445 <NA>
## 446 H - 10th decile
## 447 H - 10th decile
## 448 H - 10th decile
## 449 H - 10th decile
## 450 <NA>
## 451 P - 8th decile
## 452 <NA>
## 453 F - 5th decile
## 454 R - 2nd decile
## 455 M - 4th decile
## 456 C - 3rd decile
## 457 C - 3rd decile
## 458 K - 7th decile
## 459 H - 10th decile
## 460 K - 7th decile
## 461 R - 2nd decile
## 462 R - 2nd decile
## 463 R - 2nd decile
## 464 <NA>
## 465 J - 1st decile
## 466 <NA>
## 467 J - 1st decile
## 468 H - 10th decile
## 469 <NA>
## 470 R - 2nd decile
## 471 K - 7th decile
## 472 <NA>
## 473 R - 2nd decile
## 474 J - 1st decile
## 475 M - 4th decile
## 476 R - 2nd decile
## 477 D - 9th decile
## 478 D - 9th decile
## 479 <NA>
## 480 H - 10th decile
## 481 F - 5th decile
## 482 D - 9th decile
## 483 C - 3rd decile
## 484 K - 7th decile
## 485 <NA>
## 486 <NA>
## 487 <NA>
## 488 F - 5th decile
## 489 F - 5th decile
## 490 <NA>
## 491 P - 8th decile
## 492 F - 5th decile
## 493 S - 6th decile
## 494 R - 2nd decile
## 495 R - 2nd decile
## 496 C - 3rd decile
## 497 M - 4th decile
## 498 H - 10th decile
## 499 C - 3rd decile
## 500 R - 2nd decile
## 501 R - 2nd decile
## 502 S - 6th decile
## 503 M - 4th decile
## 504 R - 2nd decile
## 505 D - 9th decile
## 506 C - 3rd decile
## 507 S - 6th decile
## 508 C - 3rd decile
## 509 J - 1st decile
## 510 R - 2nd decile
## 511 J - 1st decile
## 512 J - 1st decile
## 513 F - 5th decile
## 514 <NA>
## 515 H - 10th decile
## 516 <NA>
## 517 J - 1st decile
## 518 F - 5th decile
## 519 K - 7th decile
## 520 C - 3rd decile
## 521 J - 1st decile
## 522 J - 1st decile
## 523 S - 6th decile
## 524 J - 1st decile
## 525 P - 8th decile
## 526 H - 10th decile
## 527 H - 10th decile
## 528 <NA>
## 529 K - 7th decile
## 530 S - 6th decile
## 531 H - 10th decile
## 532 S - 6th decile
## 533 F - 5th decile
## 534 S - 6th decile
## 535 J - 1st decile
## 536 F - 5th decile
## 537 <NA>
## 538 M - 4th decile
## 539 <NA>
## 540 C - 3rd decile
## 541 D - 9th decile
## 542 F - 5th decile
## 543 J - 1st decile
## 544 J - 1st decile
## 545 F - 5th decile
## 546 P - 8th decile
## 547 S - 6th decile
## 548 C - 3rd decile
## 549 C - 3rd decile
## 550 J - 1st decile
## 551 S - 6th decile
## 552 <NA>
## 553 K - 7th decile
## 554 P - 8th decile
## 555 P - 8th decile
## 556 J - 1st decile
## 557 P - 8th decile
## 558 C - 3rd decile
## 559 K - 7th decile
## 560 S - 6th decile
## 561 <NA>
## 562 H - 10th decile
## 563 H - 10th decile
## 564 K - 7th decile
## 565 P - 8th decile
## 566 D - 9th decile
## 567 C - 3rd decile
## 568 J - 1st decile
## 569 C - 3rd decile
## 570 C - 3rd decile
## 571 C - 3rd decile
## 572 S - 6th decile
## 573 <NA>
## 574 H - 10th decile
## 575 S - 6th decile
## 576 R - 2nd decile
## 577 J - 1st decile
## 578 <NA>
## 579 <NA>
## 580 J - 1st decile
## 581 <NA>
## 582 P - 8th decile
## 583 J - 1st decile
## 584 K - 7th decile
## 585 J - 1st decile
## 586 H - 10th decile
## 587 C - 3rd decile
## 588 J - 1st decile
## 589 P - 8th decile
## 590 P - 8th decile
## 591 J - 1st decile
## 592 P - 8th decile
## 593 K - 7th decile
## 594 <NA>
## 595 <NA>
## 596 J - 1st decile
## 597 <NA>
## 598 <NA>
## 599 H - 10th decile
## 600 D - 9th decile
## 601 <NA>
## 602 J - 1st decile
## 603 <NA>
## 604 J - 1st decile
## 605 R - 2nd decile
## 606 R - 2nd decile
## 607 R - 2nd decile
## 608 R - 2nd decile
## 609 M - 4th decile
## 610 R - 2nd decile
## 611 M - 4th decile
## 612 J - 1st decile
## 613 <NA>
## 614 K - 7th decile
## 615 J - 1st decile
## 616 R - 2nd decile
## 617 C - 3rd decile
## 618 K - 7th decile
## 619 <NA>
## 620 <NA>
## 621 K - 7th decile
## 622 J - 1st decile
## 623 H - 10th decile
## 624 M - 4th decile
## 625 C - 3rd decile
## 626 <NA>
## 627 F - 5th decile
## 628 S - 6th decile
## 629 D - 9th decile
## 630 K - 7th decile
## 631 <NA>
## 632 P - 8th decile
## 633 P - 8th decile
## 634 R - 2nd decile
## 635 F - 5th decile
## 636 H - 10th decile
## 637 P - 8th decile
## 638 C - 3rd decile
## 639 J - 1st decile
## 640 F - 5th decile
## 641 S - 6th decile
## 642 C - 3rd decile
## 643 F - 5th decile
## 644 D - 9th decile
## 645 H - 10th decile
## 646 <NA>
## 647 R - 2nd decile
## 648 J - 1st decile
## 649 <NA>
## 650 D - 9th decile
## 651 S - 6th decile
## 652 <NA>
## 653 C - 3rd decile
## 654 H - 10th decile
## 655 H - 10th decile
## 656 R - 2nd decile
## 657 <NA>
## 658 R - 2nd decile
## 659 H - 10th decile
## 660 C - 3rd decile
## 661 C - 3rd decile
## 662 <NA>
## 663 P - 8th decile
## 664 S - 6th decile
## 665 <NA>
## 666 R - 2nd decile
## 667 F - 5th decile
## 668 P - 8th decile
## 669 F - 5th decile
## 670 <NA>
## 671 <NA>
## 672 J - 1st decile
## 673 M - 4th decile
## 674 J - 1st decile
## 675 S - 6th decile
## 676 <NA>
## 677 K - 7th decile
## 678 J - 1st decile
## 679 R - 2nd decile
## 680 J - 1st decile
## 681 K - 7th decile
## 682 S - 6th decile
## 683 M - 4th decile
## 684 M - 4th decile
## 685 J - 1st decile
## 686 C - 3rd decile
## 687 <NA>
## 688 R - 2nd decile
## 689 J - 1st decile
## 690 M - 4th decile
## 691 M - 4th decile
## 692 H - 10th decile
## 693 H - 10th decile
## 694 C - 3rd decile
## 695 J - 1st decile
## 696 P - 8th decile
## 697 J - 1st decile
## 698 F - 5th decile
## 699 K - 7th decile
## 700 C - 3rd decile
## 701 R - 2nd decile
## 702 H - 10th decile
## 703 D - 9th decile
## 704 F - 5th decile
## 705 F - 5th decile
## 706 S - 6th decile
## 707 M - 4th decile
## 708 D - 9th decile
## 709 J - 1st decile
## 710 J - 1st decile
## 711 F - 5th decile
## 712 H - 10th decile
## 713 F - 5th decile
## 714 <NA>
## 715 R - 2nd decile
## 716 K - 7th decile
## 717 <NA>
## 718 F - 5th decile
## 719 R - 2nd decile
## 720 J - 1st decile
## 721 H - 10th decile
## 722 S - 6th decile
## 723 S - 6th decile
## 724 <NA>
## 725 J - 1st decile
## 726 P - 8th decile
## 727 S - 6th decile
## 728 D - 9th decile
## 729 H - 10th decile
## 730 C - 3rd decile
## 731 J - 1st decile
## 732 C - 3rd decile
## 733 <NA>
## 734 S - 6th decile
## 735 S - 6th decile
## 736 <NA>
## 737 D - 9th decile
## 738 F - 5th decile
## 739 R - 2nd decile
## 740 F - 5th decile
## 741 R - 2nd decile
## 742 D - 9th decile
## 743 H - 10th decile
## 744 R - 2nd decile
## 745 P - 8th decile
## 746 P - 8th decile
## 747 <NA>
## 748 R - 2nd decile
## 749 <NA>
## 750 S - 6th decile
## 751 <NA>
## 752 C - 3rd decile
## 753 F - 5th decile
## 754 J - 1st decile
## 755 F - 5th decile
## 756 P - 8th decile
## 757 F - 5th decile
## 758 D - 9th decile
## 759 C - 3rd decile
## 760 K - 7th decile
## 761 S - 6th decile
## 762 D - 9th decile
## 763 P - 8th decile
## 764 R - 2nd decile
## 765 C - 3rd decile
## 766 C - 3rd decile
## 767 C - 3rd decile
## 768 M - 4th decile
## 769 P - 8th decile
## 770 H - 10th decile
## 771 S - 6th decile
## 772 <NA>
## 773 M - 4th decile
## 774 J - 1st decile
## 775 R - 2nd decile
## 776 <NA>
## 777 <NA>
## 778 K - 7th decile
## 779 C - 3rd decile
## 780 C - 3rd decile
## 781 H - 10th decile
## 782 <NA>
## 783 F - 5th decile
## 784 D - 9th decile
## 785 K - 7th decile
## 786 C - 3rd decile
## 787 P - 8th decile
## 788 M - 4th decile
## 789 J - 1st decile
## 790 S - 6th decile
## 791 P - 8th decile
## 792 J - 1st decile
## 793 C - 3rd decile
## 794 R - 2nd decile
## 795 C - 3rd decile
## 796 C - 3rd decile
## 797 H - 10th decile
## 798 C - 3rd decile
## 799 C - 3rd decile
## 800 K - 7th decile
## 801 K - 7th decile
## 802 <NA>
## 803 J - 1st decile
## 804 J - 1st decile
## 805 J - 1st decile
## 806 K - 7th decile
## 807 D - 9th decile
## 808 J - 1st decile
## 809 P - 8th decile
## 810 C - 3rd decile
## 811 R - 2nd decile
## 812 M - 4th decile
## 813 <NA>
## 814 C - 3rd decile
## 815 F - 5th decile
## 816 R - 2nd decile
## 817 J - 1st decile
## 818 J - 1st decile
## 819 H - 10th decile
## 820 M - 4th decile
## 821 J - 1st decile
## 822 J - 1st decile
## 823 <NA>
## 824 J - 1st decile
## 825 K - 7th decile
## 826 S - 6th decile
## 827 M - 4th decile
## 828 M - 4th decile
## 829 M - 4th decile
## 830 D - 9th decile
## 831 H - 10th decile
## 832 <NA>
## 833 <NA>
## 834 R - 2nd decile
## 835 H - 10th decile
## 836 H - 10th decile
## 837 <NA>
## 838 <NA>
## 839 H - 10th decile
## 840 <NA>
## 841 S - 6th decile
## 842 J - 1st decile
## 843 R - 2nd decile
## 844 P - 8th decile
## 845 C - 3rd decile
## 846 <NA>
## 847 <NA>
## 848 H - 10th decile
## 849 P - 8th decile
## 850 F - 5th decile
## 851 D - 9th decile
## 852 K - 7th decile
## 853 C - 3rd decile
## 854 K - 7th decile
## 855 H - 10th decile
## 856 M - 4th decile
## 857 P - 8th decile
## 858 <NA>
## 859 H - 10th decile
## 860 <NA>
## 861 F - 5th decile
## 862 H - 10th decile
## 863 J - 1st decile
## 864 M - 4th decile
## 865 P - 8th decile
## 866 D - 9th decile
## 867 <NA>
## 868 D - 9th decile
## 869 S - 6th decile
## 870 F - 5th decile
## 871 J - 1st decile
## 872 M - 4th decile
## 873 C - 3rd decile
## 874 S - 6th decile
## 875 <NA>
## 876 M - 4th decile
## 877 M - 4th decile
## 878 <NA>
## 879 K - 7th decile
## 880 S - 6th decile
## 881 <NA>
## 882 M - 4th decile
## 883 R - 2nd decile
## 884 K - 7th decile
## 885 C - 3rd decile
## 886 R - 2nd decile
## 887 M - 4th decile
## 888 C - 3rd decile
## 889 <NA>
## 890 M - 4th decile
## 891 S - 6th decile
## 892 J - 1st decile
## 893 R - 2nd decile
## 894 M - 4th decile
## 895 S - 6th decile
## 896 J - 1st decile
## 897 K - 7th decile
## 898 D - 9th decile
## 899 <NA>
## 900 <NA>
## 901 R - 2nd decile
## 902 D - 9th decile
## 903 H - 10th decile
## 904 F - 5th decile
## 905 D - 9th decile
## 906 H - 10th decile
## 907 C - 3rd decile
## 908 D - 9th decile
## 909 <NA>
## 910 <NA>
## 911 P - 8th decile
## 912 S - 6th decile
## 913 R - 2nd decile
## 914 F - 5th decile
## 915 <NA>
## 916 S - 6th decile
## 917 M - 4th decile
## 918 <NA>
## 919 K - 7th decile
## 920 M - 4th decile
## 921 K - 7th decile
## 922 K - 7th decile
## 923 M - 4th decile
## 924 P - 8th decile
## 925 <NA>
## 926 J - 1st decile
## 927 D - 9th decile
## 928 P - 8th decile
## 929 <NA>
## 930 <NA>
## 931 <NA>
## 932 R - 2nd decile
## 933 H - 10th decile
## 934 R - 2nd decile
## 935 M - 4th decile
## 936 M - 4th decile
## 937 C - 3rd decile
## 938 K - 7th decile
## 939 D - 9th decile
## 940 H - 10th decile
## 941 P - 8th decile
## 942 P - 8th decile
## 943 <NA>
## 944 M - 4th decile
## 945 C - 3rd decile
## 946 K - 7th decile
## 947 <NA>
## 948 S - 6th decile
## 949 S - 6th decile
## 950 D - 9th decile
## 951 K - 7th decile
## 952 F - 5th decile
## 953 R - 2nd decile
## 954 <NA>
## 955 F - 5th decile
## 956 P - 8th decile
## 957 <NA>
## 958 <NA>
## 959 R - 2nd decile
## 960 K - 7th decile
## 961 <NA>
## 962 K - 7th decile
## 963 H - 10th decile
## 964 R - 2nd decile
## 965 S - 6th decile
## 966 <NA>
## 967 D - 9th decile
## 968 S - 6th decile
## 969 M - 4th decile
## 970 D - 9th decile
## 971 <NA>
## 972 J - 1st decile
## 973 S - 6th decile
## 974 P - 8th decile
## 975 J - 1st decile
## 976 K - 7th decile
## 977 <NA>
## 978 D - 9th decile
## 979 S - 6th decile
## 980 R - 2nd decile
## 981 F - 5th decile
## 982 K - 7th decile
## 983 M - 4th decile
## 984 F - 5th decile
## 985 H - 10th decile
## 986 J - 1st decile
## 987 K - 7th decile
## 988 R - 2nd decile
## 989 R - 2nd decile
## 990 J - 1st decile
## 991 S - 6th decile
## 992 <NA>
## 993 C - 3rd decile
## 994 F - 5th decile
## 995 J - 1st decile
## 996 M - 4th decile
## 997 S - 6th decile
## 998 K - 7th decile
## 999 H - 10th decile
## 1000 <NA>
## 1001 F - 5th decile
## 1002 R - 2nd decile
## 1003 <NA>
## 1004 C - 3rd decile
## 1005 H - 10th decile
## 1006 <NA>
## 1007 <NA>
## 1008 D - 9th decile
## 1009 C - 3rd decile
## 1010 J - 1st decile
## 1011 J - 1st decile
## 1012 R - 2nd decile
## 1013 K - 7th decile
## 1014 P - 8th decile
## 1015 H - 10th decile
## 1016 S - 6th decile
## 1017 <NA>
## 1018 F - 5th decile
## 1019 H - 10th decile
## 1020 <NA>
## 1021 C - 3rd decile
## 1022 C - 3rd decile
## 1023 C - 3rd decile
## 1024 H - 10th decile
## 1025 R - 2nd decile
## 1026 H - 10th decile
## 1027 M - 4th decile
## 1028 <NA>
## 1029 C - 3rd decile
## 1030 D - 9th decile
## 1031 <NA>
## 1032 K - 7th decile
## 1033 F - 5th decile
## 1034 C - 3rd decile
## 1035 F - 5th decile
## 1036 R - 2nd decile
## 1037 S - 6th decile
## 1038 J - 1st decile
## 1039 F - 5th decile
## 1040 J - 1st decile
## 1041 <NA>
## 1042 K - 7th decile
## 1043 P - 8th decile
## 1044 J - 1st decile
## 1045 D - 9th decile
## 1046 <NA>
## 1047 K - 7th decile
## 1048 D - 9th decile
## 1049 M - 4th decile
## 1050 F - 5th decile
## 1051 M - 4th decile
## 1052 M - 4th decile
## 1053 J - 1st decile
## 1054 S - 6th decile
## 1055 C - 3rd decile
## 1056 P - 8th decile
## 1057 S - 6th decile
## 1058 R - 2nd decile
## 1059 D - 9th decile
## 1060 J - 1st decile
## 1061 R - 2nd decile
## 1062 M - 4th decile
## 1063 <NA>
## 1064 D - 9th decile
## 1065 <NA>
## 1066 R - 2nd decile
## 1067 H - 10th decile
## 1068 F - 5th decile
## 1069 D - 9th decile
## 1070 P - 8th decile
## 1071 J - 1st decile
## 1072 <NA>
## 1073 R - 2nd decile
## 1074 C - 3rd decile
## 1075 F - 5th decile
## 1076 S - 6th decile
## 1077 <NA>
## 1078 C - 3rd decile
## 1079 J - 1st decile
## 1080 F - 5th decile
## 1081 K - 7th decile
## 1082 H - 10th decile
## 1083 C - 3rd decile
## 1084 D - 9th decile
## 1085 H - 10th decile
## 1086 <NA>
## 1087 J - 1st decile
## 1088 J - 1st decile
## 1089 D - 9th decile
## 1090 R - 2nd decile
## 1091 S - 6th decile
## 1092 H - 10th decile
## 1093 F - 5th decile
## 1094 <NA>
## 1095 R - 2nd decile
## 1096 P - 8th decile
## 1097 <NA>
## 1098 M - 4th decile
## 1099 R - 2nd decile
## 1100 S - 6th decile
## 1101 <NA>
## 1102 R - 2nd decile
## 1103 C - 3rd decile
## 1104 J - 1st decile
## 1105 J - 1st decile
## 1106 P - 8th decile
## 1107 S - 6th decile
## 1108 J - 1st decile
## 1109 M - 4th decile
## 1110 S - 6th decile
## 1111 R - 2nd decile
## 1112 J - 1st decile
## 1113 <NA>
## 1114 K - 7th decile
## 1115 K - 7th decile
## 1116 R - 2nd decile
## 1117 <NA>
## 1118 J - 1st decile
## 1119 <NA>
## 1120 F - 5th decile
## 1121 D - 9th decile
## 1122 K - 7th decile
## 1123 P - 8th decile
## 1124 R - 2nd decile
## 1125 R - 2nd decile
## 1126 <NA>
## 1127 D - 9th decile
## 1128 D - 9th decile
## 1129 H - 10th decile
## 1130 R - 2nd decile
## 1131 <NA>
## 1132 F - 5th decile
## 1133 F - 5th decile
## 1134 D - 9th decile
## 1135 R - 2nd decile
## 1136 S - 6th decile
## 1137 C - 3rd decile
## 1138 D - 9th decile
## 1139 R - 2nd decile
## 1140 P - 8th decile
## 1141 J - 1st decile
## 1142 J - 1st decile
## 1143 <NA>
## 1144 R - 2nd decile
## 1145 <NA>
## 1146 P - 8th decile
## 1147 R - 2nd decile
## 1148 R - 2nd decile
## 1149 K - 7th decile
## 1150 <NA>
## 1151 J - 1st decile
## 1152 J - 1st decile
## 1153 <NA>
## 1154 R - 2nd decile
## 1155 M - 4th decile
## 1156 K - 7th decile
## 1157 M - 4th decile
## 1158 J - 1st decile
## 1159 <NA>
## 1160 D - 9th decile
## 1161 M - 4th decile
## 1162 <NA>
## 1163 R - 2nd decile
## 1164 C - 3rd decile
## 1165 F - 5th decile
## 1166 D - 9th decile
## 1167 H - 10th decile
## 1168 H - 10th decile
## 1169 J - 1st decile
## 1170 R - 2nd decile
## 1171 R - 2nd decile
## 1172 <NA>
## 1173 <NA>
## 1174 <NA>
## 1175 K - 7th decile
## 1176 M - 4th decile
## 1177 D - 9th decile
## 1178 R - 2nd decile
## 1179 J - 1st decile
## 1180 H - 10th decile
## 1181 J - 1st decile
## 1182 <NA>
## 1183 J - 1st decile
## 1184 F - 5th decile
## 1185 J - 1st decile
## 1186 H - 10th decile
## 1187 K - 7th decile
## 1188 R - 2nd decile
## 1189 S - 6th decile
## 1190 <NA>
## 1191 R - 2nd decile
## 1192 J - 1st decile
## 1193 C - 3rd decile
## 1194 D - 9th decile
## 1195 S - 6th decile
## 1196 F - 5th decile
## 1197 <NA>
## 1198 K - 7th decile
## 1199 H - 10th decile
## 1200 R - 2nd decile
## 1201 H - 10th decile
## 1202 <NA>
## 1203 H - 10th decile
## 1204 C - 3rd decile
## 1205 J - 1st decile
## 1206 R - 2nd decile
## 1207 J - 1st decile
## 1208 C - 3rd decile
## 1209 <NA>
## 1210 J - 1st decile
## 1211 P - 8th decile
## 1212 D - 9th decile
## 1213 D - 9th decile
## 1214 C - 3rd decile
## 1215 P - 8th decile
## 1216 <NA>
## 1217 J - 1st decile
## 1218 H - 10th decile
## 1219 D - 9th decile
## 1220 J - 1st decile
## 1221 F - 5th decile
## 1222 H - 10th decile
## 1223 M - 4th decile
## 1224 K - 7th decile
## 1225 <NA>
## 1226 K - 7th decile
## 1227 C - 3rd decile
## 1228 <NA>
## 1229 M - 4th decile
## 1230 M - 4th decile
## 1231 <NA>
## 1232 M - 4th decile
## 1233 S - 6th decile
## 1234 C - 3rd decile
## 1235 C - 3rd decile
## 1236 M - 4th decile
## 1237 <NA>
## 1238 P - 8th decile
## 1239 P - 8th decile
## 1240 P - 8th decile
## 1241 R - 2nd decile
## 1242 F - 5th decile
## 1243 D - 9th decile
## 1244 H - 10th decile
## 1245 R - 2nd decile
## 1246 J - 1st decile
## 1247 P - 8th decile
## 1248 J - 1st decile
## 1249 C - 3rd decile
## 1250 <NA>
## 1251 K - 7th decile
## 1252 J - 1st decile
## 1253 D - 9th decile
## 1254 D - 9th decile
## 1255 R - 2nd decile
## 1256 F - 5th decile
## 1257 F - 5th decile
## 1258 K - 7th decile
## 1259 H - 10th decile
## 1260 H - 10th decile
## 1261 F - 5th decile
## 1262 K - 7th decile
## 1263 <NA>
## 1264 K - 7th decile
## 1265 R - 2nd decile
## 1266 J - 1st decile
## 1267 K - 7th decile
## 1268 <NA>
## 1269 K - 7th decile
## 1270 K - 7th decile
## 1271 C - 3rd decile
## 1272 R - 2nd decile
## 1273 C - 3rd decile
## 1274 M - 4th decile
## 1275 R - 2nd decile
## 1276 J - 1st decile
## 1277 <NA>
## 1278 R - 2nd decile
## 1279 J - 1st decile
## 1280 F - 5th decile
## 1281 S - 6th decile
## 1282 H - 10th decile
## 1283 C - 3rd decile
## 1284 <NA>
## 1285 S - 6th decile
## 1286 M - 4th decile
## 1287 J - 1st decile
## 1288 K - 7th decile
## 1289 S - 6th decile
## 1290 F - 5th decile
## 1291 C - 3rd decile
## 1292 C - 3rd decile
## 1293 J - 1st decile
## 1294 R - 2nd decile
## 1295 <NA>
## 1296 P - 8th decile
## 1297 S - 6th decile
## 1298 S - 6th decile
## 1299 D - 9th decile
## 1300 C - 3rd decile
## 1301 H - 10th decile
## 1302 C - 3rd decile
## 1303 F - 5th decile
## 1304 <NA>
## 1305 S - 6th decile
## 1306 J - 1st decile
## 1307 K - 7th decile
## 1308 J - 1st decile
## 1309 D - 9th decile
## 1310 <NA>
## 1311 <NA>
## 1312 H - 10th decile
## 1313 P - 8th decile
## 1314 D - 9th decile
## 1315 C - 3rd decile
## 1316 C - 3rd decile
## 1317 D - 9th decile
## 1318 F - 5th decile
## 1319 <NA>
## 1320 K - 7th decile
## 1321 K - 7th decile
## 1322 J - 1st decile
## 1323 M - 4th decile
## 1324 <NA>
## 1325 C - 3rd decile
## 1326 D - 9th decile
## 1327 J - 1st decile
## 1328 P - 8th decile
## 1329 F - 5th decile
## 1330 P - 8th decile
## 1331 M - 4th decile
## 1332 H - 10th decile
## 1333 C - 3rd decile
## 1334 S - 6th decile
## 1335 D - 9th decile
## 1336 P - 8th decile
## 1337 J - 1st decile
## 1338 J - 1st decile
## 1339 M - 4th decile
## 1340 F - 5th decile
## 1341 R - 2nd decile
## 1342 M - 4th decile
## 1343 <NA>
## 1344 S - 6th decile
## 1345 C - 3rd decile
## 1346 C - 3rd decile
## 1347 S - 6th decile
## 1348 S - 6th decile
## 1349 R - 2nd decile
## 1350 <NA>
## 1351 J - 1st decile
## 1352 S - 6th decile
## 1353 C - 3rd decile
## 1354 D - 9th decile
## 1355 S - 6th decile
## 1356 D - 9th decile
## 1357 S - 6th decile
## 1358 F - 5th decile
## 1359 R - 2nd decile
## 1360 <NA>
## 1361 C - 3rd decile
## 1362 J - 1st decile
## 1363 <NA>
## 1364 <NA>
## 1365 <NA>
## 1366 K - 7th decile
## 1367 F - 5th decile
## 1368 S - 6th decile
## 1369 C - 3rd decile
## 1370 C - 3rd decile
## 1371 <NA>
## 1372 S - 6th decile
## 1373 F - 5th decile
## 1374 C - 3rd decile
## 1375 D - 9th decile
## 1376 F - 5th decile
## 1377 M - 4th decile
## 1378 P - 8th decile
## 1379 <NA>
## 1380 F - 5th decile
## 1381 D - 9th decile
## 1382 C - 3rd decile
## 1383 <NA>
## 1384 K - 7th decile
## 1385 S - 6th decile
## 1386 J - 1st decile
## 1387 C - 3rd decile
## 1388 F - 5th decile
## 1389 J - 1st decile
## 1390 P - 8th decile
## 1391 S - 6th decile
## 1392 H - 10th decile
## 1393 <NA>
## 1394 <NA>
## 1395 P - 8th decile
## 1396 F - 5th decile
## 1397 H - 10th decile
## 1398 S - 6th decile
## 1399 J - 1st decile
## 1400 H - 10th decile
## 1401 K - 7th decile
## 1402 <NA>
## 1403 F - 5th decile
## 1404 P - 8th decile
## 1405 M - 4th decile
## 1406 R - 2nd decile
## 1407 J - 1st decile
## 1408 P - 8th decile
## 1409 J - 1st decile
## 1410 C - 3rd decile
## 1411 J - 1st decile
## 1412 J - 1st decile
## 1413 D - 9th decile
## 1414 F - 5th decile
## 1415 F - 5th decile
## 1416 H - 10th decile
## 1417 F - 5th decile
## 1418 J - 1st decile
## 1419 D - 9th decile
## 1420 <NA>
## 1421 J - 1st decile
## 1422 J - 1st decile
## 1423 D - 9th decile
## 1424 C - 3rd decile
## 1425 R - 2nd decile
## 1426 H - 10th decile
## 1427 S - 6th decile
## 1428 H - 10th decile
## 1429 R - 2nd decile
## 1430 <NA>
## 1431 <NA>
## 1432 M - 4th decile
## 1433 P - 8th decile
## 1434 <NA>
## 1435 J - 1st decile
## 1436 R - 2nd decile
## 1437 P - 8th decile
## 1438 H - 10th decile
## 1439 R - 2nd decile
## 1440 F - 5th decile
## 1441 P - 8th decile
## 1442 C - 3rd decile
## 1443 R - 2nd decile
## 1444 R - 2nd decile
## 1445 F - 5th decile
## 1446 C - 3rd decile
## 1447 P - 8th decile
## 1448 <NA>
## 1449 F - 5th decile
## 1450 R - 2nd decile
## 1451 S - 6th decile
## 1452 J - 1st decile
## 1453 J - 1st decile
## 1454 S - 6th decile
## 1455 C - 3rd decile
## 1456 J - 1st decile
## 1457 <NA>
## 1458 S - 6th decile
## 1459 H - 10th decile
## 1460 S - 6th decile
## 1461 C - 3rd decile
## 1462 <NA>
## 1463 <NA>
## 1464 F - 5th decile
## 1465 <NA>
## 1466 P - 8th decile
## 1467 J - 1st decile
## 1468 D - 9th decile
## 1469 <NA>
## 1470 R - 2nd decile
## 1471 <NA>
## 1472 M - 4th decile
## 1473 H - 10th decile
## 1474 P - 8th decile
## 1475 M - 4th decile
## 1476 R - 2nd decile
## 1477 H - 10th decile
## 1478 <NA>
## 1479 R - 2nd decile
## 1480 J - 1st decile
## 1481 K - 7th decile
## 1482 R - 2nd decile
## 1483 H - 10th decile
## 1484 <NA>
## 1485 <NA>
## 1486 <NA>
## 1487 K - 7th decile
## 1488 M - 4th decile
## 1489 K - 7th decile
## 1490 R - 2nd decile
## 1491 <NA>
## 1492 F - 5th decile
## 1493 <NA>
## 1494 H - 10th decile
## 1495 M - 4th decile
## 1496 R - 2nd decile
## 1497 S - 6th decile
## 1498 P - 8th decile
## 1499 <NA>
## 1500 M - 4th decile
## 1501 <NA>
## 1502 C - 3rd decile
## 1503 D - 9th decile
## 1504 S - 6th decile
## 1505 <NA>
## 1506 S - 6th decile
## 1507 J - 1st decile
## 1508 J - 1st decile
## 1509 <NA>
## 1510 <NA>
## 1511 R - 2nd decile
## 1512 <NA>
## 1513 R - 2nd decile
## 1514 R - 2nd decile
## 1515 P - 8th decile
## 1516 R - 2nd decile
## 1517 R - 2nd decile
## 1518 J - 1st decile
## 1519 R - 2nd decile
## 1520 M - 4th decile
## 1521 P - 8th decile
## 1522 F - 5th decile
## 1523 H - 10th decile
## 1524 J - 1st decile
## 1525 <NA>
## 1526 <NA>
## 1527 K - 7th decile
## 1528 R - 2nd decile
## 1529 D - 9th decile
## 1530 H - 10th decile
## 1531 P - 8th decile
## 1532 K - 7th decile
## 1533 <NA>
## 1534 C - 3rd decile
## 1535 F - 5th decile
## 1536 C - 3rd decile
## 1537 M - 4th decile
## 1538 F - 5th decile
## 1539 D - 9th decile
## 1540 F - 5th decile
## 1541 M - 4th decile
## 1542 K - 7th decile
## 1543 J - 1st decile
## 1544 M - 4th decile
## 1545 R - 2nd decile
## 1546 <NA>
## 1547 J - 1st decile
## 1548 S - 6th decile
## 1549 P - 8th decile
## 1550 H - 10th decile
## 1551 M - 4th decile
## 1552 R - 2nd decile
## 1553 R - 2nd decile
## 1554 J - 1st decile
## 1555 J - 1st decile
## 1556 J - 1st decile
## 1557 M - 4th decile
## 1558 R - 2nd decile
## 1559 F - 5th decile
## 1560 P - 8th decile
## 1561 H - 10th decile
## 1562 K - 7th decile
## 1563 S - 6th decile
## 1564 F - 5th decile
## 1565 D - 9th decile
## 1566 H - 10th decile
## 1567 J - 1st decile
## 1568 H - 10th decile
## 1569 C - 3rd decile
## 1570 C - 3rd decile
## 1571 H - 10th decile
## 1572 F - 5th decile
## 1573 F - 5th decile
## 1574 C - 3rd decile
## 1575 D - 9th decile
## 1576 <NA>
## 1577 F - 5th decile
## 1578 <NA>
## 1579 R - 2nd decile
## 1580 <NA>
## 1581 K - 7th decile
## 1582 R - 2nd decile
## 1583 <NA>
## 1584 S - 6th decile
## 1585 D - 9th decile
## 1586 H - 10th decile
## 1587 M - 4th decile
## 1588 R - 2nd decile
## 1589 <NA>
## 1590 J - 1st decile
## 1591 <NA>
## 1592 F - 5th decile
## 1593 F - 5th decile
## 1594 C - 3rd decile
## 1595 J - 1st decile
## 1596 J - 1st decile
## 1597 D - 9th decile
## 1598 M - 4th decile
## 1599 P - 8th decile
## 1600 J - 1st decile
## 1601 R - 2nd decile
## 1602 D - 9th decile
## 1603 R - 2nd decile
## 1604 P - 8th decile
## 1605 C - 3rd decile
## 1606 C - 3rd decile
## 1607 F - 5th decile
## 1608 R - 2nd decile
## 1609 R - 2nd decile
## 1610 H - 10th decile
## 1611 <NA>
## 1612 F - 5th decile
## 1613 <NA>
## 1614 M - 4th decile
## 1615 <NA>
## 1616 J - 1st decile
## 1617 P - 8th decile
## 1618 <NA>
## 1619 S - 6th decile
## 1620 J - 1st decile
## 1621 J - 1st decile
## 1622 R - 2nd decile
## 1623 K - 7th decile
## 1624 S - 6th decile
## 1625 J - 1st decile
## 1626 J - 1st decile
## 1627 P - 8th decile
## 1628 <NA>
## 1629 <NA>
## 1630 R - 2nd decile
## 1631 P - 8th decile
## 1632 C - 3rd decile
## 1633 D - 9th decile
## 1634 H - 10th decile
## 1635 S - 6th decile
## 1636 F - 5th decile
## 1637 J - 1st decile
## 1638 K - 7th decile
## 1639 H - 10th decile
## 1640 J - 1st decile
## 1641 D - 9th decile
## 1642 D - 9th decile
## 1643 H - 10th decile
## 1644 M - 4th decile
## 1645 P - 8th decile
## 1646 S - 6th decile
## 1647 C - 3rd decile
## 1648 D - 9th decile
## 1649 <NA>
## 1650 <NA>
## 1651 S - 6th decile
## 1652 <NA>
## 1653 C - 3rd decile
## 1654 K - 7th decile
## 1655 <NA>
## 1656 M - 4th decile
## 1657 F - 5th decile
## 1658 R - 2nd decile
## 1659 S - 6th decile
## 1660 C - 3rd decile
## 1661 M - 4th decile
## 1662 R - 2nd decile
## 1663 <NA>
## 1664 C - 3rd decile
## 1665 C - 3rd decile
## 1666 R - 2nd decile
## 1667 S - 6th decile
## 1668 R - 2nd decile
## 1669 R - 2nd decile
## 1670 S - 6th decile
## 1671 S - 6th decile
## 1672 <NA>
## 1673 P - 8th decile
## 1674 S - 6th decile
## 1675 D - 9th decile
## 1676 H - 10th decile
## 1677 R - 2nd decile
## 1678 <NA>
## 1679 K - 7th decile
## 1680 <NA>
## 1681 J - 1st decile
## 1682 R - 2nd decile
## 1683 H - 10th decile
## 1684 P - 8th decile
## 1685 S - 6th decile
## 1686 H - 10th decile
## 1687 K - 7th decile
## 1688 M - 4th decile
## 1689 <NA>
## 1690 H - 10th decile
## 1691 F - 5th decile
## 1692 J - 1st decile
## 1693 C - 3rd decile
## 1694 <NA>
## 1695 P - 8th decile
## 1696 C - 3rd decile
## 1697 J - 1st decile
## 1698 C - 3rd decile
## 1699 <NA>
## 1700 H - 10th decile
## 1701 J - 1st decile
## 1702 M - 4th decile
## 1703 P - 8th decile
## 1704 J - 1st decile
## 1705 H - 10th decile
## 1706 J - 1st decile
## 1707 K - 7th decile
## 1708 P - 8th decile
## 1709 H - 10th decile
## 1710 P - 8th decile
## 1711 M - 4th decile
## 1712 P - 8th decile
## 1713 C - 3rd decile
## 1714 C - 3rd decile
## 1715 P - 8th decile
## 1716 K - 7th decile
## 1717 M - 4th decile
## 1718 P - 8th decile
## 1719 <NA>
## 1720 J - 1st decile
## 1721 <NA>
## 1722 D - 9th decile
## 1723 C - 3rd decile
## 1724 J - 1st decile
## 1725 J - 1st decile
## 1726 K - 7th decile
## 1727 M - 4th decile
## 1728 <NA>
## 1729 J - 1st decile
## 1730 D - 9th decile
## 1731 H - 10th decile
## 1732 M - 4th decile
## 1733 J - 1st decile
## 1734 C - 3rd decile
## 1735 K - 7th decile
## 1736 <NA>
## 1737 D - 9th decile
## 1738 C - 3rd decile
## 1739 J - 1st decile
## 1740 J - 1st decile
## 1741 M - 4th decile
## 1742 H - 10th decile
## 1743 S - 6th decile
## 1744 <NA>
## 1745 K - 7th decile
## 1746 P - 8th decile
## 1747 D - 9th decile
## 1748 R - 2nd decile
## 1749 H - 10th decile
## 1750 <NA>
## 1751 M - 4th decile
## 1752 J - 1st decile
## 1753 F - 5th decile
## 1754 H - 10th decile
## 1755 <NA>
## 1756 J - 1st decile
## 1757 D - 9th decile
## 1758 R - 2nd decile
## 1759 P - 8th decile
## 1760 M - 4th decile
## 1761 J - 1st decile
## 1762 C - 3rd decile
## 1763 F - 5th decile
## 1764 K - 7th decile
## 1765 C - 3rd decile
## 1766 H - 10th decile
## 1767 D - 9th decile
## 1768 <NA>
## 1769 <NA>
## 1770 F - 5th decile
## 1771 H - 10th decile
## 1772 K - 7th decile
## 1773 D - 9th decile
## 1774 <NA>
## 1775 <NA>
## 1776 S - 6th decile
## 1777 C - 3rd decile
## 1778 C - 3rd decile
## 1779 S - 6th decile
## 1780 J - 1st decile
## 1781 D - 9th decile
## 1782 S - 6th decile
## 1783 M - 4th decile
## 1784 R - 2nd decile
## 1785 R - 2nd decile
## 1786 J - 1st decile
## 1787 J - 1st decile
## 1788 J - 1st decile
## 1789 D - 9th decile
## 1790 H - 10th decile
## 1791 K - 7th decile
## 1792 P - 8th decile
## 1793 D - 9th decile
## 1794 S - 6th decile
## 1795 C - 3rd decile
## 1796 J - 1st decile
## 1797 H - 10th decile
## 1798 D - 9th decile
## 1799 C - 3rd decile
## 1800 C - 3rd decile
## 1801 <NA>
## 1802 H - 10th decile
## 1803 R - 2nd decile
## 1804 C - 3rd decile
## 1805 J - 1st decile
## 1806 S - 6th decile
## 1807 J - 1st decile
## 1808 F - 5th decile
## 1809 J - 1st decile
## 1810 <NA>
## 1811 K - 7th decile
## 1812 R - 2nd decile
## 1813 <NA>
## 1814 C - 3rd decile
## 1815 <NA>
## 1816 S - 6th decile
## 1817 R - 2nd decile
## 1818 <NA>
## 1819 P - 8th decile
## 1820 C - 3rd decile
## 1821 M - 4th decile
## 1822 R - 2nd decile
## 1823 C - 3rd decile
## 1824 F - 5th decile
## 1825 C - 3rd decile
## 1826 <NA>
## 1827 S - 6th decile
## 1828 <NA>
## 1829 K - 7th decile
## 1830 C - 3rd decile
## 1831 K - 7th decile
## 1832 R - 2nd decile
## 1833 F - 5th decile
## 1834 M - 4th decile
## 1835 K - 7th decile
## 1836 P - 8th decile
## 1837 M - 4th decile
## 1838 C - 3rd decile
## 1839 D - 9th decile
## 1840 P - 8th decile
## 1841 P - 8th decile
## 1842 D - 9th decile
## 1843 R - 2nd decile
## 1844 F - 5th decile
## 1845 <NA>
## 1846 J - 1st decile
## 1847 R - 2nd decile
## 1848 R - 2nd decile
## 1849 <NA>
## 1850 <NA>
## 1851 <NA>
## 1852 C - 3rd decile
## 1853 F - 5th decile
## 1854 <NA>
## 1855 F - 5th decile
## 1856 C - 3rd decile
## 1857 F - 5th decile
## 1858 R - 2nd decile
## 1859 C - 3rd decile
## 1860 J - 1st decile
## 1861 F - 5th decile
## 1862 J - 1st decile
## 1863 J - 1st decile
## 1864 S - 6th decile
## 1865 P - 8th decile
## 1866 D - 9th decile
## 1867 D - 9th decile
## 1868 S - 6th decile
## 1869 J - 1st decile
## 1870 F - 5th decile
## 1871 J - 1st decile
## 1872 K - 7th decile
## 1873 D - 9th decile
## 1874 H - 10th decile
## 1875 J - 1st decile
## 1876 <NA>
## 1877 F - 5th decile
## 1878 F - 5th decile
## 1879 <NA>
## 1880 H - 10th decile
## 1881 <NA>
## 1882 J - 1st decile
## 1883 J - 1st decile
## 1884 C - 3rd decile
## 1885 R - 2nd decile
## 1886 K - 7th decile
## 1887 P - 8th decile
## 1888 P - 8th decile
## 1889 C - 3rd decile
## 1890 F - 5th decile
## 1891 M - 4th decile
## 1892 J - 1st decile
## 1893 <NA>
## 1894 H - 10th decile
## 1895 P - 8th decile
## 1896 <NA>
## 1897 <NA>
## 1898 J - 1st decile
## 1899 R - 2nd decile
## 1900 <NA>
## 1901 M - 4th decile
## 1902 <NA>
## 1903 H - 10th decile
## 1904 S - 6th decile
## 1905 H - 10th decile
## 1906 J - 1st decile
## 1907 J - 1st decile
## 1908 <NA>
## 1909 M - 4th decile
## 1910 <NA>
## 1911 S - 6th decile
## 1912 R - 2nd decile
## 1913 C - 3rd decile
## 1914 C - 3rd decile
## 1915 J - 1st decile
## 1916 P - 8th decile
## 1917 C - 3rd decile
## 1918 R - 2nd decile
## 1919 P - 8th decile
## 1920 <NA>
## 1921 R - 2nd decile
## 1922 C - 3rd decile
## 1923 M - 4th decile
## 1924 M - 4th decile
## 1925 C - 3rd decile
## 1926 R - 2nd decile
## 1927 K - 7th decile
## 1928 R - 2nd decile
## 1929 F - 5th decile
## 1930 C - 3rd decile
## 1931 R - 2nd decile
## 1932 H - 10th decile
## 1933 P - 8th decile
## 1934 <NA>
## 1935 J - 1st decile
## 1936 P - 8th decile
## 1937 H - 10th decile
## 1938 C - 3rd decile
## 1939 R - 2nd decile
## 1940 <NA>
## 1941 R - 2nd decile
## 1942 H - 10th decile
## 1943 C - 3rd decile
## 1944 M - 4th decile
## 1945 H - 10th decile
## 1946 M - 4th decile
## 1947 D - 9th decile
## 1948 R - 2nd decile
## 1949 F - 5th decile
## 1950 C - 3rd decile
## 1951 R - 2nd decile
## 1952 F - 5th decile
## 1953 <NA>
## 1954 M - 4th decile
## 1955 C - 3rd decile
## 1956 F - 5th decile
## 1957 R - 2nd decile
## 1958 R - 2nd decile
## 1959 R - 2nd decile
## 1960 M - 4th decile
## 1961 H - 10th decile
## 1962 <NA>
## 1963 J - 1st decile
## 1964 C - 3rd decile
## 1965 D - 9th decile
## 1966 F - 5th decile
## 1967 S - 6th decile
## 1968 R - 2nd decile
## 1969 M - 4th decile
## 1970 K - 7th decile
## 1971 P - 8th decile
## 1972 <NA>
## 1973 M - 4th decile
## 1974 M - 4th decile
## 1975 S - 6th decile
## 1976 S - 6th decile
## 1977 R - 2nd decile
## 1978 C - 3rd decile
## 1979 <NA>
## 1980 F - 5th decile
## 1981 J - 1st decile
## 1982 <NA>
## 1983 P - 8th decile
## 1984 C - 3rd decile
## 1985 K - 7th decile
## 1986 C - 3rd decile
## 1987 H - 10th decile
## 1988 <NA>
## 1989 K - 7th decile
## 1990 D - 9th decile
## 1991 K - 7th decile
## 1992 P - 8th decile
## 1993 <NA>
## 1994 J - 1st decile
## 1995 K - 7th decile
## 1996 J - 1st decile
## 1997 P - 8th decile
## 1998 <NA>
## 1999 J - 1st decile
## 2000 <NA>
## 2001 D - 9th decile
## 2002 R - 2nd decile
## 2003 C - 3rd decile
## 2004 J - 1st decile
## 2005 R - 2nd decile
## 2006 D - 9th decile
## 2007 J - 1st decile
## 2008 M - 4th decile
## 2009 <NA>
## 2010 C - 3rd decile
## 2011 J - 1st decile
## 2012 R - 2nd decile
## 2013 <NA>
## 2014 <NA>
## 2015 <NA>
## 2016 K - 7th decile
## 2017 F - 5th decile
## 2018 R - 2nd decile
## 2019 C - 3rd decile
## 2020 K - 7th decile
## 2021 J - 1st decile
## 2022 R - 2nd decile
## 2023 S - 6th decile
## 2024 <NA>
## 2025 D - 9th decile
## 2026 D - 9th decile
## 2027 H - 10th decile
## 2028 D - 9th decile
## 2029 <NA>
## 2030 H - 10th decile
## 2031 P - 8th decile
## 2032 R - 2nd decile
## 2033 C - 3rd decile
## 2034 M - 4th decile
## 2035 K - 7th decile
## 2036 P - 8th decile
## 2037 <NA>
## 2038 R - 2nd decile
## 2039 P - 8th decile
## 2040 C - 3rd decile
## 2041 F - 5th decile
## 2042 <NA>
## 2043 H - 10th decile
## 2044 J - 1st decile
## 2045 F - 5th decile
## 2046 C - 3rd decile
## 2047 R - 2nd decile
## 2048 H - 10th decile
## 2049 J - 1st decile
## 2050 P - 8th decile
## 2051 J - 1st decile
## 2052 J - 1st decile
## 2053 P - 8th decile
## 2054 S - 6th decile
## 2055 F - 5th decile
## 2056 H - 10th decile
## 2057 <NA>
## 2058 J - 1st decile
## 2059 P - 8th decile
## 2060 M - 4th decile
## 2061 R - 2nd decile
## 2062 P - 8th decile
## 2063 J - 1st decile
## 2064 S - 6th decile
## 2065 <NA>
## 2066 R - 2nd decile
## 2067 F - 5th decile
## 2068 R - 2nd decile
## 2069 <NA>
## 2070 <NA>
## 2071 J - 1st decile
## 2072 K - 7th decile
## 2073 <NA>
## 2074 <NA>
## 2075 <NA>
## 2076 R - 2nd decile
## 2077 <NA>
## 2078 J - 1st decile
## 2079 C - 3rd decile
## 2080 H - 10th decile
## 2081 <NA>
## 2082 F - 5th decile
## 2083 <NA>
## 2084 C - 3rd decile
## 2085 P - 8th decile
## 2086 D - 9th decile
## 2087 H - 10th decile
## 2088 M - 4th decile
## 2089 K - 7th decile
## 2090 C - 3rd decile
## 2091 D - 9th decile
## 2092 M - 4th decile
## 2093 S - 6th decile
## 2094 <NA>
## 2095 <NA>
## 2096 C - 3rd decile
## 2097 P - 8th decile
## 2098 M - 4th decile
## 2099 K - 7th decile
## 2100 J - 1st decile
## 2101 K - 7th decile
## 2102 K - 7th decile
## 2103 C - 3rd decile
## 2104 K - 7th decile
## 2105 <NA>
## 2106 R - 2nd decile
## 2107 F - 5th decile
## 2108 J - 1st decile
## 2109 D - 9th decile
## 2110 <NA>
## 2111 P - 8th decile
## 2112 <NA>
## 2113 <NA>
## 2114 P - 8th decile
## 2115 P - 8th decile
## 2116 P - 8th decile
## 2117 <NA>
## 2118 S - 6th decile
## 2119 <NA>
## 2120 K - 7th decile
## 2121 <NA>
## 2122 M - 4th decile
## 2123 K - 7th decile
## 2124 H - 10th decile
## 2125 <NA>
## 2126 F - 5th decile
## 2127 R - 2nd decile
## 2128 J - 1st decile
## 2129 J - 1st decile
## 2130 S - 6th decile
## 2131 K - 7th decile
## 2132 F - 5th decile
## 2133 M - 4th decile
## 2134 P - 8th decile
## 2135 F - 5th decile
## 2136 J - 1st decile
## 2137 K - 7th decile
## 2138 J - 1st decile
## 2139 P - 8th decile
## 2140 R - 2nd decile
## 2141 <NA>
## 2142 H - 10th decile
## 2143 D - 9th decile
## 2144 R - 2nd decile
## 2145 F - 5th decile
## 2146 K - 7th decile
## 2147 J - 1st decile
## 2148 S - 6th decile
## 2149 D - 9th decile
## 2150 M - 4th decile
## 2151 <NA>
## 2152 <NA>
## 2153 S - 6th decile
## 2154 D - 9th decile
## 2155 R - 2nd decile
## 2156 <NA>
## 2157 F - 5th decile
## 2158 D - 9th decile
## 2159 D - 9th decile
## 2160 J - 1st decile
## 2161 <NA>
## 2162 R - 2nd decile
## 2163 <NA>
## 2164 K - 7th decile
## 2165 M - 4th decile
## 2166 D - 9th decile
## 2167 C - 3rd decile
## 2168 K - 7th decile
## 2169 K - 7th decile
## 2170 R - 2nd decile
## 2171 <NA>
## 2172 <NA>
## 2173 R - 2nd decile
## 2174 K - 7th decile
## 2175 R - 2nd decile
## 2176 K - 7th decile
## 2177 <NA>
## 2178 S - 6th decile
## 2179 J - 1st decile
## 2180 J - 1st decile
## 2181 D - 9th decile
## 2182 H - 10th decile
## 2183 M - 4th decile
## 2184 C - 3rd decile
## 2185 <NA>
## 2186 C - 3rd decile
## 2187 J - 1st decile
## 2188 <NA>
## 2189 H - 10th decile
## 2190 <NA>
## 2191 <NA>
## 2192 H - 10th decile
## 2193 C - 3rd decile
## 2194 M - 4th decile
## 2195 <NA>
## 2196 R - 2nd decile
## 2197 D - 9th decile
## 2198 <NA>
## 2199 R - 2nd decile
## 2200 M - 4th decile
## 2201 <NA>
## 2202 R - 2nd decile
## 2203 P - 8th decile
## 2204 M - 4th decile
## 2205 J - 1st decile
## 2206 F - 5th decile
## 2207 H - 10th decile
## 2208 H - 10th decile
## 2209 D - 9th decile
## 2210 P - 8th decile
## 2211 R - 2nd decile
## 2212 C - 3rd decile
## 2213 J - 1st decile
## 2214 J - 1st decile
## 2215 J - 1st decile
## 2216 R - 2nd decile
## 2217 K - 7th decile
## 2218 D - 9th decile
## 2219 <NA>
## 2220 J - 1st decile
## 2221 J - 1st decile
## 2222 F - 5th decile
## 2223 J - 1st decile
## 2224 S - 6th decile
## 2225 P - 8th decile
## 2226 R - 2nd decile
## 2227 H - 10th decile
## 2228 J - 1st decile
## 2229 R - 2nd decile
## 2230 D - 9th decile
## 2231 H - 10th decile
## 2232 R - 2nd decile
## 2233 R - 2nd decile
## 2234 K - 7th decile
## 2235 R - 2nd decile
## 2236 M - 4th decile
## 2237 J - 1st decile
## 2238 S - 6th decile
## 2239 <NA>
## 2240 R - 2nd decile
## 2241 <NA>
## 2242 <NA>
## 2243 <NA>
## 2244 J - 1st decile
## 2245 J - 1st decile
## 2246 <NA>
## 2247 R - 2nd decile
## 2248 J - 1st decile
## 2249 D - 9th decile
## 2250 K - 7th decile
## 2251 K - 7th decile
## 2252 S - 6th decile
## 2253 P - 8th decile
## 2254 H - 10th decile
## 2255 S - 6th decile
## 2256 M - 4th decile
## 2257 P - 8th decile
## 2258 M - 4th decile
## 2259 C - 3rd decile
## 2260 K - 7th decile
## 2261 M - 4th decile
## 2262 D - 9th decile
## 2263 C - 3rd decile
## 2264 S - 6th decile
## 2265 J - 1st decile
## 2266 <NA>
## 2267 <NA>
## 2268 <NA>
## 2269 <NA>
## 2270 <NA>
## 2271 <NA>
## 2272 <NA>
## 2273 <NA>
## 2274 <NA>
## 2275 <NA>
## 2276 <NA>
## 2277 <NA>
## 2278 <NA>
## 2279 <NA>
## 2280 <NA>
## 2281 <NA>
## 2282 <NA>
## 2283 <NA>
## 2284 <NA>
## 2285 <NA>
## 2286 <NA>
## 2287 <NA>
## 2288 <NA>
## 2289 <NA>
## 2290 <NA>
## 2291 <NA>
## 2292 <NA>
## 2293 <NA>
## 2294 <NA>
## 2295 <NA>
## 2296 <NA>
## 2297 <NA>
## 2298 <NA>
## 2299 <NA>
## 2300 <NA>
## 2301 <NA>
## 2302 <NA>
## 2303 <NA>
## 2304 <NA>
## 2305 <NA>
## 2306 <NA>
## 2307 <NA>
## 2308 <NA>
## 2309 <NA>
## 2310 <NA>
## 2311 <NA>
## 2312 <NA>
## 2313 <NA>
## 2314 <NA>
## 2315 <NA>
## 2316 <NA>
## 2317 <NA>
## 2318 <NA>
## 2319 <NA>
## 2320 <NA>
## 2321 <NA>
## 2322 <NA>
## 2323 <NA>
## 2324 <NA>
## 2325 <NA>
## 2326 <NA>
## 2327 <NA>
## 2328 <NA>
## 2329 <NA>
## 2330 <NA>
## 2331 <NA>
## 2332 <NA>
## 2333 <NA>
## 2334 <NA>
## 2335 <NA>
## 2336 <NA>
## 2337 <NA>
## 2338 <NA>
## 2339 <NA>
## 2340 <NA>
## 2341 <NA>
## 2342 <NA>
## 2343 <NA>
## 2344 <NA>
## 2345 <NA>
## 2346 <NA>
## 2347 <NA>
## 2348 <NA>
## 2349 <NA>
## 2350 <NA>
## 2351 <NA>
## 2352 <NA>
## 2353 <NA>
## 2354 <NA>
## 2355 <NA>
## 2356 <NA>
## 2357 <NA>
## 2358 <NA>
## 2359 <NA>
## 2360 <NA>
## 2361 <NA>
## 2362 <NA>
## 2363 <NA>
## 2364 <NA>
## 2365 <NA>
## 2366 <NA>
## 2367 <NA>
## 2368 <NA>
## 2369 <NA>
## 2370 <NA>
## 2371 <NA>
## 2372 <NA>
## 2373 <NA>
## 2374 <NA>
## 2375 <NA>
## 2376 <NA>
## 2377 <NA>
## 2378 <NA>
## 2379 <NA>
## 2380 <NA>
## 2381 <NA>
## 2382 <NA>
## 2383 <NA>
## 2384 <NA>
## 2385 <NA>
## 2386 <NA>
## 2387 <NA>
## 2388 <NA>
## 2389 <NA>
## 2390 <NA>
## 2391 <NA>
## 2392 <NA>
## 2393 <NA>
## 2394 <NA>
## 2395 <NA>
## 2396 <NA>
## 2397 <NA>
## 2398 <NA>
## 2399 <NA>
## 2400 <NA>
## 2401 <NA>
## 2402 <NA>
## 2403 <NA>
## 2404 <NA>
## 2405 <NA>
## 2406 <NA>
## 2407 <NA>
## 2408 <NA>
## 2409 <NA>
## 2410 <NA>
## 2411 <NA>
## 2412 <NA>
## 2413 <NA>
## 2414 <NA>
## 2415 <NA>
## 2416 <NA>
## 2417 <NA>
## 2418 <NA>
## 2419 <NA>
## 2420 <NA>
## 2421 <NA>
## 2422 <NA>
## 2423 <NA>
## 2424 <NA>
## 2425 <NA>
## 2426 <NA>
## 2427 <NA>
## 2428 <NA>
## 2429 <NA>
## 2430 <NA>
## 2431 <NA>
## 2432 <NA>
## 2433 <NA>
## 2434 <NA>
## 2435 <NA>
## 2436 <NA>
## 2437 <NA>
## 2438 <NA>
## 2439 <NA>
## 2440 <NA>
## 2441 <NA>
## 2442 <NA>
## 2443 <NA>
## 2444 <NA>
## 2445 <NA>
## 2446 <NA>
## 2447 <NA>
## 2448 <NA>
## 2449 <NA>
## 2450 <NA>
## 2451 <NA>
## 2452 <NA>
## 2453 <NA>
## 2454 <NA>
## 2455 <NA>
## 2456 <NA>
## 2457 <NA>
## 2458 <NA>
## 2459 <NA>
## 2460 <NA>
## 2461 <NA>
## 2462 <NA>
## 2463 <NA>
## 2464 <NA>
## 2465 <NA>
## 2466 <NA>
## 2467 <NA>
## 2468 <NA>
## 2469 <NA>
## 2470 <NA>
## 2471 <NA>
## 2472 <NA>
## 2473 <NA>
## 2474 <NA>
## 2475 <NA>
## 2476 <NA>
## 2477 <NA>
## 2478 <NA>
## 2479 <NA>
## 2480 <NA>
## 2481 <NA>
## 2482 <NA>
## 2483 <NA>
## 2484 <NA>
## 2485 <NA>
## 2486 <NA>
## 2487 <NA>
## 2488 <NA>
## 2489 <NA>
## 2490 <NA>
## 2491 <NA>
## 2492 <NA>
## 2493 <NA>
## 2494 <NA>
## 2495 <NA>
## 2496 <NA>
## 2497 <NA>
## 2498 <NA>
## 2499 <NA>
## 2500 <NA>
## 2501 <NA>
## 2502 <NA>
## 2503 <NA>
## 2504 <NA>
## 2505 <NA>
## 2506 <NA>
## 2507 <NA>
## 2508 <NA>
## 2509 <NA>
## 2510 <NA>
## 2511 <NA>
## 2512 <NA>
## 2513 <NA>
## 2514 <NA>
## 2515 <NA>
## 2516 <NA>
## 2517 <NA>
## 2518 <NA>
## 2519 <NA>
## 2520 <NA>
## 2521 <NA>
## 2522 <NA>
## 2523 <NA>
## 2524 <NA>
## 2525 <NA>
## 2526 <NA>
## 2527 <NA>
## 2528 <NA>
## 2529 <NA>
## 2530 <NA>
## 2531 <NA>
## 2532 <NA>
## 2533 <NA>
## 2534 <NA>
## 2535 <NA>
## 2536 <NA>
## 2537 <NA>
## 2538 <NA>
## 2539 <NA>
## 2540 <NA>
## 2541 <NA>
## 2542 <NA>
## 2543 <NA>
## 2544 <NA>
## 2545 <NA>
## 2546 <NA>
## 2547 <NA>
## 2548 <NA>
## 2549 <NA>
## 2550 <NA>
## 2551 <NA>
## 2552 <NA>
## 2553 <NA>
## 2554 <NA>
## 2555 <NA>
## 2556 <NA>
## 2557 <NA>
## 2558 <NA>
## 2559 <NA>
## 2560 <NA>
## 2561 <NA>
## 2562 <NA>
## 2563 <NA>
## 2564 <NA>
## 2565 <NA>
## 2566 <NA>
## 2567 <NA>
## 2568 <NA>
## 2569 <NA>
## 2570 <NA>
## 2571 <NA>
## 2572 <NA>
## 2573 <NA>
## 2574 <NA>
## 2575 <NA>
## 2576 <NA>
## 2577 <NA>
## 2578 <NA>
## 2579 <NA>
## 2580 <NA>
## 2581 <NA>
## 2582 <NA>
## 2583 <NA>
## 2584 <NA>
## 2585 <NA>
## 2586 <NA>
## 2587 <NA>
## 2588 <NA>
## 2589 <NA>
## 2590 <NA>
## 2591 <NA>
## 2592 <NA>
## 2593 <NA>
## 2594 <NA>
## 2595 <NA>
## 2596 <NA>
## 2597 <NA>
## 2598 <NA>
## 2599 <NA>
## 2600 <NA>
## 2601 <NA>
## 2602 <NA>
## 2603 <NA>
## 2604 <NA>
## 2605 <NA>
## 2606 <NA>
## 2607 <NA>
## 2608 <NA>
## 2609 <NA>
## 2610 <NA>
## 2611 <NA>
## 2612 <NA>
## 2613 <NA>
## 2614 <NA>
## 2615 <NA>
## 2616 <NA>
## 2617 <NA>
## 2618 <NA>
## 2619 <NA>
## 2620 <NA>
## 2621 <NA>
## 2622 <NA>
## 2623 <NA>
## 2624 <NA>
## 2625 <NA>
## 2626 <NA>
## 2627 <NA>
## 2628 <NA>
## 2629 <NA>
## 2630 <NA>
## 2631 <NA>
## 2632 <NA>
## 2633 <NA>
## 2634 <NA>
## 2635 <NA>
## 2636 <NA>
## 2637 <NA>
## 2638 <NA>
## 2639 <NA>
## 2640 <NA>
## 2641 <NA>
## 2642 <NA>
## 2643 <NA>
## 2644 <NA>
## 2645 <NA>
## 2646 <NA>
## 2647 <NA>
## 2648 <NA>
## 2649 <NA>
## 2650 <NA>
## 2651 <NA>
## 2652 <NA>
## 2653 <NA>
## 2654 <NA>
## 2655 <NA>
## 2656 <NA>
## 2657 <NA>
## 2658 <NA>
## 2659 <NA>
## 2660 <NA>
## 2661 <NA>
## 2662 <NA>
## 2663 <NA>
## 2664 <NA>
## 2665 <NA>
## 2666 <NA>
## 2667 <NA>
## 2668 <NA>
## 2669 <NA>
## 2670 <NA>
## 2671 <NA>
## 2672 <NA>
## 2673 <NA>
## 2674 <NA>
## 2675 <NA>
## 2676 <NA>
## 2677 <NA>
## 2678 <NA>
## 2679 <NA>
## 2680 <NA>
## 2681 <NA>
## 2682 <NA>
## 2683 <NA>
## 2684 <NA>
## 2685 <NA>
## 2686 <NA>
## 2687 <NA>
## 2688 <NA>
## 2689 <NA>
## 2690 <NA>
## 2691 <NA>
## 2692 <NA>
## 2693 <NA>
## 2694 <NA>
## 2695 <NA>
## 2696 <NA>
## 2697 <NA>
## 2698 <NA>
## 2699 <NA>
## 2700 <NA>
## 2701 <NA>
## 2702 <NA>
## 2703 <NA>
## 2704 <NA>
## 2705 <NA>
## 2706 <NA>
## 2707 <NA>
## 2708 <NA>
## 2709 <NA>
## 2710 <NA>
## 2711 <NA>
## 2712 <NA>
## 2713 <NA>
## 2714 <NA>
## 2715 <NA>
## 2716 <NA>
## 2717 <NA>
## 2718 <NA>
## 2719 <NA>
## 2720 <NA>
## 2721 <NA>
## 2722 <NA>
## 2723 <NA>
## 2724 <NA>
## 2725 <NA>
## 2726 <NA>
## 2727 <NA>
## 2728 <NA>
## 2729 <NA>
## 2730 <NA>
## 2731 <NA>
## 2732 <NA>
## 2733 <NA>
## 2734 <NA>
## 2735 <NA>
## 2736 <NA>
## 2737 <NA>
## 2738 <NA>
## 2739 <NA>
## 2740 <NA>
## 2741 <NA>
## 2742 <NA>
## 2743 <NA>
## 2744 <NA>
## 2745 <NA>
## 2746 <NA>
## 2747 <NA>
## 2748 <NA>
## 2749 <NA>
## 2750 <NA>
## 2751 <NA>
## 2752 <NA>
## 2753 <NA>
## 2754 <NA>
## 2755 <NA>
## 2756 <NA>
## 2757 <NA>
## 2758 <NA>
## 2759 <NA>
## 2760 <NA>
## 2761 <NA>
## 2762 <NA>
## 2763 <NA>
## 2764 <NA>
## 2765 <NA>
## 2766 <NA>
## 2767 <NA>
## 2768 <NA>
## 2769 <NA>
## 2770 <NA>
## 2771 <NA>
## 2772 <NA>
## 2773 <NA>
## 2774 <NA>
## 2775 <NA>
## 2776 <NA>
## 2777 <NA>
## 2778 <NA>
## 2779 <NA>
## 2780 <NA>
## 2781 <NA>
## 2782 <NA>
## 2783 <NA>
## 2784 <NA>
## 2785 <NA>
## 2786 <NA>
## 2787 <NA>
## 2788 <NA>
## 2789 <NA>
## 2790 <NA>
## 2791 <NA>
## 2792 <NA>
## 2793 <NA>
## 2794 <NA>
## 2795 <NA>
## 2796 <NA>
## 2797 <NA>
## 2798 <NA>
## 2799 <NA>
## 2800 <NA>
## 2801 <NA>
## 2802 <NA>
## 2803 <NA>
## 2804 <NA>
## 2805 <NA>
## 2806 <NA>
## 2807 <NA>
## 2808 <NA>
## 2809 <NA>
## 2810 <NA>
## 2811 <NA>
## 2812 <NA>
## 2813 <NA>
## 2814 <NA>
## 2815 <NA>
## 2816 <NA>
## 2817 <NA>
## 2818 <NA>
## 2819 <NA>
## 2820 <NA>
## 2821 <NA>
## 2822 <NA>
## 2823 <NA>
## 2824 <NA>
## 2825 <NA>
## 2826 <NA>
## 2827 <NA>
## 2828 <NA>
## 2829 <NA>
## 2830 <NA>
## 2831 <NA>
## 2832 <NA>
## 2833 <NA>
## 2834 <NA>
## 2835 <NA>
## 2836 <NA>
## 2837 <NA>
## 2838 <NA>
## 2839 <NA>
## 2840 <NA>
## 2841 <NA>
## 2842 <NA>
## 2843 <NA>
## 2844 <NA>
## 2845 <NA>
## 2846 <NA>
## 2847 <NA>
## 2848 <NA>
## 2849 <NA>
## 2850 <NA>
## 2851 <NA>
## 2852 <NA>
## 2853 <NA>
## 2854 <NA>
## 2855 <NA>
## 2856 <NA>
## 2857 <NA>
## 2858 <NA>
## 2859 <NA>
## 2860 <NA>
## 2861 <NA>
## 2862 <NA>
## 2863 <NA>
## 2864 <NA>
## 2865 <NA>
## 2866 <NA>
## 2867 <NA>
## 2868 <NA>
## 2869 <NA>
## 2870 <NA>
## 2871 <NA>
## 2872 <NA>
## 2873 <NA>
## 2874 <NA>
## 2875 <NA>
## 2876 <NA>
## 2877 <NA>
## 2878 <NA>
## 2879 <NA>
## 2880 <NA>
## 2881 <NA>
## 2882 <NA>
## 2883 <NA>
## 2884 <NA>
## 2885 <NA>
## 2886 <NA>
## 2887 <NA>
## 2888 <NA>
## 2889 <NA>
## 2890 <NA>
## 2891 <NA>
## 2892 <NA>
## 2893 <NA>
## 2894 <NA>
## 2895 <NA>
## 2896 <NA>
## 2897 <NA>
## 2898 <NA>
## 2899 <NA>
## 2900 <NA>
## 2901 <NA>
## 2902 <NA>
## 2903 <NA>
## 2904 <NA>
## 2905 <NA>
## 2906 <NA>
## 2907 <NA>
## 2908 <NA>
## 2909 <NA>
## 2910 <NA>
## 2911 <NA>
## 2912 <NA>
## 2913 <NA>
## 2914 <NA>
## 2915 <NA>
## 2916 <NA>
## 2917 <NA>
## 2918 <NA>
## 2919 <NA>
## 2920 <NA>
## 2921 <NA>
## 2922 <NA>
## 2923 <NA>
## 2924 <NA>
## 2925 <NA>
## 2926 <NA>
## 2927 <NA>
## 2928 <NA>
## 2929 <NA>
## 2930 <NA>
## 2931 <NA>
## 2932 <NA>
## 2933 <NA>
## 2934 <NA>
## 2935 <NA>
## 2936 <NA>
## 2937 <NA>
## 2938 <NA>
## 2939 <NA>
## 2940 <NA>
## 2941 <NA>
## 2942 <NA>
## 2943 <NA>
## 2944 <NA>
## 2945 <NA>
## 2946 <NA>
## 2947 <NA>
## 2948 <NA>
## 2949 <NA>
## 2950 <NA>
## 2951 <NA>
## 2952 <NA>
## 2953 <NA>
## 2954 <NA>
## 2955 <NA>
## 2956 <NA>
## 2957 <NA>
## 2958 <NA>
## 2959 <NA>
## 2960 <NA>
## 2961 <NA>
## 2962 <NA>
## 2963 <NA>
## 2964 <NA>
## 2965 <NA>
## 2966 <NA>
## 2967 <NA>
## 2968 <NA>
## 2969 <NA>
## 2970 <NA>
## 2971 <NA>
## 2972 <NA>
## 2973 <NA>
## 2974 <NA>
## 2975 <NA>
## 2976 <NA>
## 2977 <NA>
## 2978 <NA>
## 2979 <NA>
## 2980 <NA>
## 2981 <NA>
## 2982 <NA>
## 2983 <NA>
## 2984 <NA>
## 2985 <NA>
## 2986 <NA>
## 2987 <NA>
## 2988 <NA>
## 2989 <NA>
## 2990 <NA>
## 2991 <NA>
## 2992 <NA>
## 2993 <NA>
## 2994 <NA>
## 2995 <NA>
## 2996 <NA>
## 2997 <NA>
## 2998 <NA>
## 2999 <NA>
## 3000 <NA>
## 3001 <NA>
## 3002 <NA>
## 3003 <NA>
## 3004 <NA>
## 3005 <NA>
## 3006 <NA>
## 3007 <NA>
## 3008 <NA>
## 3009 <NA>
## 3010 <NA>
## 3011 <NA>
## 3012 <NA>
## 3013 <NA>
## 3014 <NA>
## 3015 <NA>
## 3016 <NA>
## 3017 <NA>
## 3018 <NA>
## 3019 <NA>
## 3020 <NA>
## 3021 <NA>
## 3022 <NA>
## 3023 <NA>
## 3024 <NA>
## 3025 <NA>
## 3026 <NA>
## 3027 <NA>
## 3028 <NA>
## 3029 <NA>
## 3030 <NA>
## 3031 <NA>
## 3032 <NA>
## 3033 <NA>
## 3034 <NA>
## 3035 <NA>
## 3036 <NA>
## 3037 <NA>
## 3038 <NA>
## 3039 <NA>
## 3040 <NA>
## 3041 <NA>
## 3042 <NA>
## 3043 <NA>
## 3044 <NA>
## 3045 <NA>
## 3046 <NA>
## 3047 <NA>
## 3048 <NA>
## 3049 <NA>
## 3050 <NA>
## 3051 <NA>
## 3052 <NA>
## 3053 <NA>
## 3054 <NA>
## 3055 <NA>
## 3056 <NA>
## 3057 <NA>
## 3058 <NA>
## 3059 <NA>
## 3060 <NA>
## 3061 <NA>
## 3062 <NA>
## 3063 <NA>
## 3064 <NA>
## 3065 <NA>
## 3066 <NA>
## 3067 <NA>
## 3068 <NA>
## 3069 <NA>
## 3070 <NA>
## 3071 <NA>
## 3072 <NA>
## 3073 <NA>
## 3074 <NA>
## 3075 <NA>
## 3076 <NA>
## 3077 <NA>
## 3078 <NA>
## 3079 <NA>
## 3080 <NA>
## 3081 <NA>
## 3082 <NA>
## 3083 <NA>
## 3084 <NA>
## 3085 <NA>
## 3086 <NA>
## 3087 <NA>
## 3088 <NA>
## 3089 <NA>
## 3090 <NA>
## 3091 <NA>
## 3092 <NA>
## 3093 <NA>
## 3094 <NA>
## 3095 <NA>
## 3096 <NA>
## 3097 <NA>
## 3098 <NA>
## 3099 <NA>
## 3100 <NA>
## 3101 <NA>
## 3102 <NA>
## 3103 <NA>
## 3104 <NA>
## 3105 <NA>
## 3106 <NA>
## 3107 <NA>
## 3108 <NA>
## 3109 <NA>
## 3110 <NA>
## 3111 <NA>
## 3112 <NA>
## 3113 <NA>
## 3114 <NA>
## 3115 <NA>
## 3116 <NA>
## 3117 <NA>
## 3118 <NA>
## 3119 <NA>
## 3120 <NA>
## 3121 <NA>
## 3122 <NA>
## 3123 <NA>
## 3124 <NA>
## 3125 <NA>
## 3126 <NA>
## 3127 <NA>
## 3128 <NA>
## 3129 <NA>
## 3130 <NA>
## 3131 <NA>
## 3132 <NA>
## 3133 <NA>
## 3134 <NA>
## 3135 <NA>
## 3136 <NA>
## 3137 <NA>
## 3138 <NA>
## 3139 <NA>
## 3140 <NA>
## 3141 <NA>
## 3142 <NA>
## 3143 <NA>
## 3144 <NA>
## 3145 <NA>
## 3146 <NA>
## 3147 <NA>
## 3148 <NA>
## 3149 <NA>
## 3150 <NA>
## 3151 <NA>
## 3152 <NA>
## 3153 <NA>
## 3154 <NA>
## 3155 <NA>
## 3156 <NA>
## 3157 <NA>
## 3158 <NA>
## 3159 <NA>
## 3160 <NA>
## 3161 <NA>
## 3162 <NA>
## 3163 <NA>
## 3164 <NA>
## 3165 <NA>
## 3166 <NA>
## 3167 <NA>
## 3168 <NA>
## 3169 <NA>
## 3170 <NA>
## 3171 <NA>
## 3172 <NA>
## 3173 <NA>
## 3174 <NA>
## 3175 <NA>
## 3176 <NA>
## 3177 <NA>
## 3178 <NA>
## 3179 <NA>
## 3180 <NA>
## 3181 <NA>
## 3182 <NA>
## 3183 <NA>
## 3184 <NA>
## 3185 <NA>
## 3186 <NA>
## 3187 <NA>
## 3188 <NA>
## 3189 <NA>
## 3190 <NA>
## 3191 <NA>
## 3192 <NA>
## 3193 <NA>
## 3194 <NA>
## 3195 <NA>
## 3196 <NA>
## 3197 <NA>
## 3198 <NA>
## 3199 <NA>
## 3200 <NA>
## 3201 <NA>
## 3202 <NA>
## 3203 <NA>
## 3204 <NA>
## 3205 <NA>
## 3206 <NA>
## 3207 <NA>
## 3208 <NA>
## 3209 <NA>
## 3210 <NA>
## 3211 <NA>
## 3212 <NA>
## 3213 <NA>
## 3214 <NA>
## 3215 <NA>
## 3216 <NA>
## 3217 <NA>
## 3218 <NA>
## 3219 <NA>
## 3220 <NA>
## 3221 <NA>
## 3222 <NA>
## 3223 <NA>
## 3224 <NA>
## 3225 <NA>
## 3226 <NA>
## 3227 <NA>
## 3228 <NA>
## 3229 <NA>
## 3230 <NA>
## 3231 <NA>
## 3232 <NA>
## 3233 <NA>
## 3234 <NA>
## 3235 <NA>
## 3236 <NA>
## 3237 <NA>
## 3238 <NA>
## 3239 <NA>
## 3240 <NA>
## 3241 <NA>
## 3242 <NA>
## 3243 <NA>
## 3244 <NA>
## 3245 <NA>
## 3246 <NA>
## 3247 <NA>
## 3248 <NA>
## 3249 <NA>
## 3250 <NA>
## 3251 <NA>
## 3252 <NA>
## 3253 <NA>
## 3254 <NA>
## 3255 <NA>
## 3256 <NA>
## 3257 <NA>
## 3258 <NA>
## 3259 <NA>
## 3260 <NA>
## 3261 <NA>
## 3262 <NA>
## 3263 <NA>
## 3264 <NA>
## 3265 <NA>
## 3266 <NA>
## 3267 <NA>
## 3268 <NA>
## 3269 <NA>
## 3270 <NA>
## 3271 <NA>
## 3272 <NA>
## 3273 <NA>
## 3274 <NA>
## 3275 <NA>
## 3276 <NA>
## 3277 <NA>
## 3278 <NA>
## 3279 <NA>
## 3280 <NA>
## 3281 <NA>
## 3282 <NA>
## 3283 <NA>
## 3284 <NA>
## 3285 <NA>
## 3286 <NA>
## 3287 <NA>
## 3288 <NA>
## 3289 <NA>
## 3290 <NA>
## 3291 <NA>
## 3292 <NA>
## 3293 <NA>
## 3294 <NA>
## 3295 <NA>
## 3296 <NA>
## 3297 <NA>
## 3298 <NA>
## 3299 <NA>
## 3300 <NA>
## 3301 <NA>
## 3302 <NA>
## 3303 <NA>
## 3304 <NA>
## 3305 <NA>
## 3306 <NA>
## 3307 <NA>
## 3308 <NA>
## 3309 <NA>
## 3310 <NA>
## 3311 <NA>
## 3312 <NA>
## 3313 <NA>
## 3314 <NA>
## 3315 <NA>
## 3316 <NA>
## 3317 <NA>
## 3318 <NA>
## 3319 <NA>
## 3320 <NA>
## 3321 <NA>
## 3322 <NA>
## 3323 <NA>
## 3324 <NA>
## 3325 <NA>
## 3326 <NA>
## 3327 <NA>
## 3328 <NA>
## 3329 <NA>
## 3330 <NA>
## 3331 <NA>
## 3332 <NA>
## 3333 <NA>
## 3334 <NA>
## 3335 <NA>
## 3336 <NA>
## 3337 <NA>
## 3338 <NA>
## 3339 <NA>
## 3340 <NA>
## 3341 <NA>
## 3342 <NA>
## 3343 <NA>
## 3344 <NA>
## 3345 <NA>
## 3346 <NA>
## 3347 <NA>
## 3348 <NA>
## 3349 <NA>
## 3350 <NA>
## 3351 <NA>
## 3352 <NA>
## 3353 <NA>
## 3354 <NA>
## 3355 <NA>
## 3356 <NA>
## 3357 <NA>
## 3358 <NA>
## 3359 <NA>
## 3360 <NA>
## 3361 <NA>
## 3362 <NA>
## 3363 <NA>
## 3364 <NA>
## 3365 <NA>
## 3366 <NA>
## 3367 <NA>
## 3368 <NA>
## 3369 <NA>
## 3370 <NA>
## 3371 <NA>
## 3372 <NA>
## 3373 <NA>
## 3374 <NA>
## 3375 <NA>
## 3376 <NA>
## 3377 <NA>
## 3378 <NA>
## 3379 <NA>
## 3380 <NA>
## 3381 <NA>
## 3382 <NA>
## 3383 <NA>
## 3384 <NA>
## 3385 <NA>
## 3386 <NA>
## 3387 <NA>
## 3388 <NA>
## 3389 <NA>
## 3390 <NA>
## 3391 <NA>
## 3392 <NA>
## 3393 <NA>
## 3394 <NA>
## 3395 <NA>
## 3396 <NA>
## 3397 <NA>
## 3398 <NA>
## 3399 <NA>
## 3400 <NA>
## 3401 <NA>
## 3402 <NA>
## 3403 <NA>
## 3404 <NA>
## 3405 <NA>
## 3406 <NA>
## 3407 <NA>
## 3408 <NA>
## 3409 <NA>
## 3410 <NA>
## 3411 <NA>
## 3412 <NA>
## 3413 <NA>
## 3414 <NA>
## 3415 <NA>
## 3416 <NA>
## 3417 <NA>
## 3418 <NA>
## 3419 <NA>
## 3420 <NA>
## 3421 <NA>
## 3422 <NA>
## 3423 <NA>
## 3424 <NA>
## 3425 <NA>
## 3426 <NA>
## 3427 <NA>
## 3428 <NA>
## 3429 <NA>
## 3430 <NA>
## 3431 <NA>
## 3432 <NA>
## 3433 <NA>
## 3434 <NA>
## 3435 <NA>
## 3436 <NA>
## 3437 <NA>
## 3438 <NA>
## 3439 <NA>
## 3440 <NA>
## 3441 <NA>
## 3442 <NA>
## 3443 <NA>
## 3444 <NA>
## 3445 <NA>
## 3446 <NA>
## 3447 <NA>
## 3448 <NA>
## 3449 <NA>
## 3450 <NA>
## 3451 <NA>
## 3452 <NA>
## 3453 <NA>
## 3454 <NA>
## 3455 <NA>
## 3456 <NA>
## 3457 <NA>
## 3458 <NA>
## 3459 <NA>
## 3460 <NA>
## 3461 <NA>
## 3462 <NA>
## 3463 <NA>
## 3464 <NA>
## 3465 <NA>
## 3466 <NA>
## 3467 <NA>
## 3468 <NA>
## 3469 <NA>
## 3470 <NA>
## 3471 <NA>
## 3472 <NA>
## 3473 <NA>
## 3474 <NA>
## 3475 <NA>
## 3476 <NA>
## 3477 <NA>
## 3478 <NA>
## 3479 <NA>
## 3480 <NA>
## 3481 <NA>
## 3482 <NA>
## 3483 <NA>
## 3484 <NA>
## 3485 <NA>
## 3486 <NA>
## 3487 <NA>
## 3488 <NA>
## 3489 <NA>
## 3490 <NA>
## 3491 <NA>
## 3492 <NA>
## 3493 <NA>
## 3494 <NA>
## 3495 <NA>
## 3496 <NA>
## 3497 <NA>
## 3498 <NA>
## 3499 <NA>
## 3500 <NA>
## 3501 <NA>
## 3502 <NA>
## 3503 <NA>
## 3504 <NA>
## 3505 <NA>
## 3506 <NA>
## 3507 <NA>
## 3508 <NA>
## 3509 <NA>
## 3510 <NA>
## 3511 <NA>
## 3512 <NA>
## 3513 <NA>
## 3514 <NA>
## 3515 <NA>
## 3516 <NA>
## 3517 <NA>
## 3518 <NA>
## 3519 <NA>
## 3520 <NA>
## 3521 <NA>
## 3522 <NA>
## 3523 <NA>
## 3524 <NA>
## 3525 <NA>
## 3526 <NA>
## 3527 <NA>
## 3528 <NA>
## 3529 <NA>
## 3530 <NA>
## 3531 <NA>
## 3532 <NA>
## 3533 <NA>
## 3534 <NA>
## 3535 <NA>
## 3536 <NA>
## 3537 <NA>
## 3538 <NA>
## 3539 <NA>
## 3540 <NA>
## 3541 <NA>
## 3542 <NA>
## 3543 <NA>
## 3544 <NA>
## 3545 <NA>
## 3546 <NA>
## 3547 <NA>
## 3548 <NA>
## 3549 <NA>
## 3550 <NA>
## 3551 <NA>
## 3552 <NA>
## 3553 <NA>
## 3554 <NA>
## 3555 <NA>
## 3556 <NA>
## 3557 <NA>
## 3558 <NA>
## 3559 <NA>
## 3560 <NA>
## 3561 <NA>
## 3562 <NA>
## 3563 <NA>
## 3564 <NA>
## 3565 <NA>
## 3566 <NA>
## 3567 <NA>
## 3568 <NA>
## 3569 <NA>
## 3570 <NA>
## 3571 <NA>
## 3572 <NA>
## 3573 <NA>
## 3574 <NA>
## 3575 <NA>
## 3576 <NA>
## 3577 <NA>
## 3578 <NA>
## 3579 <NA>
## 3580 <NA>
## 3581 <NA>
## 3582 <NA>
## 3583 <NA>
## 3584 <NA>
## 3585 <NA>
## 3586 <NA>
## 3587 <NA>
## 3588 <NA>
## 3589 <NA>
## 3590 <NA>
## 3591 <NA>
## 3592 <NA>
## 3593 <NA>
## 3594 <NA>
## 3595 <NA>
## 3596 <NA>
## 3597 <NA>
## 3598 <NA>
## 3599 <NA>
## 3600 <NA>
## 3601 <NA>
## 3602 <NA>
## 3603 <NA>
## 3604 <NA>
## 3605 <NA>
## 3606 <NA>
## 3607 <NA>
## 3608 <NA>
## 3609 <NA>
## 3610 <NA>
## 3611 <NA>
## 3612 <NA>
## 3613 <NA>
## 3614 <NA>
## 3615 <NA>
## 3616 <NA>
## 3617 <NA>
## 3618 <NA>
## 3619 <NA>
## 3620 <NA>
## 3621 <NA>
## 3622 <NA>
## 3623 <NA>
## 3624 <NA>
## 3625 <NA>
## 3626 <NA>
## 3627 <NA>
## 3628 <NA>
## 3629 <NA>
## 3630 <NA>
## 3631 <NA>
## 3632 <NA>
## 3633 <NA>
## 3634 <NA>
## 3635 <NA>
## 3636 <NA>
## 3637 <NA>
## 3638 <NA>
## 3639 <NA>
## 3640 <NA>
## 3641 <NA>
## 3642 <NA>
## 3643 <NA>
## 3644 <NA>
## 3645 <NA>
## 3646 <NA>
## 3647 <NA>
## 3648 <NA>
## 3649 <NA>
## 3650 <NA>
## 3651 <NA>
## 3652 <NA>
## 3653 <NA>
## 3654 <NA>
## 3655 <NA>
## 3656 <NA>
## 3657 <NA>
## 3658 <NA>
## 3659 <NA>
## 3660 <NA>
## 3661 <NA>
## 3662 <NA>
## 3663 <NA>
## 3664 <NA>
## 3665 <NA>
## 3666 <NA>
## 3667 <NA>
## 3668 <NA>
## 3669 <NA>
## 3670 <NA>
## 3671 <NA>
## 3672 <NA>
## 3673 <NA>
## 3674 <NA>
## 3675 <NA>
## 3676 <NA>
## 3677 <NA>
## 3678 <NA>
## 3679 <NA>
## 3680 <NA>
## 3681 <NA>
## 3682 <NA>
## 3683 <NA>
## 3684 <NA>
## 3685 <NA>
## 3686 <NA>
## 3687 <NA>
## 3688 <NA>
## 3689 <NA>
## 3690 <NA>
## 3691 <NA>
## 3692 <NA>
## 3693 <NA>
## 3694 <NA>
## 3695 <NA>
## 3696 <NA>
## 3697 <NA>
## 3698 <NA>
## 3699 <NA>
## 3700 <NA>
## 3701 <NA>
## 3702 <NA>
## 3703 <NA>
## 3704 <NA>
## 3705 <NA>
## 3706 <NA>
## 3707 <NA>
## 3708 <NA>
## 3709 <NA>
## 3710 <NA>
## 3711 <NA>
## 3712 <NA>
## 3713 <NA>
## 3714 <NA>
## 3715 <NA>
## 3716 <NA>
## 3717 <NA>
## 3718 <NA>
## 3719 <NA>
## 3720 <NA>
## 3721 <NA>
## 3722 <NA>
## 3723 <NA>
## 3724 <NA>
## 3725 <NA>
## 3726 <NA>
## 3727 <NA>
## 3728 <NA>
## 3729 <NA>
## 3730 <NA>
## 3731 <NA>
## 3732 <NA>
## 3733 <NA>
## 3734 <NA>
## 3735 <NA>
## 3736 <NA>
## 3737 <NA>
## 3738 <NA>
## 3739 <NA>
## 3740 <NA>
## 3741 <NA>
## 3742 <NA>
## 3743 <NA>
## 3744 <NA>
## 3745 <NA>
## 3746 <NA>
## 3747 <NA>
## 3748 <NA>
## 3749 <NA>
## 3750 <NA>
## 3751 <NA>
## 3752 <NA>
## 3753 <NA>
## 3754 <NA>
## 3755 <NA>
## 3756 <NA>
## 3757 <NA>
## 3758 <NA>
## 3759 <NA>
## 3760 <NA>
## 3761 <NA>
## 3762 <NA>
## 3763 <NA>
## 3764 <NA>
## 3765 <NA>
## 3766 <NA>
## 3767 <NA>
## 3768 <NA>
## 3769 <NA>
## 3770 <NA>
## 3771 <NA>
## 3772 <NA>
## 3773 <NA>
## 3774 <NA>
## 3775 <NA>
## 3776 <NA>
## 3777 <NA>
## 3778 <NA>
## 3779 <NA>
## 3780 <NA>
## 3781 <NA>
## 3782 <NA>
## 3783 <NA>
## 3784 <NA>
## 3785 <NA>
## 3786 <NA>
## 3787 <NA>
## 3788 <NA>
## 3789 <NA>
## 3790 <NA>
## 3791 <NA>
## 3792 <NA>
## 3793 <NA>
## 3794 <NA>
## 3795 <NA>
## 3796 <NA>
## 3797 <NA>
## 3798 <NA>
## 3799 <NA>
## 3800 <NA>
## 3801 <NA>
## 3802 <NA>
## 3803 <NA>
## 3804 <NA>
## 3805 <NA>
## 3806 <NA>
## 3807 <NA>
## 3808 <NA>
## 3809 <NA>
## 3810 <NA>
## 3811 <NA>
## 3812 <NA>
## 3813 <NA>
## 3814 <NA>
## 3815 <NA>
## 3816 <NA>
## 3817 <NA>
## 3818 <NA>
## 3819 <NA>
## 3820 <NA>
## 3821 <NA>
## 3822 <NA>
## 3823 <NA>
## 3824 <NA>
## 3825 <NA>
## 3826 <NA>
## 3827 <NA>
## 3828 <NA>
## 3829 <NA>
## 3830 <NA>
## 3831 <NA>
## 3832 <NA>
## 3833 <NA>
## 3834 <NA>
## 3835 <NA>
## 3836 <NA>
## 3837 <NA>
## 3838 <NA>
## 3839 <NA>
## 3840 <NA>
## 3841 <NA>
## 3842 <NA>
## 3843 <NA>
## 3844 <NA>
## 3845 <NA>
## 3846 <NA>
## 3847 <NA>
## 3848 <NA>
## 3849 <NA>
## 3850 <NA>
## 3851 <NA>
## 3852 <NA>
## 3853 <NA>
## 3854 <NA>
## 3855 <NA>
## 3856 <NA>
## 3857 <NA>
## 3858 <NA>
## 3859 <NA>
## 3860 <NA>
## 3861 <NA>
## 3862 <NA>
## 3863 <NA>
## 3864 <NA>
## 3865 <NA>
## 3866 <NA>
## 3867 <NA>
## 3868 <NA>
## 3869 <NA>
## 3870 <NA>
## 3871 <NA>
## 3872 <NA>
## 3873 <NA>
## 3874 <NA>
## 3875 <NA>
## 3876 <NA>
## 3877 <NA>
## 3878 <NA>
## 3879 <NA>
## 3880 <NA>
## 3881 <NA>
## 3882 <NA>
## 3883 <NA>
## 3884 <NA>
## 3885 <NA>
## 3886 <NA>
## 3887 <NA>
## 3888 <NA>
## 3889 <NA>
## 3890 <NA>
## 3891 <NA>
## 3892 <NA>
## 3893 <NA>
## 3894 <NA>
## 3895 <NA>
## 3896 <NA>
## 3897 <NA>
## 3898 <NA>
## 3899 <NA>
## 3900 <NA>
## 3901 <NA>
## 3902 <NA>
## 3903 <NA>
## 3904 <NA>
## 3905 <NA>
## 3906 <NA>
## 3907 <NA>
## 3908 <NA>
## 3909 <NA>
## 3910 <NA>
## 3911 <NA>
## 3912 <NA>
## 3913 <NA>
## 3914 <NA>
## 3915 <NA>
## 3916 <NA>
## 3917 <NA>
## 3918 <NA>
## 3919 <NA>
## 3920 <NA>
## 3921 <NA>
## 3922 <NA>
## 3923 <NA>
## 3924 <NA>
## 3925 <NA>
## 3926 <NA>
## 3927 <NA>
## 3928 <NA>
## 3929 <NA>
## 3930 <NA>
## 3931 <NA>
## 3932 <NA>
## 3933 <NA>
## 3934 <NA>
## 3935 <NA>
## 3936 <NA>
## 3937 <NA>
## 3938 <NA>
## 3939 <NA>
## 3940 <NA>
## 3941 <NA>
## 3942 <NA>
## 3943 <NA>
## 3944 <NA>
## 3945 <NA>
## 3946 <NA>
## 3947 <NA>
## 3948 <NA>
## 3949 <NA>
## 3950 <NA>
## 3951 <NA>
## 3952 <NA>
## 3953 <NA>
## 3954 <NA>
## 3955 <NA>
## 3956 <NA>
## 3957 <NA>
## 3958 <NA>
## 3959 <NA>
## 3960 <NA>
## 3961 <NA>
## 3962 <NA>
## 3963 <NA>
## 3964 <NA>
## 3965 <NA>
## 3966 <NA>
## 3967 <NA>
## 3968 <NA>
## 3969 <NA>
## 3970 <NA>
## 3971 <NA>
## 3972 <NA>
## 3973 <NA>
## 3974 <NA>
## 3975 <NA>
## 3976 <NA>
## 3977 <NA>
## 3978 <NA>
## 3979 <NA>
## 3980 <NA>
## 3981 <NA>
## 3982 <NA>
## 3983 <NA>
## 3984 <NA>
## 3985 <NA>
## 3986 <NA>
## 3987 <NA>
## 3988 <NA>
## 3989 <NA>
## 3990 <NA>
## 3991 <NA>
## 3992 <NA>
## 3993 <NA>
## 3994 <NA>
## 3995 <NA>
## 3996 <NA>
## 3997 <NA>
## 3998 <NA>
## 3999 <NA>
## 4000 <NA>
## 4001 <NA>
## 4002 <NA>
## 4003 <NA>
## 4004 <NA>
## 4005 <NA>
## 4006 <NA>
## 4007 <NA>
## 4008 <NA>
## 4009 <NA>
## 4010 <NA>
## 4011 <NA>
## 4012 <NA>
## 4013 <NA>
## 4014 <NA>
## 4015 <NA>
## 4016 <NA>
## 4017 <NA>
## 4018 <NA>
## 4019 <NA>
## 4020 <NA>
## 4021 <NA>
## 4022 <NA>
## 4023 <NA>
## 4024 <NA>
## 4025 <NA>
## 4026 <NA>
## 4027 <NA>
## 4028 <NA>
## 4029 <NA>
## 4030 <NA>
## 4031 <NA>
## 4032 <NA>
## 4033 <NA>
## 4034 <NA>
## 4035 <NA>
## 4036 <NA>
## 4037 <NA>
## 4038 <NA>
## 4039 <NA>
## 4040 <NA>
## 4041 <NA>
## 4042 <NA>
## 4043 <NA>
## 4044 <NA>
## 4045 <NA>
## 4046 <NA>
## 4047 <NA>
## 4048 <NA>
## 4049 <NA>
## 4050 <NA>
## 4051 <NA>
## 4052 <NA>
## 4053 <NA>
## 4054 <NA>
## 4055 <NA>
## 4056 <NA>
## 4057 <NA>
## 4058 <NA>
## 4059 <NA>
## 4060 <NA>
## 4061 <NA>
## 4062 <NA>
## 4063 <NA>
## 4064 <NA>
## 4065 <NA>
## 4066 <NA>
## 4067 <NA>
## 4068 <NA>
## 4069 <NA>
## 4070 <NA>
## 4071 <NA>
## 4072 <NA>
## 4073 <NA>
## 4074 <NA>
## 4075 <NA>
## 4076 <NA>
## 4077 <NA>
## 4078 <NA>
## 4079 <NA>
## 4080 <NA>
## 4081 <NA>
## 4082 <NA>
## 4083 <NA>
## 4084 <NA>
## 4085 <NA>
## 4086 <NA>
## 4087 <NA>
## 4088 <NA>
## 4089 <NA>
## 4090 <NA>
## 4091 <NA>
## 4092 <NA>
## 4093 <NA>
## 4094 <NA>
## 4095 <NA>
## 4096 <NA>
## 4097 <NA>
## 4098 <NA>
## 4099 <NA>
## 4100 <NA>
## 4101 <NA>
## 4102 <NA>
## 4103 <NA>
## 4104 <NA>
## 4105 <NA>
## 4106 <NA>
## 4107 <NA>
## 4108 <NA>
## 4109 <NA>
## 4110 <NA>
## 4111 <NA>
## 4112 <NA>
## 4113 <NA>
## 4114 <NA>
## 4115 <NA>
## 4116 <NA>
## 4117 <NA>
## 4118 <NA>
## 4119 <NA>
## 4120 <NA>
## 4121 <NA>
## 4122 <NA>
## 4123 <NA>
## 4124 <NA>
## 4125 <NA>
## 4126 <NA>
## 4127 <NA>
## 4128 <NA>
## 4129 <NA>
## 4130 <NA>
## 4131 <NA>
## 4132 <NA>
## 4133 <NA>
## 4134 <NA>
## 4135 <NA>
## 4136 <NA>
## 4137 <NA>
## 4138 <NA>
## 4139 <NA>
## 4140 <NA>
## 4141 <NA>
## 4142 <NA>
## 4143 <NA>
## 4144 <NA>
## 4145 <NA>
## 4146 <NA>
## 4147 <NA>
## 4148 <NA>
## 4149 <NA>
## 4150 <NA>
## 4151 <NA>
## 4152 <NA>
## 4153 <NA>
## 4154 <NA>
## 4155 <NA>
## 4156 <NA>
## 4157 <NA>
## 4158 <NA>
## 4159 <NA>
## 4160 <NA>
## 4161 <NA>
## 4162 <NA>
## 4163 <NA>
## 4164 <NA>
## 4165 <NA>
## 4166 <NA>
## 4167 <NA>
## 4168 <NA>
## 4169 <NA>
## 4170 <NA>
## 4171 <NA>
## 4172 <NA>
## 4173 <NA>
## 4174 <NA>
## 4175 <NA>
## 4176 <NA>
## 4177 <NA>
## 4178 <NA>
## 4179 <NA>
## 4180 <NA>
## 4181 <NA>
## 4182 <NA>
## 4183 <NA>
## 4184 <NA>
## 4185 <NA>
## 4186 <NA>
## 4187 <NA>
## 4188 <NA>
## 4189 <NA>
## 4190 <NA>
## 4191 <NA>
## 4192 <NA>
## 4193 <NA>
## 4194 <NA>
## 4195 <NA>
## 4196 <NA>
## 4197 <NA>
## 4198 <NA>
## 4199 <NA>
## 4200 <NA>
## 4201 <NA>
## 4202 <NA>
## 4203 <NA>
## 4204 <NA>
## 4205 <NA>
## 4206 <NA>
## 4207 <NA>
## 4208 <NA>
## 4209 <NA>
## 4210 <NA>
## 4211 <NA>
## 4212 <NA>
## 4213 <NA>
## 4214 <NA>
## 4215 <NA>
## 4216 <NA>
## 4217 <NA>
## 4218 <NA>
## 4219 <NA>
## 4220 <NA>
## 4221 <NA>
## 4222 <NA>
## 4223 <NA>
## 4224 <NA>
## 4225 <NA>
## 4226 <NA>
## 4227 <NA>
## 4228 <NA>
## 4229 <NA>
## 4230 <NA>
## 4231 <NA>
## 4232 <NA>
## 4233 <NA>
## 4234 <NA>
## 4235 <NA>
## 4236 <NA>
## 4237 <NA>
## 4238 <NA>
## 4239 <NA>
## 4240 <NA>
## 4241 <NA>
## 4242 <NA>
## 4243 <NA>
## 4244 <NA>
## 4245 <NA>
## 4246 <NA>
## 4247 <NA>
## 4248 <NA>
## 4249 <NA>
## 4250 <NA>
## 4251 <NA>
## 4252 <NA>
## 4253 <NA>
## 4254 <NA>
## 4255 <NA>
## 4256 <NA>
## 4257 <NA>
## 4258 <NA>
## 4259 <NA>
## 4260 <NA>
## 4261 <NA>
## 4262 <NA>
## 4263 <NA>
## 4264 <NA>
## 4265 <NA>
## 4266 <NA>
## 4267 <NA>
## 4268 <NA>
## 4269 <NA>
## 4270 <NA>
## 4271 <NA>
## 4272 <NA>
## 4273 <NA>
## 4274 <NA>
## 4275 <NA>
## 4276 <NA>
## 4277 <NA>
## 4278 <NA>
## 4279 <NA>
## 4280 <NA>
## 4281 <NA>
## 4282 <NA>
## 4283 <NA>
## 4284 <NA>
## 4285 <NA>
## 4286 <NA>
## 4287 <NA>
## 4288 <NA>
## 4289 <NA>
## 4290 <NA>
## 4291 <NA>
## 4292 <NA>
## 4293 <NA>
## 4294 <NA>
## 4295 <NA>
## 4296 <NA>
## 4297 <NA>
## 4298 <NA>
## 4299 <NA>
## 4300 <NA>
## 4301 <NA>
## 4302 <NA>
## 4303 <NA>
## 4304 <NA>
## 4305 <NA>
## 4306 <NA>
## 4307 <NA>
## 4308 <NA>
## 4309 <NA>
## 4310 <NA>
## 4311 <NA>
## 4312 <NA>
## 4313 <NA>
## 4314 <NA>
## 4315 <NA>
## 4316 <NA>
## 4317 <NA>
## 4318 <NA>
## 4319 <NA>
## 4320 <NA>
## 4321 <NA>
## 4322 <NA>
## 4323 <NA>
## 4324 <NA>
## 4325 <NA>
## 4326 <NA>
## 4327 <NA>
## 4328 <NA>
## 4329 <NA>
## 4330 <NA>
## 4331 <NA>
## 4332 <NA>
## 4333 <NA>
## 4334 <NA>
## 4335 <NA>
## 4336 <NA>
## 4337 <NA>
## 4338 <NA>
## 4339 <NA>
## 4340 <NA>
## 4341 <NA>
## 4342 <NA>
## 4343 <NA>
## 4344 <NA>
## 4345 <NA>
## 4346 <NA>
## 4347 <NA>
## 4348 <NA>
## 4349 <NA>
## 4350 <NA>
## 4351 <NA>
## 4352 <NA>
## 4353 <NA>
## 4354 <NA>
## 4355 <NA>
## 4356 <NA>
## 4357 <NA>
## 4358 <NA>
## 4359 <NA>
## 4360 <NA>
## 4361 <NA>
## 4362 <NA>
## 4363 <NA>
## 4364 <NA>
## 4365 <NA>
## 4366 <NA>
## 4367 <NA>
## 4368 <NA>
## 4369 <NA>
## 4370 <NA>
## 4371 <NA>
## 4372 <NA>
## 4373 <NA>
## 4374 <NA>
## 4375 <NA>
## 4376 <NA>
## 4377 <NA>
## 4378 <NA>
## 4379 <NA>
## 4380 <NA>
## 4381 <NA>
## 4382 <NA>
## 4383 <NA>
## 4384 <NA>
## 4385 <NA>
## 4386 <NA>
## 4387 <NA>
## 4388 <NA>
## 4389 <NA>
## 4390 <NA>
## 4391 <NA>
## 4392 <NA>
## 4393 <NA>
## 4394 <NA>
## 4395 <NA>
## 4396 <NA>
## 4397 <NA>
## 4398 <NA>
## 4399 <NA>
## 4400 <NA>
## 4401 <NA>
## 4402 <NA>
## 4403 <NA>
## 4404 <NA>
## 4405 <NA>
## 4406 <NA>
## 4407 <NA>
## 4408 <NA>
## 4409 <NA>
## 4410 <NA>
## 4411 <NA>
## 4412 <NA>
## 4413 <NA>
## 4414 <NA>
## 4415 <NA>
## 4416 <NA>
## 4417 <NA>
## 4418 <NA>
## 4419 <NA>
## 4420 <NA>
## 4421 <NA>
## 4422 <NA>
## 4423 <NA>
## 4424 <NA>
## 4425 <NA>
## 4426 <NA>
## 4427 <NA>
## 4428 <NA>
## 4429 <NA>
## 4430 <NA>
## 4431 <NA>
## 4432 <NA>
## 4433 <NA>
## 4434 <NA>
## 4435 <NA>
## 4436 <NA>
## 4437 <NA>
## 4438 <NA>
## 4439 <NA>
## 4440 <NA>
## 4441 <NA>
## 4442 <NA>
## 4443 <NA>
## 4444 <NA>
## 4445 <NA>
## 4446 <NA>
## 4447 <NA>
## 4448 <NA>
## 4449 <NA>
## 4450 <NA>
## 4451 <NA>
## 4452 <NA>
## 4453 <NA>
## 4454 <NA>
## 4455 <NA>
## 4456 <NA>
## 4457 <NA>
## 4458 <NA>
## 4459 <NA>
## 4460 <NA>
## 4461 <NA>
## 4462 <NA>
## 4463 <NA>
## 4464 <NA>
## 4465 <NA>
## 4466 <NA>
## 4467 <NA>
## 4468 <NA>
## 4469 <NA>
## 4470 <NA>
## 4471 <NA>
## 4472 <NA>
## 4473 <NA>
## 4474 <NA>
## 4475 <NA>
## 4476 <NA>
## 4477 <NA>
## 4478 <NA>
## 4479 <NA>
## 4480 <NA>
## 4481 <NA>
## 4482 <NA>
## 4483 <NA>
## 4484 <NA>
## 4485 <NA>
## 4486 <NA>
## 4487 <NA>
## 4488 <NA>
## 4489 <NA>
## 4490 <NA>
## 4491 <NA>
## 4492 <NA>
## 4493 <NA>
## 4494 <NA>
## 4495 <NA>
## 4496 <NA>
## 4497 <NA>
## 4498 <NA>
## 4499 <NA>
## 4500 <NA>
## 4501 <NA>
## 4502 <NA>
## 4503 <NA>
## 4504 <NA>
## 4505 <NA>
## 4506 <NA>
## 4507 <NA>
## 4508 <NA>
## 4509 <NA>
## 4510 <NA>
## 4511 <NA>
## 4512 <NA>
## 4513 <NA>
## 4514 <NA>
## 4515 <NA>
## 4516 <NA>
## 4517 <NA>
## 4518 <NA>
## 4519 <NA>
## 4520 <NA>
## 4521 <NA>
## 4522 <NA>
## 4523 <NA>
## 4524 <NA>
## 4525 <NA>
## 4526 <NA>
## 4527 <NA>
## 4528 <NA>
## 4529 <NA>
## 4530 <NA>
## 4531 <NA>
## 4532 <NA>
## 4533 <NA>
## 4534 <NA>
## 4535 <NA>
## 4536 <NA>
## 4537 <NA>
## 4538 <NA>
## 4539 <NA>
## 4540 <NA>
## 4541 <NA>
## 4542 <NA>
## 4543 <NA>
## 4544 <NA>
## 4545 <NA>
## 4546 <NA>
## 4547 <NA>
## 4548 <NA>
## 4549 <NA>
## 4550 <NA>
## 4551 <NA>
## 4552 <NA>
## 4553 <NA>
## 4554 <NA>
## 4555 <NA>
## 4556 <NA>
## 4557 <NA>
## 4558 <NA>
## 4559 <NA>
## 4560 <NA>
## 4561 <NA>
## 4562 <NA>
## 4563 <NA>
## 4564 <NA>
## 4565 <NA>
## 4566 <NA>
## 4567 <NA>
## 4568 <NA>
## 4569 <NA>
## 4570 <NA>
## 4571 <NA>
## 4572 <NA>
## 4573 <NA>
## 4574 <NA>
## 4575 <NA>
## 4576 <NA>
## 4577 <NA>
## 4578 <NA>
## 4579 <NA>
## 4580 <NA>
## 4581 <NA>
## 4582 <NA>
## 4583 <NA>
## 4584 <NA>
## 4585 <NA>
## 4586 <NA>
## 4587 <NA>
## 4588 <NA>
## 4589 <NA>
## 4590 <NA>
## 4591 <NA>
## 4592 <NA>
## 4593 <NA>
## 4594 <NA>
## 4595 <NA>
## 4596 <NA>
## 4597 <NA>
## 4598 <NA>
## 4599 <NA>
## 4600 <NA>
## 4601 <NA>
## 4602 <NA>
## 4603 <NA>
## 4604 <NA>
## 4605 <NA>
## 4606 <NA>
## 4607 <NA>
## 4608 <NA>
## 4609 <NA>
## 4610 <NA>
## 4611 <NA>
## 4612 <NA>
## 4613 <NA>
## 4614 <NA>
## 4615 <NA>
## 4616 <NA>
## 4617 <NA>
## 4618 <NA>
## 4619 <NA>
## 4620 <NA>
## 4621 <NA>
## 4622 <NA>
## 4623 <NA>
## 4624 <NA>
## 4625 <NA>
## 4626 <NA>
## 4627 <NA>
## 4628 <NA>
## 4629 <NA>
## 4630 <NA>
## 4631 <NA>
## 4632 <NA>
## 4633 <NA>
## 4634 <NA>
## 4635 <NA>
## 4636 <NA>
## 4637 <NA>
## 4638 <NA>
## 4639 <NA>
## 4640 <NA>
## 4641 <NA>
## 4642 <NA>
## 4643 <NA>
## 4644 <NA>
## 4645 <NA>
## 4646 <NA>
## 4647 <NA>
## 4648 <NA>
## 4649 <NA>
## 4650 <NA>
## 4651 <NA>
## 4652 <NA>
## 4653 <NA>
## 4654 <NA>
## 4655 <NA>
## 4656 <NA>
## 4657 <NA>
## 4658 <NA>
## 4659 <NA>
## 4660 <NA>
## 4661 <NA>
## 4662 <NA>
## 4663 <NA>
## 4664 <NA>
## 4665 <NA>
## 4666 <NA>
## 4667 <NA>
## 4668 <NA>
## 4669 <NA>
## 4670 <NA>
## 4671 <NA>
## 4672 <NA>
## 4673 <NA>
## 4674 <NA>
## 4675 <NA>
## 4676 <NA>
## 4677 <NA>
## 4678 <NA>
## 4679 <NA>
## 4680 <NA>
## 4681 <NA>
## 4682 <NA>
## 4683 <NA>
## 4684 <NA>
## 4685 <NA>
## 4686 <NA>
## 4687 <NA>
## 4688 <NA>
## 4689 <NA>
## 4690 <NA>
## 4691 <NA>
## 4692 <NA>
## 4693 <NA>
## 4694 <NA>
## 4695 <NA>
## 4696 <NA>
## 4697 <NA>
## 4698 <NA>
## 4699 <NA>
## 4700 <NA>
## 4701 <NA>
## 4702 <NA>
## 4703 <NA>
## 4704 <NA>
## 4705 <NA>
## 4706 <NA>
## 4707 <NA>
## 4708 <NA>
## 4709 <NA>
## 4710 <NA>
## 4711 <NA>
## 4712 <NA>
## 4713 <NA>
## 4714 <NA>
## 4715 <NA>
## 4716 <NA>
## 4717 <NA>
## 4718 <NA>
## 4719 <NA>
## 4720 <NA>
## 4721 <NA>
## 4722 <NA>
## 4723 <NA>
## 4724 <NA>
## 4725 <NA>
## 4726 <NA>
## 4727 <NA>
## 4728 <NA>
## 4729 <NA>
## 4730 <NA>
## 4731 <NA>
## 4732 <NA>
## 4733 <NA>
## 4734 <NA>
## 4735 <NA>
## 4736 <NA>
## 4737 <NA>
## 4738 <NA>
## 4739 <NA>
## 4740 <NA>
## 4741 <NA>
## 4742 <NA>
## 4743 <NA>
## 4744 <NA>
## 4745 <NA>
## 4746 <NA>
## 4747 <NA>
## 4748 <NA>
## 4749 <NA>
## 4750 <NA>
## 4751 <NA>
## 4752 <NA>
## 4753 <NA>
## 4754 <NA>
## 4755 <NA>
## 4756 <NA>
## 4757 <NA>
## 4758 <NA>
## 4759 <NA>
## 4760 <NA>
## 4761 <NA>
## 4762 <NA>
## 4763 <NA>
## 4764 <NA>
## 4765 <NA>
## 4766 <NA>
## 4767 <NA>
## 4768 <NA>
## 4769 <NA>
## 4770 <NA>
## 4771 <NA>
## 4772 <NA>
## 4773 <NA>
## 4774 <NA>
## 4775 <NA>
## 4776 <NA>
## 4777 <NA>
## 4778 <NA>
## 4779 <NA>
## 4780 <NA>
## 4781 <NA>
## 4782 <NA>
## 4783 <NA>
## 4784 <NA>
## 4785 <NA>
## 4786 <NA>
## 4787 <NA>
## 4788 <NA>
## 4789 <NA>
## 4790 <NA>
## 4791 <NA>
## 4792 <NA>
## 4793 <NA>
## 4794 <NA>
## 4795 <NA>
## 4796 <NA>
## 4797 <NA>
## 4798 <NA>
## 4799 <NA>
## 4800 <NA>
## 4801 <NA>
## 4802 <NA>
## 4803 <NA>
## 4804 <NA>
## 4805 <NA>
## 4806 <NA>
## 4807 <NA>
## 4808 <NA>
## 4809 <NA>
## 4810 <NA>
## 4811 <NA>
## 4812 <NA>
## 4813 <NA>
## 4814 <NA>
## 4815 <NA>
## 4816 <NA>
## 4817 <NA>
## 4818 <NA>
## 4819 <NA>
## 4820 <NA>
## 4821 <NA>
## 4822 <NA>
## 4823 <NA>
## 4824 <NA>
## 4825 <NA>
## 4826 <NA>
## 4827 <NA>
## 4828 <NA>
## 4829 <NA>
## 4830 <NA>
## 4831 <NA>
## 4832 <NA>
## 4833 <NA>
## 4834 <NA>
## 4835 <NA>
## 4836 <NA>
## 4837 <NA>
## 4838 <NA>
## 4839 <NA>
## 4840 <NA>
## 4841 <NA>
## 4842 <NA>
## 4843 <NA>
## 4844 <NA>
## 4845 <NA>
## 4846 <NA>
## 4847 <NA>
## 4848 <NA>
## 4849 <NA>
## 4850 <NA>
## 4851 <NA>
## 4852 <NA>
## 4853 <NA>
## 4854 <NA>
## 4855 <NA>
## 4856 <NA>
## 4857 <NA>
## 4858 <NA>
## 4859 <NA>
## 4860 <NA>
## 4861 <NA>
## 4862 <NA>
## 4863 <NA>
## 4864 <NA>
## 4865 <NA>
## 4866 <NA>
## 4867 <NA>
## 4868 <NA>
## 4869 <NA>
## 4870 <NA>
## 4871 <NA>
## 4872 <NA>
## 4873 <NA>
## 4874 <NA>
## 4875 <NA>
## 4876 <NA>
## 4877 <NA>
## 4878 <NA>
## 4879 <NA>
## 4880 <NA>
## 4881 <NA>
## 4882 <NA>
## 4883 <NA>
## 4884 <NA>
## 4885 <NA>
## 4886 <NA>
## 4887 <NA>
## 4888 <NA>
## 4889 <NA>
## 4890 <NA>
## 4891 <NA>
## 4892 <NA>
## 4893 <NA>
## 4894 <NA>
## 4895 <NA>
## 4896 <NA>
## 4897 <NA>
## 4898 <NA>
## 4899 <NA>
## 4900 <NA>
## 4901 <NA>
## 4902 <NA>
## 4903 <NA>
## 4904 <NA>
## 4905 <NA>
## 4906 <NA>
## 4907 <NA>
## 4908 <NA>
## 4909 <NA>
## 4910 <NA>
## 4911 <NA>
## 4912 <NA>
## 4913 <NA>
## 4914 <NA>
## 4915 <NA>
## 4916 <NA>
## 4917 <NA>
## 4918 <NA>
## 4919 <NA>
## 4920 <NA>
## 4921 <NA>
## 4922 <NA>
## 4923 <NA>
## 4924 <NA>
## 4925 <NA>
## 4926 <NA>
## 4927 <NA>
## 4928 <NA>
## 4929 <NA>
## 4930 <NA>
## 4931 <NA>
## 4932 <NA>
## 4933 <NA>
## 4934 <NA>
## 4935 <NA>
## 4936 <NA>
## 4937 <NA>
## 4938 <NA>
## 4939 <NA>
## 4940 <NA>
## 4941 <NA>
## 4942 <NA>
## 4943 <NA>
## 4944 <NA>
## 4945 <NA>
## 4946 <NA>
## 4947 <NA>
## 4948 <NA>
## 4949 <NA>
## 4950 <NA>
## 4951 <NA>
## 4952 <NA>
## 4953 <NA>
## 4954 <NA>
## 4955 <NA>
## 4956 <NA>
## 4957 <NA>
## 4958 <NA>
## 4959 <NA>
## 4960 <NA>
## 4961 <NA>
## 4962 <NA>
## 4963 <NA>
## 4964 <NA>
## 4965 <NA>
## 4966 <NA>
## 4967 <NA>
## 4968 <NA>
## 4969 <NA>
## 4970 <NA>
## 4971 <NA>
## 4972 <NA>
## 4973 <NA>
## 4974 <NA>
## 4975 <NA>
## 4976 <NA>
## 4977 <NA>
## 4978 <NA>
## 4979 <NA>
## 4980 <NA>
## 4981 <NA>
## 4982 <NA>
## 4983 <NA>
## 4984 <NA>
## 4985 <NA>
## 4986 <NA>
## 4987 <NA>
## 4988 <NA>
## 4989 <NA>
## 4990 <NA>
## 4991 <NA>
## 4992 <NA>
## 4993 <NA>
## 4994 <NA>
## 4995 <NA>
## 4996 <NA>
## 4997 <NA>
## 4998 <NA>
## 4999 <NA>
## [ reached getOption("max.print") -- omitted 601 rows ]
This is how the whole dataset looks like:
head(data, 10)
## idno typesamp interva telnum
## 1 100000003 Address Complete and valid interview related to CF Present
## 2 100000005 Address Complete and valid interview related to CF Present
## 3 100000008 Address Complete and valid interview related to CF Present
## 4 100000009 Address Complete and valid interview related to CF Present
## 5 100000010 Address Complete and valid interview related to CF Present
## 6 100000012 Address Complete and valid interview related to CF Present
## 7 100000015 Address Complete and valid interview related to CF Present
## 8 100000016 Address Complete and valid interview related to CF Present
## 9 100000017 Address Complete and valid interview related to CF Present
## 10 100000020 Address Complete and valid interview related to CF Refused
## agea_1 gendera1 type access
## 1 <NA> <NA> Single unit: Terraced house No, neither of these
## 2 <NA> <NA> Single unit: Semi-detached house No, neither of these
## 3 <NA> <NA> Single unit: Terraced house Yes, locked gate/door
## 4 <NA> <NA> Single unit: Semi-detached house No, neither of these
## 5 <NA> <NA> Single unit: Terraced house No, neither of these
## 6 <NA> <NA> Single unit: Terraced house No, neither of these
## 7 <NA> <NA> Single unit: Detached house No, neither of these
## 8 <NA> <NA> Single unit: Terraced house No, neither of these
## 9 <NA> <NA> Single unit: Semi-detached house No, neither of these
## 10 <NA> <NA> Single unit: Semi-detached house No, neither of these
## physa littera vandaa psu prob
## 1 Satisfactory Small amount None or almost none 9388 0.00020306164
## 2 Good None or almost none None or almost none 9241 0.00020306164
## 3 Good None or almost none None or almost none 9472 0.00020306164
## 4 Satisfactory Large amount None or almost none 9450 0.00005076541
## 5 Satisfactory None or almost none None or almost none 9479 0.00010153082
## 6 Very good None or almost none None or almost none 9460 0.00010153082
## 7 Satisfactory None or almost none None or almost none 9440 0.00010153082
## 8 Good None or almost none None or almost none 9494 0.00020306164
## 9 Bad None or almost none None or almost none 9376 0.00010153082
## 10 Satisfactory None or almost none None or almost none 9273 0.00010153082
## vote prtvtbgb prtclbgb prtdgcl ctzcntr ctzshipc brncntr
## 1 Yes Liberal Democrat <NA> <NA> Yes <NA> Yes
## 2 Yes Liberal Democrat <NA> <NA> Yes <NA> Yes
## 3 Yes Labour Labour Not close Yes <NA> Yes
## 4 Yes Labour <NA> <NA> Yes <NA> No
## 5 No <NA> <NA> <NA> Yes <NA> Yes
## 6 No <NA> <NA> <NA> Yes <NA> Yes
## 7 Yes Conservative Conservative Quite close Yes <NA> Yes
## 8 No <NA> <NA> <NA> Yes <NA> Yes
## 9 No <NA> Labour Very close No Poland No
## 10 No <NA> <NA> <NA> Yes <NA> Yes
## cntbrthc cgtsmke cgtsday alcfreq
## 1 <NA> I have never smoked 0 Once a week
## 2 <NA> I smoke daily 10 Once a week
## 3 <NA> I have never smoked 0 Several times a week
## 4 <NA> I have never smoked 0 Never
## 5 <NA> I smoke daily 20 2-3 times a month
## 6 <NA> I don't smoke now but I used to 0 Several times a week
## 7 <NA> I don't smoke now but I used to 0 Once a week
## 8 <NA> I smoke daily 15 Never
## 9 Poland I have never smoked 0 Never
## 10 <NA> I smoke daily 20 Several times a week
## alcwkdy alcwknd hhmmb gndr agea
## 1 0 8 1 Female 49
## 2 48 96 2 Female 45
## 3 42 0 1 Male 76
## 4 NA NA 5 Male 50
## 5 55 0 2 Male 67
## 6 26 32 2 Female 31
## 7 17 0 3 Female 34
## 8 NA NA 1 Female 44
## 9 NA NA 3 Male 32
## 10 42 121 2 Male 58
## eisced pdwrk
## 1 ES-ISCED V2, higher tertiary education, >= MA level Marked
## 2 ES-ISCED V1, lower tertiary education, BA level Marked
## 3 ES-ISCED I , less than lower secondary Not marked
## 4 ES-ISCED II, lower secondary Not marked
## 5 ES-ISCED I , less than lower secondary Not marked
## 6 ES-ISCED IIIa, upper tier upper secondary Marked
## 7 ES-ISCED IIIa, upper tier upper secondary Marked
## 8 ES-ISCED II, lower secondary Marked
## 9 ES-ISCED IIIa, upper tier upper secondary Marked
## 10 ES-ISCED IIIa, upper tier upper secondary Marked
## edctn uempla uempli rtrd wrkctra hinctnta
## 1 Not marked Not marked Not marked Not marked Unlimited M - 4th decile
## 2 Not marked Not marked Not marked Not marked No contract R - 2nd decile
## 3 Not marked Not marked Not marked Marked Unlimited R - 2nd decile
## 4 Not marked Not marked Not marked Not marked Unlimited S - 6th decile
## 5 Not marked Not marked Not marked Marked <NA> J - 1st decile
## 6 Not marked Not marked Not marked Not marked Unlimited F - 5th decile
## 7 Not marked Not marked Not marked Not marked Unlimited H - 10th decile
## 8 Not marked Not marked Not marked Not marked Unlimited R - 2nd decile
## 9 Not marked Not marked Not marked Not marked Unlimited S - 6th decile
## 10 Not marked Not marked Not marked Not marked Unlimited K - 7th decile
## alcohol_day
## 1 0.32653061
## 2 8.81632653
## 3 0.91428571
## 4 0.00000000
## 5 0.03265306
## 6 24.68571429
## 7 0.13061224
## 8 0.00000000
## 9 0.00000000
## 10 12.00000000
(It would be a good practice to give descriptives for the main variables.)
The first step in weighing is to take into account the differences in the probability of being selected for the sample. The European Social Survey (ESS) did not use a register of people in the UK (in other countries they did). They first selected postcode sectors from the Post Office’s small user postcode address file (PAF), merging smaller sectors. The probability of each PAF of being selected was proportional to the number of addresses it contained. Then, they selected 20 addresses inside of each sampled PAF and a dwelling for each address. For each dewlling they selected a household and then a person in each household. The full explanation of the sampling procedure is given in page 163 of The data documentation report (Edition 3.1 ).
This sampling design is most probably done because they had a list of addresses but not households or individuals. If we don’t weight this survey, we would probably over-represent people in addresses that have smaller number of dewellings, dwellings that include smaller number of households and households that comprise smaller number of people.
Fortunately for us, the probablity of each respondent of being sampled was included in the ESS dataset. In many projects, however, we will have to compute sampling probailities ourselves. A basic but important test that should be performed after computing the probabilities is making sure that all probabilities are between 0 and 1.
probabilities <- data %>%
summarise(min.probability = min(prob, na.rm = T),
max.probability = max(prob, na.rm = T)) %>%
as.vector()
print(probabilities)
## min.probability max.probability
## 1 0.00001269135 0.0002030616
if(probabilities$min.probability < 0){stop("Minimum probability of being sampled is smaller than 0. Review sampling probabilities before computing base weights.")}else if(probabilities$max.probability > 1){stop("Maximum probability of being sampled is larger than 1. Review sampling probabilities before computing base weights.")}
rm(probabilities)
We see that there are actually 16 unique sampling probabilities computed in the dataset.
unique(sort(data$prob))
## [1] 0.00001269135 0.00001682761 0.00001692180 0.00001846015 0.00002030616
## [6] 0.00002256240 0.00002538271 0.00002900881 0.00003384361 0.00004061233
## [11] 0.00005076541 0.00006768721 0.00010153082 0.00013681033 0.00020306164
The vast majority of respondents had probability of 1144 or 787. This would mean that the most frequent probabilites of inclusion were of 0.0008741 and 0.0012706 respectively. We see a minority of around 15% of observations with smaller probabilities.
ggplot(data, aes(x = prob)) +
geom_histogram()
table(round(data$prob*100,6))
##
## 0.001269 0.001683 0.001692 0.001846 0.002031 0.002256 0.002538 0.002901
## 1 1 1 2 1 6 1 1
## 0.003384 0.004061 0.005077 0.006769 0.010153 0.013681 0.020306
## 6 22 101 188 1144 2 787
We see that
data %>%
group_by(type) %>%
summarise(n = n(),
mean.prob.percentage = mean(prob, na.rm = T)*100) %>%
arrange(desc(mean.prob.percentage))
## # A tibble: 11 × 3
## type n
## <fctr> <int>
## 1 NA 482
## 2 Multi-unit: Sheltered/retirement housing 37
## 3 Multi-unit house, flat 927
## 4 Other 45
## 5 House-trailer or boat 5
## 6 Single unit: Terraced house 1364
## 7 Only housing unit in building with other purpose 23
## 8 Single unit: Semi-detached house 1465
## 9 Single unit: Detached house 1209
## 10 Farm 34
## 11 Multi-unit: Student apartments, rooms 9
## # ... with 1 more variables: mean.prob.percentage <dbl>
data %<>%
mutate(hhmmb.factor = as.factor(hhmmb) %>% fct_recode(`+5` = "6",
`+5` = "7",
`+5` = "8"))
data %>%
filter(!is.na(hhmmb.factor)) %>%
group_by(hhmmb.factor) %>%
summarise(n = n(),
mean.prob.percentage = mean(prob, na.rm = T)*100) %>%
arrange(desc(mean.prob.percentage))
## # A tibble: 6 × 3
## hhmmb.factor n mean.prob.percentage
## <fctr> <int> <dbl>
## 1 1 745 0.019260215
## 2 2 764 0.010841915
## 3 3 301 0.009803027
## 4 4 303 0.009026823
## 5 5 118 0.008328013
## 6 +5 33 0.007486616
The base weights are equal to the inverse of the probability of inclusion. Therefore, the base weight (d_{0}) of a respondent (i) will be equal to: \(d_{0i} = 1/\pi_{i}\).
data %<>%
mutate(base.weight = 1/prob)
data %>%
select(prob, base.weight)
## prob base.weight
## 1 0.00020306164 4924.613
## 2 0.00020306164 4924.613
## 3 0.00020306164 4924.613
## 4 0.00005076541 19698.452
## 5 0.00010153082 9849.226
## 6 0.00010153082 9849.226
## 7 0.00010153082 9849.226
## 8 0.00020306164 4924.613
## 9 0.00010153082 9849.226
## 10 0.00010153082 9849.226
## 11 0.00010153082 9849.226
## 12 0.00006768721 14773.839
## 13 0.00020306164 4924.613
## 14 0.00010153082 9849.226
## 15 0.00010153082 9849.226
## 16 0.00010153082 9849.226
## 17 0.00020306164 4924.613
## 18 0.00002256240 44321.517
## 19 0.00010153082 9849.226
## 20 0.00010153082 9849.226
## 21 0.00010153082 9849.226
## 22 0.00010153082 9849.226
## 23 0.00020306164 4924.613
## 24 0.00010153082 9849.226
## 25 0.00010153082 9849.226
## 26 0.00020306164 4924.613
## 27 0.00010153082 9849.226
## 28 0.00010153082 9849.226
## 29 0.00020306164 4924.613
## 30 0.00020306164 4924.613
## 31 0.00010153082 9849.226
## 32 0.00010153082 9849.226
## 33 0.00004061233 24623.065
## 34 0.00020306164 4924.613
## 35 0.00010153082 9849.226
## 36 0.00010153082 9849.226
## 37 0.00010153082 9849.226
## 38 0.00020306164 4924.613
## 39 0.00020306164 4924.613
## 40 0.00010153082 9849.226
## 41 0.00006768721 14773.839
## 42 0.00005076541 19698.452
## 43 0.00020306164 4924.613
## 44 0.00010153082 9849.226
## 45 0.00020306164 4924.613
## 46 0.00010153082 9849.226
## 47 0.00010153082 9849.226
## 48 0.00010153082 9849.226
## 49 0.00010153082 9849.226
## 50 0.00010153082 9849.226
## 51 0.00010153082 9849.226
## 52 0.00010153082 9849.226
## 53 0.00020306164 4924.613
## 54 0.00010153082 9849.226
## 55 0.00020306164 4924.613
## 56 0.00020306164 4924.613
## 57 0.00020306164 4924.613
## 58 0.00002030616 49246.130
## 59 0.00010153082 9849.226
## 60 0.00006768721 14773.839
## 61 0.00020306164 4924.613
## 62 0.00010153082 9849.226
## 63 0.00020306164 4924.613
## 64 0.00010153082 9849.226
## 65 0.00020306164 4924.613
## 66 0.00010153082 9849.226
## 67 0.00010153082 9849.226
## 68 0.00020306164 4924.613
## 69 0.00004061233 24623.065
## 70 0.00010153082 9849.226
## 71 0.00006768721 14773.839
## 72 0.00010153082 9849.226
## 73 0.00010153082 9849.226
## 74 0.00020306164 4924.613
## 75 0.00010153082 9849.226
## 76 0.00003384361 29547.678
## 77 0.00020306164 4924.613
## 78 0.00010153082 9849.226
## 79 0.00010153082 9849.226
## 80 0.00005076541 19698.452
## 81 0.00010153082 9849.226
## 82 0.00010153082 9849.226
## 83 0.00010153082 9849.226
## 84 0.00010153082 9849.226
## 85 0.00020306164 4924.613
## 86 0.00010153082 9849.226
## 87 0.00010153082 9849.226
## 88 0.00010153082 9849.226
## 89 0.00006768721 14773.839
## 90 0.00010153082 9849.226
## 91 0.00020306164 4924.613
## 92 0.00010153082 9849.226
## 93 0.00010153082 9849.226
## 94 0.00020306164 4924.613
## 95 0.00005076541 19698.452
## 96 0.00020306164 4924.613
## 97 0.00020306164 4924.613
## 98 0.00020306164 4924.613
## 99 0.00010153082 9849.226
## 100 0.00020306164 4924.613
## 101 0.00010153082 9849.226
## 102 0.00010153082 9849.226
## 103 0.00010153082 9849.226
## 104 0.00010153082 9849.226
## 105 0.00010153082 9849.226
## 106 0.00010153082 9849.226
## 107 0.00020306164 4924.613
## 108 0.00010153082 9849.226
## 109 0.00020306164 4924.613
## 110 0.00010153082 9849.226
## 111 0.00020306164 4924.613
## 112 0.00006768721 14773.839
## 113 0.00010153082 9849.226
## 114 0.00020306164 4924.613
## 115 0.00010153082 9849.226
## 116 0.00020306164 4924.613
## 117 0.00010153082 9849.226
## 118 0.00010153082 9849.226
## 119 0.00002256240 44321.517
## 120 0.00010153082 9849.226
## 121 0.00010153082 9849.226
## 122 0.00010153082 9849.226
## 123 0.00020306164 4924.613
## 124 0.00020306164 4924.613
## 125 0.00020306164 4924.613
## 126 0.00020306164 4924.613
## 127 0.00010153082 9849.226
## 128 0.00010153082 9849.226
## 129 0.00010153082 9849.226
## 130 0.00001846015 54170.743
## 131 0.00020306164 4924.613
## 132 0.00020306164 4924.613
## 133 0.00010153082 9849.226
## 134 0.00020306164 4924.613
## 135 0.00010153082 9849.226
## 136 0.00010153082 9849.226
## 137 0.00006768721 14773.839
## 138 0.00020306164 4924.613
## 139 0.00020306164 4924.613
## 140 0.00020306164 4924.613
## 141 0.00010153082 9849.226
## 142 0.00005076541 19698.452
## 143 0.00020306164 4924.613
## 144 0.00020306164 4924.613
## 145 0.00010153082 9849.226
## 146 0.00010153082 9849.226
## 147 0.00010153082 9849.226
## 148 0.00020306164 4924.613
## 149 0.00010153082 9849.226
## 150 0.00010153082 9849.226
## 151 0.00006768721 14773.839
## 152 0.00006768721 14773.839
## 153 0.00020306164 4924.613
## 154 0.00010153082 9849.226
## 155 0.00010153082 9849.226
## 156 0.00010153082 9849.226
## 157 0.00010153082 9849.226
## 158 0.00020306164 4924.613
## 159 0.00020306164 4924.613
## 160 0.00005076541 19698.452
## 161 0.00010153082 9849.226
## 162 0.00010153082 9849.226
## 163 0.00020306164 4924.613
## 164 0.00020306164 4924.613
## 165 0.00020306164 4924.613
## 166 0.00020306164 4924.613
## 167 0.00010153082 9849.226
## 168 0.00020306164 4924.613
## 169 0.00010153082 9849.226
## 170 0.00010153082 9849.226
## 171 0.00010153082 9849.226
## 172 0.00006768721 14773.839
## 173 0.00020306164 4924.613
## 174 0.00010153082 9849.226
## 175 0.00020306164 4924.613
## 176 0.00010153082 9849.226
## 177 0.00020306164 4924.613
## 178 0.00020306164 4924.613
## 179 0.00020306164 4924.613
## 180 0.00020306164 4924.613
## 181 0.00020306164 4924.613
## 182 0.00020306164 4924.613
## 183 0.00020306164 4924.613
## 184 0.00010153082 9849.226
## 185 0.00010153082 9849.226
## 186 0.00010153082 9849.226
## 187 0.00006768721 14773.839
## 188 0.00020306164 4924.613
## 189 0.00010153082 9849.226
## 190 0.00020306164 4924.613
## 191 0.00006768721 14773.839
## 192 0.00010153082 9849.226
## 193 0.00010153082 9849.226
## 194 0.00002256240 44321.517
## 195 0.00010153082 9849.226
## 196 0.00010153082 9849.226
## 197 0.00020306164 4924.613
## 198 0.00010153082 9849.226
## 199 0.00010153082 9849.226
## 200 0.00005076541 19698.452
## 201 0.00010153082 9849.226
## 202 0.00010153082 9849.226
## 203 0.00010153082 9849.226
## 204 0.00020306164 4924.613
## 205 0.00010153082 9849.226
## 206 0.00020306164 4924.613
## 207 0.00010153082 9849.226
## 208 0.00020306164 4924.613
## 209 0.00010153082 9849.226
## 210 0.00005076541 19698.452
## 211 0.00020306164 4924.613
## 212 0.00010153082 9849.226
## 213 0.00020306164 4924.613
## 214 0.00010153082 9849.226
## 215 0.00010153082 9849.226
## 216 0.00010153082 9849.226
## 217 0.00020306164 4924.613
## 218 0.00010153082 9849.226
## 219 0.00020306164 4924.613
## 220 0.00010153082 9849.226
## 221 0.00010153082 9849.226
## 222 0.00005076541 19698.452
## 223 0.00020306164 4924.613
## 224 0.00020306164 4924.613
## 225 0.00010153082 9849.226
## 226 0.00020306164 4924.613
## 227 0.00010153082 9849.226
## 228 0.00005076541 19698.452
## 229 0.00010153082 9849.226
## 230 0.00010153082 9849.226
## 231 0.00020306164 4924.613
## 232 0.00010153082 9849.226
## 233 0.00020306164 4924.613
## 234 0.00010153082 9849.226
## 235 0.00010153082 9849.226
## 236 0.00010153082 9849.226
## 237 0.00010153082 9849.226
## 238 0.00010153082 9849.226
## 239 0.00010153082 9849.226
## 240 0.00020306164 4924.613
## 241 0.00020306164 4924.613
## 242 0.00020306164 4924.613
## 243 0.00005076541 19698.452
## 244 0.00020306164 4924.613
## 245 0.00010153082 9849.226
## 246 0.00020306164 4924.613
## 247 0.00006768721 14773.839
## 248 0.00020306164 4924.613
## 249 0.00020306164 4924.613
## 250 0.00010153082 9849.226
## 251 0.00010153082 9849.226
## 252 0.00010153082 9849.226
## 253 0.00010153082 9849.226
## 254 0.00010153082 9849.226
## 255 0.00010153082 9849.226
## 256 0.00006768721 14773.839
## 257 0.00020306164 4924.613
## 258 0.00010153082 9849.226
## 259 0.00020306164 4924.613
## 260 0.00010153082 9849.226
## 261 0.00020306164 4924.613
## 262 0.00020306164 4924.613
## 263 0.00010153082 9849.226
## 264 0.00020306164 4924.613
## 265 0.00010153082 9849.226
## 266 0.00020306164 4924.613
## 267 0.00006768721 14773.839
## 268 0.00020306164 4924.613
## 269 0.00020306164 4924.613
## 270 0.00005076541 19698.452
## 271 0.00010153082 9849.226
## 272 0.00010153082 9849.226
## 273 0.00020306164 4924.613
## 274 0.00010153082 9849.226
## 275 0.00010153082 9849.226
## 276 0.00020306164 4924.613
## 277 0.00020306164 4924.613
## 278 0.00010153082 9849.226
## 279 0.00004061233 24623.065
## 280 0.00010153082 9849.226
## 281 0.00020306164 4924.613
## 282 0.00005076541 19698.452
## 283 0.00010153082 9849.226
## 284 0.00010153082 9849.226
## 285 0.00010153082 9849.226
## 286 0.00010153082 9849.226
## 287 0.00020306164 4924.613
## 288 0.00020306164 4924.613
## 289 0.00010153082 9849.226
## 290 0.00010153082 9849.226
## 291 0.00010153082 9849.226
## 292 0.00010153082 9849.226
## 293 0.00010153082 9849.226
## 294 0.00010153082 9849.226
## 295 0.00006768721 14773.839
## 296 0.00010153082 9849.226
## 297 0.00010153082 9849.226
## 298 0.00020306164 4924.613
## 299 0.00010153082 9849.226
## 300 0.00010153082 9849.226
## 301 0.00010153082 9849.226
## 302 0.00010153082 9849.226
## 303 0.00010153082 9849.226
## 304 0.00020306164 4924.613
## 305 0.00005076541 19698.452
## 306 0.00020306164 4924.613
## 307 0.00006768721 14773.839
## 308 0.00006768721 14773.839
## 309 0.00020306164 4924.613
## 310 0.00020306164 4924.613
## 311 0.00020306164 4924.613
## 312 0.00020306164 4924.613
## 313 0.00006768721 14773.839
## 314 0.00020306164 4924.613
## 315 0.00010153082 9849.226
## 316 0.00006768721 14773.839
## 317 0.00010153082 9849.226
## 318 0.00010153082 9849.226
## 319 0.00010153082 9849.226
## 320 0.00020306164 4924.613
## 321 0.00020306164 4924.613
## 322 0.00020306164 4924.613
## 323 0.00010153082 9849.226
## 324 0.00020306164 4924.613
## 325 0.00006768721 14773.839
## 326 0.00020306164 4924.613
## 327 0.00010153082 9849.226
## 328 0.00020306164 4924.613
## 329 0.00020306164 4924.613
## 330 0.00020306164 4924.613
## 331 0.00020306164 4924.613
## 332 0.00010153082 9849.226
## 333 0.00020306164 4924.613
## 334 0.00020306164 4924.613
## 335 0.00020306164 4924.613
## 336 0.00010153082 9849.226
## 337 0.00020306164 4924.613
## 338 0.00020306164 4924.613
## 339 0.00020306164 4924.613
## 340 0.00020306164 4924.613
## 341 0.00020306164 4924.613
## 342 0.00010153082 9849.226
## 343 0.00010153082 9849.226
## 344 0.00010153082 9849.226
## 345 0.00010153082 9849.226
## 346 0.00020306164 4924.613
## 347 0.00010153082 9849.226
## 348 0.00010153082 9849.226
## 349 0.00010153082 9849.226
## 350 0.00020306164 4924.613
## 351 0.00010153082 9849.226
## 352 0.00010153082 9849.226
## 353 0.00020306164 4924.613
## 354 0.00005076541 19698.452
## 355 0.00020306164 4924.613
## 356 0.00020306164 4924.613
## 357 0.00020306164 4924.613
## 358 0.00020306164 4924.613
## 359 0.00010153082 9849.226
## 360 0.00020306164 4924.613
## 361 0.00010153082 9849.226
## 362 0.00020306164 4924.613
## 363 0.00020306164 4924.613
## 364 0.00010153082 9849.226
## 365 0.00020306164 4924.613
## 366 0.00010153082 9849.226
## 367 0.00006768721 14773.839
## 368 0.00010153082 9849.226
## 369 0.00010153082 9849.226
## 370 0.00010153082 9849.226
## 371 0.00005076541 19698.452
## 372 0.00010153082 9849.226
## 373 0.00010153082 9849.226
## 374 0.00020306164 4924.613
## 375 0.00006768721 14773.839
## 376 0.00004061233 24623.065
## 377 0.00010153082 9849.226
## 378 0.00020306164 4924.613
## 379 0.00005076541 19698.452
## 380 0.00010153082 9849.226
## 381 0.00020306164 4924.613
## 382 0.00020306164 4924.613
## 383 0.00010153082 9849.226
## 384 0.00004061233 24623.065
## 385 0.00010153082 9849.226
## 386 0.00010153082 9849.226
## 387 0.00010153082 9849.226
## 388 0.00005076541 19698.452
## 389 0.00010153082 9849.226
## 390 0.00010153082 9849.226
## 391 0.00006768721 14773.839
## 392 0.00010153082 9849.226
## 393 0.00020306164 4924.613
## 394 0.00020306164 4924.613
## 395 0.00010153082 9849.226
## 396 0.00006768721 14773.839
## 397 0.00020306164 4924.613
## 398 0.00010153082 9849.226
## 399 0.00010153082 9849.226
## 400 0.00006768721 14773.839
## 401 0.00010153082 9849.226
## 402 0.00010153082 9849.226
## 403 0.00020306164 4924.613
## 404 0.00020306164 4924.613
## 405 0.00010153082 9849.226
## 406 0.00010153082 9849.226
## 407 0.00010153082 9849.226
## 408 0.00020306164 4924.613
## 409 0.00006768721 14773.839
## 410 0.00020306164 4924.613
## 411 0.00010153082 9849.226
## 412 0.00020306164 4924.613
## 413 0.00020306164 4924.613
## 414 0.00010153082 9849.226
## 415 0.00020306164 4924.613
## 416 0.00020306164 4924.613
## 417 0.00010153082 9849.226
## 418 0.00010153082 9849.226
## 419 0.00010153082 9849.226
## 420 0.00010153082 9849.226
## 421 0.00020306164 4924.613
## 422 0.00010153082 9849.226
## 423 0.00020306164 4924.613
## 424 0.00010153082 9849.226
## 425 0.00010153082 9849.226
## 426 0.00010153082 9849.226
## 427 0.00010153082 9849.226
## 428 0.00010153082 9849.226
## 429 0.00020306164 4924.613
## 430 0.00005076541 19698.452
## 431 0.00020306164 4924.613
## 432 0.00010153082 9849.226
## 433 0.00020306164 4924.613
## 434 0.00010153082 9849.226
## 435 0.00020306164 4924.613
## 436 0.00010153082 9849.226
## 437 0.00020306164 4924.613
## 438 0.00010153082 9849.226
## 439 0.00010153082 9849.226
## 440 0.00010153082 9849.226
## 441 0.00010153082 9849.226
## 442 0.00010153082 9849.226
## 443 0.00010153082 9849.226
## 444 0.00010153082 9849.226
## 445 0.00020306164 4924.613
## 446 0.00010153082 9849.226
## 447 0.00006768721 14773.839
## 448 0.00004061233 24623.065
## 449 0.00010153082 9849.226
## 450 0.00010153082 9849.226
## 451 0.00020306164 4924.613
## 452 0.00010153082 9849.226
## 453 0.00004061233 24623.065
## 454 0.00020306164 4924.613
## 455 0.00010153082 9849.226
## 456 0.00020306164 4924.613
## 457 0.00010153082 9849.226
## 458 0.00020306164 4924.613
## 459 0.00010153082 9849.226
## 460 0.00010153082 9849.226
## 461 0.00010153082 9849.226
## 462 0.00020306164 4924.613
## 463 0.00020306164 4924.613
## 464 0.00010153082 9849.226
## 465 0.00010153082 9849.226
## 466 0.00020306164 4924.613
## 467 0.00010153082 9849.226
## 468 0.00010153082 9849.226
## 469 0.00010153082 9849.226
## 470 0.00020306164 4924.613
## 471 0.00010153082 9849.226
## 472 0.00010153082 9849.226
## 473 0.00020306164 4924.613
## 474 0.00020306164 4924.613
## 475 0.00010153082 9849.226
## 476 0.00020306164 4924.613
## 477 0.00010153082 9849.226
## 478 0.00006768721 14773.839
## 479 0.00005076541 19698.452
## 480 0.00005076541 19698.452
## 481 0.00010153082 9849.226
## 482 0.00010153082 9849.226
## 483 0.00006768721 14773.839
## 484 0.00003384361 29547.678
## 485 0.00020306164 4924.613
## 486 0.00010153082 9849.226
## 487 0.00020306164 4924.613
## 488 0.00010153082 9849.226
## 489 0.00020306164 4924.613
## 490 0.00020306164 4924.613
## 491 0.00010153082 9849.226
## 492 0.00010153082 9849.226
## 493 0.00010153082 9849.226
## 494 0.00010153082 9849.226
## 495 0.00020306164 4924.613
## 496 0.00020306164 4924.613
## 497 0.00020306164 4924.613
## 498 0.00010153082 9849.226
## 499 0.00020306164 4924.613
## 500 0.00006768721 14773.839
## 501 0.00010153082 9849.226
## 502 0.00010153082 9849.226
## 503 0.00020306164 4924.613
## 504 0.00010153082 9849.226
## 505 0.00010153082 9849.226
## 506 0.00010153082 9849.226
## 507 0.00010153082 9849.226
## 508 0.00020306164 4924.613
## 509 0.00020306164 4924.613
## 510 0.00020306164 4924.613
## 511 0.00020306164 4924.613
## 512 0.00020306164 4924.613
## 513 0.00020306164 4924.613
## 514 0.00020306164 4924.613
## 515 0.00010153082 9849.226
## 516 0.00006768721 14773.839
## 517 0.00020306164 4924.613
## 518 0.00010153082 9849.226
## 519 0.00006768721 14773.839
## 520 0.00020306164 4924.613
## 521 0.00010153082 9849.226
## 522 0.00020306164 4924.613
## 523 0.00010153082 9849.226
## 524 0.00020306164 4924.613
## 525 0.00010153082 9849.226
## 526 0.00010153082 9849.226
## 527 0.00010153082 9849.226
## 528 0.00010153082 9849.226
## 529 0.00005076541 19698.452
## 530 0.00020306164 4924.613
## 531 0.00010153082 9849.226
## 532 0.00010153082 9849.226
## 533 0.00010153082 9849.226
## 534 0.00010153082 9849.226
## 535 0.00020306164 4924.613
## 536 0.00010153082 9849.226
## 537 0.00010153082 9849.226
## 538 0.00003384361 29547.678
## 539 0.00010153082 9849.226
## 540 0.00020306164 4924.613
## 541 0.00010153082 9849.226
## 542 0.00020306164 4924.613
## 543 0.00020306164 4924.613
## 544 0.00020306164 4924.613
## 545 0.00020306164 4924.613
## 546 0.00010153082 9849.226
## 547 0.00010153082 9849.226
## 548 0.00020306164 4924.613
## 549 0.00020306164 4924.613
## 550 0.00020306164 4924.613
## 551 0.00010153082 9849.226
## 552 0.00010153082 9849.226
## 553 0.00020306164 4924.613
## 554 0.00010153082 9849.226
## 555 0.00010153082 9849.226
## 556 0.00020306164 4924.613
## 557 0.00010153082 9849.226
## 558 0.00010153082 9849.226
## 559 0.00020306164 4924.613
## 560 0.00010153082 9849.226
## 561 0.00020306164 4924.613
## 562 0.00010153082 9849.226
## 563 0.00020306164 4924.613
## 564 0.00010153082 9849.226
## 565 0.00010153082 9849.226
## 566 0.00010153082 9849.226
## 567 0.00020306164 4924.613
## 568 0.00020306164 4924.613
## 569 0.00010153082 9849.226
## 570 0.00006768721 14773.839
## 571 0.00010153082 9849.226
## 572 0.00020306164 4924.613
## 573 0.00010153082 9849.226
## 574 0.00010153082 9849.226
## 575 0.00005076541 19698.452
## 576 0.00010153082 9849.226
## 577 0.00020306164 4924.613
## 578 0.00010153082 9849.226
## 579 0.00020306164 4924.613
## 580 0.00020306164 4924.613
## 581 0.00005076541 19698.452
## 582 0.00010153082 9849.226
## 583 0.00020306164 4924.613
## 584 0.00020306164 4924.613
## 585 0.00020306164 4924.613
## 586 0.00006768721 14773.839
## 587 0.00020306164 4924.613
## 588 0.00006768721 14773.839
## 589 0.00010153082 9849.226
## 590 0.00010153082 9849.226
## 591 0.00020306164 4924.613
## 592 0.00010153082 9849.226
## 593 0.00020306164 4924.613
## 594 0.00010153082 9849.226
## 595 0.00010153082 9849.226
## 596 0.00020306164 4924.613
## 597 0.00003384361 29547.678
## 598 0.00005076541 19698.452
## 599 0.00020306164 4924.613
## 600 0.00010153082 9849.226
## 601 0.00020306164 4924.613
## 602 0.00020306164 4924.613
## 603 0.00010153082 9849.226
## 604 0.00020306164 4924.613
## 605 0.00010153082 9849.226
## 606 0.00020306164 4924.613
## 607 0.00020306164 4924.613
## 608 0.00020306164 4924.613
## 609 0.00010153082 9849.226
## 610 0.00010153082 9849.226
## 611 0.00020306164 4924.613
## 612 0.00020306164 4924.613
## 613 0.00020306164 4924.613
## 614 0.00010153082 9849.226
## 615 0.00020306164 4924.613
## 616 0.00020306164 4924.613
## 617 0.00020306164 4924.613
## 618 0.00005076541 19698.452
## 619 0.00020306164 4924.613
## 620 0.00010153082 9849.226
## 621 0.00010153082 9849.226
## 622 0.00020306164 4924.613
## 623 0.00010153082 9849.226
## 624 0.00010153082 9849.226
## 625 0.00020306164 4924.613
## 626 0.00020306164 4924.613
## 627 0.00010153082 9849.226
## 628 0.00006768721 14773.839
## 629 0.00010153082 9849.226
## 630 0.00010153082 9849.226
## 631 0.00010153082 9849.226
## 632 0.00010153082 9849.226
## 633 0.00006768721 14773.839
## 634 0.00020306164 4924.613
## 635 0.00010153082 9849.226
## 636 0.00010153082 9849.226
## 637 0.00020306164 4924.613
## 638 0.00010153082 9849.226
## 639 0.00020306164 4924.613
## 640 0.00006768721 14773.839
## 641 0.00010153082 9849.226
## 642 0.00005076541 19698.452
## 643 0.00020306164 4924.613
## 644 0.00020306164 4924.613
## 645 0.00010153082 9849.226
## 646 0.00010153082 9849.226
## 647 0.00020306164 4924.613
## 648 0.00020306164 4924.613
## 649 0.00020306164 4924.613
## 650 0.00010153082 9849.226
## 651 0.00005076541 19698.452
## 652 0.00010153082 9849.226
## 653 0.00010153082 9849.226
## 654 0.00020306164 4924.613
## 655 0.00006768721 14773.839
## 656 0.00020306164 4924.613
## 657 0.00005076541 19698.452
## 658 0.00020306164 4924.613
## 659 0.00006768721 14773.839
## 660 0.00006768721 14773.839
## 661 0.00020306164 4924.613
## 662 0.00005076541 19698.452
## 663 0.00005076541 19698.452
## 664 0.00020306164 4924.613
## 665 0.00010153082 9849.226
## 666 0.00020306164 4924.613
## 667 0.00020306164 4924.613
## 668 0.00020306164 4924.613
## 669 0.00020306164 4924.613
## 670 0.00010153082 9849.226
## 671 0.00010153082 9849.226
## 672 0.00020306164 4924.613
## 673 0.00010153082 9849.226
## 674 0.00020306164 4924.613
## 675 0.00010153082 9849.226
## 676 0.00010153082 9849.226
## 677 0.00010153082 9849.226
## 678 0.00020306164 4924.613
## 679 0.00020306164 4924.613
## 680 0.00020306164 4924.613
## 681 0.00010153082 9849.226
## 682 0.00002256240 44321.517
## 683 0.00006768721 14773.839
## 684 0.00020306164 4924.613
## 685 0.00020306164 4924.613
## 686 0.00010153082 9849.226
## 687 0.00010153082 9849.226
## 688 0.00010153082 9849.226
## 689 0.00013681033 7309.389
## 690 0.00010153082 9849.226
## 691 0.00020306164 4924.613
## 692 0.00020306164 4924.613
## 693 0.00010153082 9849.226
## 694 0.00010153082 9849.226
## 695 0.00020306164 4924.613
## 696 0.00010153082 9849.226
## 697 0.00020306164 4924.613
## 698 0.00010153082 9849.226
## 699 0.00006768721 14773.839
## 700 0.00020306164 4924.613
## 701 0.00010153082 9849.226
## 702 0.00010153082 9849.226
## 703 0.00010153082 9849.226
## 704 0.00010153082 9849.226
## 705 0.00010153082 9849.226
## 706 0.00020306164 4924.613
## 707 0.00010153082 9849.226
## 708 0.00010153082 9849.226
## 709 0.00006768721 14773.839
## 710 0.00010153082 9849.226
## 711 0.00010153082 9849.226
## 712 0.00010153082 9849.226
## 713 0.00010153082 9849.226
## 714 0.00010153082 9849.226
## 715 0.00010153082 9849.226
## 716 0.00006768721 14773.839
## 717 0.00020306164 4924.613
## 718 0.00010153082 9849.226
## 719 0.00010153082 9849.226
## 720 0.00020306164 4924.613
## 721 0.00020306164 4924.613
## 722 0.00020306164 4924.613
## 723 0.00006768721 14773.839
## 724 0.00010153082 9849.226
## 725 0.00020306164 4924.613
## 726 0.00010153082 9849.226
## 727 0.00006768721 14773.839
## 728 0.00010153082 9849.226
## 729 0.00004061233 24623.065
## 730 0.00010153082 9849.226
## 731 0.00010153082 9849.226
## 732 0.00006768721 14773.839
## 733 0.00010153082 9849.226
## 734 0.00010153082 9849.226
## 735 0.00020306164 4924.613
## 736 0.00006768721 14773.839
## 737 0.00010153082 9849.226
## 738 0.00020306164 4924.613
## 739 0.00020306164 4924.613
## 740 0.00020306164 4924.613
## 741 0.00020306164 4924.613
## 742 0.00010153082 9849.226
## 743 0.00010153082 9849.226
## 744 0.00020306164 4924.613
## 745 0.00005076541 19698.452
## 746 0.00010153082 9849.226
## 747 0.00006768721 14773.839
## 748 0.00020306164 4924.613
## 749 0.00006768721 14773.839
## 750 0.00010153082 9849.226
## 751 0.00010153082 9849.226
## 752 0.00010153082 9849.226
## 753 0.00005076541 19698.452
## 754 0.00020306164 4924.613
## 755 0.00010153082 9849.226
## 756 0.00005076541 19698.452
## 757 0.00010153082 9849.226
## 758 0.00020306164 4924.613
## 759 0.00020306164 4924.613
## 760 0.00004061233 24623.065
## 761 0.00010153082 9849.226
## 762 0.00006768721 14773.839
## 763 0.00010153082 9849.226
## 764 0.00010153082 9849.226
## 765 0.00005076541 19698.452
## 766 0.00020306164 4924.613
## 767 0.00010153082 9849.226
## 768 0.00020306164 4924.613
## 769 0.00010153082 9849.226
## 770 0.00010153082 9849.226
## 771 0.00010153082 9849.226
## 772 0.00010153082 9849.226
## 773 0.00010153082 9849.226
## 774 0.00010153082 9849.226
## 775 0.00020306164 4924.613
## 776 0.00020306164 4924.613
## 777 0.00010153082 9849.226
## 778 0.00010153082 9849.226
## 779 0.00006768721 14773.839
## 780 0.00020306164 4924.613
## 781 0.00010153082 9849.226
## 782 0.00006768721 14773.839
## 783 0.00010153082 9849.226
## 784 0.00010153082 9849.226
## 785 0.00010153082 9849.226
## 786 0.00010153082 9849.226
## 787 0.00006768721 14773.839
## 788 0.00010153082 9849.226
## 789 0.00010153082 9849.226
## 790 0.00020306164 4924.613
## 791 0.00010153082 9849.226
## 792 0.00005076541 19698.452
## 793 0.00020306164 4924.613
## 794 0.00020306164 4924.613
## 795 0.00020306164 4924.613
## 796 0.00020306164 4924.613
## 797 0.00006768721 14773.839
## 798 0.00010153082 9849.226
## 799 0.00020306164 4924.613
## 800 0.00010153082 9849.226
## 801 0.00010153082 9849.226
## 802 0.00020306164 4924.613
## 803 0.00010153082 9849.226
## 804 0.00006768721 14773.839
## 805 0.00020306164 4924.613
## 806 0.00010153082 9849.226
## 807 0.00005076541 19698.452
## 808 0.00020306164 4924.613
## 809 0.00005076541 19698.452
## 810 0.00010153082 9849.226
## 811 0.00010153082 9849.226
## 812 0.00010153082 9849.226
## 813 0.00010153082 9849.226
## 814 0.00020306164 4924.613
## 815 0.00010153082 9849.226
## 816 0.00010153082 9849.226
## 817 0.00020306164 4924.613
## 818 0.00020306164 4924.613
## 819 0.00010153082 9849.226
## 820 0.00020306164 4924.613
## 821 0.00010153082 9849.226
## 822 0.00010153082 9849.226
## 823 0.00010153082 9849.226
## 824 0.00020306164 4924.613
## 825 0.00020306164 4924.613
## 826 0.00020306164 4924.613
## 827 0.00020306164 4924.613
## 828 0.00010153082 9849.226
## 829 0.00020306164 4924.613
## 830 0.00010153082 9849.226
## 831 0.00010153082 9849.226
## 832 0.00010153082 9849.226
## 833 0.00005076541 19698.452
## 834 0.00020306164 4924.613
## 835 0.00010153082 9849.226
## 836 0.00010153082 9849.226
## 837 0.00004061233 24623.065
## 838 0.00020306164 4924.613
## 839 0.00003384361 29547.678
## 840 0.00010153082 9849.226
## 841 0.00010153082 9849.226
## 842 0.00010153082 9849.226
## 843 0.00010153082 9849.226
## 844 0.00005076541 19698.452
## 845 0.00020306164 4924.613
## 846 0.00002256240 44321.517
## 847 0.00010153082 9849.226
## 848 0.00010153082 9849.226
## 849 0.00006768721 14773.839
## 850 0.00001682761 59426.130
## 851 0.00010153082 9849.226
## 852 0.00010153082 9849.226
## 853 0.00010153082 9849.226
## 854 0.00020306164 4924.613
## 855 0.00005076541 19698.452
## 856 0.00010153082 9849.226
## 857 0.00020306164 4924.613
## 858 0.00006768721 14773.839
## 859 0.00010153082 9849.226
## 860 0.00010153082 9849.226
## 861 0.00006768721 14773.839
## 862 0.00006768721 14773.839
## 863 0.00020306164 4924.613
## 864 0.00010153082 9849.226
## 865 0.00020306164 4924.613
## 866 0.00010153082 9849.226
## 867 0.00006768721 14773.839
## 868 0.00006768721 14773.839
## 869 0.00020306164 4924.613
## 870 0.00005076541 19698.452
## 871 0.00010153082 9849.226
## 872 0.00020306164 4924.613
## 873 0.00020306164 4924.613
## 874 0.00010153082 9849.226
## 875 0.00020306164 4924.613
## 876 0.00010153082 9849.226
## 877 0.00010153082 9849.226
## 878 0.00020306164 4924.613
## 879 0.00020306164 4924.613
## 880 0.00010153082 9849.226
## 881 0.00010153082 9849.226
## 882 0.00010153082 9849.226
## 883 0.00020306164 4924.613
## 884 0.00020306164 4924.613
## 885 0.00020306164 4924.613
## 886 0.00010153082 9849.226
## 887 0.00002900881 34472.291
## 888 0.00020306164 4924.613
## 889 0.00005076541 19698.452
## 890 0.00010153082 9849.226
## 891 0.00010153082 9849.226
## 892 0.00020306164 4924.613
## 893 0.00020306164 4924.613
## 894 0.00006768721 14773.839
## 895 0.00010153082 9849.226
## 896 0.00020306164 4924.613
## 897 0.00006768721 14773.839
## 898 0.00010153082 9849.226
## 899 0.00010153082 9849.226
## 900 0.00020306164 4924.613
## 901 0.00020306164 4924.613
## 902 0.00010153082 9849.226
## 903 0.00010153082 9849.226
## 904 0.00005076541 19698.452
## 905 0.00010153082 9849.226
## 906 0.00010153082 9849.226
## 907 0.00020306164 4924.613
## 908 0.00010153082 9849.226
## 909 0.00020306164 4924.613
## 910 0.00010153082 9849.226
## 911 0.00010153082 9849.226
## 912 0.00005076541 19698.452
## 913 0.00010153082 9849.226
## 914 0.00006768721 14773.839
## 915 0.00020306164 4924.613
## 916 0.00020306164 4924.613
## 917 0.00020306164 4924.613
## 918 0.00010153082 9849.226
## 919 0.00010153082 9849.226
## 920 0.00010153082 9849.226
## 921 0.00010153082 9849.226
## 922 0.00010153082 9849.226
## 923 0.00010153082 9849.226
## 924 0.00020306164 4924.613
## 925 0.00010153082 9849.226
## 926 0.00010153082 9849.226
## 927 0.00010153082 9849.226
## 928 0.00010153082 9849.226
## 929 0.00020306164 4924.613
## 930 0.00010153082 9849.226
## 931 0.00010153082 9849.226
## 932 0.00010153082 9849.226
## 933 0.00006768721 14773.839
## 934 0.00020306164 4924.613
## 935 0.00010153082 9849.226
## 936 0.00010153082 9849.226
## 937 0.00020306164 4924.613
## 938 0.00010153082 9849.226
## 939 0.00010153082 9849.226
## 940 0.00010153082 9849.226
## 941 0.00010153082 9849.226
## 942 0.00010153082 9849.226
## 943 0.00020306164 4924.613
## 944 0.00010153082 9849.226
## 945 0.00020306164 4924.613
## 946 0.00006768721 14773.839
## 947 0.00020306164 4924.613
## 948 0.00020306164 4924.613
## 949 0.00006768721 14773.839
## 950 0.00010153082 9849.226
## 951 0.00010153082 9849.226
## 952 0.00020306164 4924.613
## 953 0.00004061233 24623.065
## 954 0.00006768721 14773.839
## 955 0.00020306164 4924.613
## 956 0.00020306164 4924.613
## 957 0.00010153082 9849.226
## 958 0.00020306164 4924.613
## 959 0.00020306164 4924.613
## 960 0.00010153082 9849.226
## 961 0.00010153082 9849.226
## 962 0.00010153082 9849.226
## 963 0.00005076541 19698.452
## 964 0.00020306164 4924.613
## 965 0.00006768721 14773.839
## 966 0.00020306164 4924.613
## 967 0.00020306164 4924.613
## 968 0.00010153082 9849.226
## 969 0.00020306164 4924.613
## 970 0.00010153082 9849.226
## 971 0.00005076541 19698.452
## 972 0.00010153082 9849.226
## 973 0.00020306164 4924.613
## 974 0.00010153082 9849.226
## 975 0.00020306164 4924.613
## 976 0.00010153082 9849.226
## 977 0.00004061233 24623.065
## 978 0.00010153082 9849.226
## 979 0.00020306164 4924.613
## 980 0.00010153082 9849.226
## 981 0.00020306164 4924.613
## 982 0.00010153082 9849.226
## 983 0.00010153082 9849.226
## 984 0.00010153082 9849.226
## 985 0.00006768721 14773.839
## 986 0.00010153082 9849.226
## 987 0.00005076541 19698.452
## 988 0.00020306164 4924.613
## 989 0.00020306164 4924.613
## 990 0.00020306164 4924.613
## 991 0.00010153082 9849.226
## 992 0.00010153082 9849.226
## 993 0.00010153082 9849.226
## 994 0.00010153082 9849.226
## 995 0.00020306164 4924.613
## 996 0.00005076541 19698.452
## 997 0.00010153082 9849.226
## 998 0.00020306164 4924.613
## 999 0.00010153082 9849.226
## 1000 0.00006768721 14773.839
## 1001 0.00010153082 9849.226
## 1002 0.00010153082 9849.226
## 1003 0.00010153082 9849.226
## 1004 0.00010153082 9849.226
## 1005 0.00006768721 14773.839
## 1006 0.00006768721 14773.839
## 1007 0.00020306164 4924.613
## 1008 0.00010153082 9849.226
## 1009 0.00010153082 9849.226
## 1010 0.00020306164 4924.613
## 1011 0.00020306164 4924.613
## 1012 0.00020306164 4924.613
## 1013 0.00010153082 9849.226
## 1014 0.00010153082 9849.226
## 1015 0.00010153082 9849.226
## 1016 0.00010153082 9849.226
## 1017 0.00020306164 4924.613
## 1018 0.00020306164 4924.613
## 1019 0.00010153082 9849.226
## 1020 0.00020306164 4924.613
## 1021 0.00005076541 19698.452
## 1022 0.00020306164 4924.613
## 1023 0.00020306164 4924.613
## 1024 0.00010153082 9849.226
## 1025 0.00010153082 9849.226
## 1026 0.00010153082 9849.226
## 1027 0.00005076541 19698.452
## 1028 0.00010153082 9849.226
## 1029 0.00010153082 9849.226
## 1030 0.00006768721 14773.839
## 1031 0.00010153082 9849.226
## 1032 0.00010153082 9849.226
## 1033 0.00020306164 4924.613
## 1034 0.00010153082 9849.226
## 1035 0.00010153082 9849.226
## 1036 0.00010153082 9849.226
## 1037 0.00010153082 9849.226
## 1038 0.00020306164 4924.613
## 1039 0.00010153082 9849.226
## 1040 0.00020306164 4924.613
## 1041 0.00006768721 14773.839
## 1042 0.00020306164 4924.613
## 1043 0.00010153082 9849.226
## 1044 0.00010153082 9849.226
## 1045 0.00020306164 4924.613
## 1046 0.00006768721 14773.839
## 1047 0.00006768721 14773.839
## 1048 0.00006768721 14773.839
## 1049 0.00020306164 4924.613
## 1050 0.00020306164 4924.613
## 1051 0.00010153082 9849.226
## 1052 0.00020306164 4924.613
## 1053 0.00020306164 4924.613
## 1054 0.00010153082 9849.226
## 1055 0.00020306164 4924.613
## 1056 0.00020306164 4924.613
## 1057 0.00010153082 9849.226
## 1058 0.00006768721 14773.839
## 1059 0.00006768721 14773.839
## 1060 0.00020306164 4924.613
## 1061 0.00020306164 4924.613
## 1062 0.00010153082 9849.226
## 1063 0.00020306164 4924.613
## 1064 0.00010153082 9849.226
## 1065 0.00005076541 19698.452
## 1066 0.00020306164 4924.613
## 1067 0.00010153082 9849.226
## 1068 0.00020306164 4924.613
## 1069 0.00006768721 14773.839
## 1070 0.00005076541 19698.452
## 1071 0.00010153082 9849.226
## 1072 0.00010153082 9849.226
## 1073 0.00010153082 9849.226
## 1074 0.00010153082 9849.226
## 1075 0.00020306164 4924.613
## 1076 0.00010153082 9849.226
## 1077 0.00020306164 4924.613
## 1078 0.00010153082 9849.226
## 1079 0.00020306164 4924.613
## 1080 0.00006768721 14773.839
## 1081 0.00020306164 4924.613
## 1082 0.00020306164 4924.613
## 1083 0.00010153082 9849.226
## 1084 0.00010153082 9849.226
## 1085 0.00010153082 9849.226
## 1086 0.00006768721 14773.839
## 1087 0.00010153082 9849.226
## 1088 0.00010153082 9849.226
## 1089 0.00010153082 9849.226
## 1090 0.00010153082 9849.226
## 1091 0.00010153082 9849.226
## 1092 0.00010153082 9849.226
## 1093 0.00020306164 4924.613
## 1094 0.00010153082 9849.226
## 1095 0.00010153082 9849.226
## 1096 0.00010153082 9849.226
## 1097 0.00020306164 4924.613
## 1098 0.00020306164 4924.613
## 1099 0.00010153082 9849.226
## 1100 0.00020306164 4924.613
## 1101 0.00006768721 14773.839
## 1102 0.00020306164 4924.613
## 1103 0.00020306164 4924.613
## 1104 0.00020306164 4924.613
## 1105 0.00020306164 4924.613
## 1106 0.00010153082 9849.226
## 1107 0.00020306164 4924.613
## 1108 0.00020306164 4924.613
## 1109 0.00010153082 9849.226
## 1110 0.00010153082 9849.226
## 1111 0.00020306164 4924.613
## 1112 0.00020306164 4924.613
## 1113 0.00010153082 9849.226
## 1114 0.00010153082 9849.226
## 1115 0.00010153082 9849.226
## 1116 0.00020306164 4924.613
## 1117 0.00010153082 9849.226
## 1118 0.00020306164 4924.613
## 1119 0.00020306164 4924.613
## 1120 0.00010153082 9849.226
## 1121 0.00006768721 14773.839
## 1122 0.00020306164 4924.613
## 1123 0.00010153082 9849.226
## 1124 0.00005076541 19698.452
## 1125 0.00020306164 4924.613
## 1126 0.00005076541 19698.452
## 1127 0.00010153082 9849.226
## 1128 0.00006768721 14773.839
## 1129 0.00010153082 9849.226
## 1130 0.00020306164 4924.613
## 1131 0.00005076541 19698.452
## 1132 0.00002256240 44321.517
## 1133 0.00005076541 19698.452
## 1134 0.00010153082 9849.226
## 1135 0.00020306164 4924.613
## 1136 0.00006768721 14773.839
## 1137 0.00010153082 9849.226
## 1138 0.00010153082 9849.226
## 1139 0.00020306164 4924.613
## 1140 0.00010153082 9849.226
## 1141 0.00020306164 4924.613
## 1142 0.00020306164 4924.613
## 1143 0.00010153082 9849.226
## 1144 0.00005076541 19698.452
## 1145 0.00010153082 9849.226
## 1146 0.00010153082 9849.226
## 1147 0.00020306164 4924.613
## 1148 0.00020306164 4924.613
## 1149 0.00010153082 9849.226
## 1150 0.00020306164 4924.613
## 1151 0.00020306164 4924.613
## 1152 0.00020306164 4924.613
## 1153 0.00020306164 4924.613
## 1154 0.00006768721 14773.839
## 1155 0.00010153082 9849.226
## 1156 0.00010153082 9849.226
## 1157 0.00010153082 9849.226
## 1158 0.00020306164 4924.613
## 1159 0.00020306164 4924.613
## 1160 0.00010153082 9849.226
## 1161 0.00010153082 9849.226
## 1162 0.00010153082 9849.226
## 1163 0.00020306164 4924.613
## 1164 0.00020306164 4924.613
## 1165 0.00020306164 4924.613
## 1166 0.00020306164 4924.613
## 1167 0.00010153082 9849.226
## 1168 0.00004061233 24623.065
## 1169 0.00010153082 9849.226
## 1170 0.00010153082 9849.226
## 1171 0.00010153082 9849.226
## 1172 0.00010153082 9849.226
## 1173 0.00010153082 9849.226
## 1174 0.00020306164 4924.613
## 1175 0.00010153082 9849.226
## 1176 0.00010153082 9849.226
## 1177 0.00006768721 14773.839
## 1178 0.00020306164 4924.613
## 1179 0.00010153082 9849.226
## 1180 0.00010153082 9849.226
## 1181 0.00010153082 9849.226
## 1182 0.00010153082 9849.226
## 1183 0.00020306164 4924.613
## 1184 0.00010153082 9849.226
## 1185 0.00020306164 4924.613
## 1186 0.00010153082 9849.226
## 1187 0.00010153082 9849.226
## 1188 0.00020306164 4924.613
## 1189 0.00020306164 4924.613
## 1190 0.00010153082 9849.226
## 1191 0.00020306164 4924.613
## 1192 0.00010153082 9849.226
## 1193 0.00020306164 4924.613
## 1194 0.00010153082 9849.226
## 1195 0.00010153082 9849.226
## 1196 0.00020306164 4924.613
## 1197 0.00010153082 9849.226
## 1198 0.00010153082 9849.226
## 1199 0.00010153082 9849.226
## 1200 0.00010153082 9849.226
## 1201 0.00010153082 9849.226
## 1202 0.00020306164 4924.613
## 1203 0.00010153082 9849.226
## 1204 0.00020306164 4924.613
## 1205 0.00010153082 9849.226
## 1206 0.00020306164 4924.613
## 1207 0.00020306164 4924.613
## 1208 0.00020306164 4924.613
## 1209 0.00010153082 9849.226
## 1210 0.00010153082 9849.226
## 1211 0.00010153082 9849.226
## 1212 0.00010153082 9849.226
## 1213 0.00010153082 9849.226
## 1214 0.00006768721 14773.839
## 1215 0.00020306164 4924.613
## 1216 0.00020306164 4924.613
## 1217 0.00020306164 4924.613
## 1218 0.00020306164 4924.613
## 1219 0.00010153082 9849.226
## 1220 0.00005076541 19698.452
## 1221 0.00006768721 14773.839
## 1222 0.00005076541 19698.452
## 1223 0.00005076541 19698.452
## 1224 0.00005076541 19698.452
## 1225 0.00006768721 14773.839
## 1226 0.00006768721 14773.839
## 1227 0.00010153082 9849.226
## 1228 0.00010153082 9849.226
## 1229 0.00006768721 14773.839
## 1230 0.00006768721 14773.839
## 1231 0.00020306164 4924.613
## 1232 0.00020306164 4924.613
## 1233 0.00010153082 9849.226
## 1234 0.00010153082 9849.226
## 1235 0.00010153082 9849.226
## 1236 0.00010153082 9849.226
## 1237 0.00010153082 9849.226
## 1238 0.00010153082 9849.226
## 1239 0.00010153082 9849.226
## 1240 0.00020306164 4924.613
## 1241 0.00010153082 9849.226
## 1242 0.00010153082 9849.226
## 1243 0.00020306164 4924.613
## 1244 0.00010153082 9849.226
## 1245 0.00006768721 14773.839
## 1246 0.00020306164 4924.613
## 1247 0.00010153082 9849.226
## 1248 0.00020306164 4924.613
## 1249 0.00020306164 4924.613
## 1250 0.00010153082 9849.226
## 1251 0.00010153082 9849.226
## 1252 0.00020306164 4924.613
## 1253 0.00010153082 9849.226
## 1254 0.00010153082 9849.226
## 1255 0.00020306164 4924.613
## 1256 0.00020306164 4924.613
## 1257 0.00010153082 9849.226
## 1258 0.00010153082 9849.226
## 1259 0.00010153082 9849.226
## 1260 0.00020306164 4924.613
## 1261 0.00010153082 9849.226
## 1262 0.00010153082 9849.226
## 1263 0.00006768721 14773.839
## 1264 0.00020306164 4924.613
## 1265 0.00020306164 4924.613
## 1266 0.00020306164 4924.613
## 1267 0.00020306164 4924.613
## 1268 0.00010153082 9849.226
## 1269 0.00010153082 9849.226
## 1270 0.00006768721 14773.839
## 1271 0.00010153082 9849.226
## 1272 0.00010153082 9849.226
## 1273 0.00010153082 9849.226
## 1274 0.00020306164 4924.613
## 1275 0.00010153082 9849.226
## 1276 0.00020306164 4924.613
## 1277 0.00010153082 9849.226
## 1278 0.00010153082 9849.226
## 1279 0.00010153082 9849.226
## 1280 0.00005076541 19698.452
## 1281 0.00010153082 9849.226
## 1282 0.00010153082 9849.226
## 1283 0.00020306164 4924.613
## 1284 0.00020306164 4924.613
## 1285 0.00020306164 4924.613
## 1286 0.00010153082 9849.226
## 1287 0.00020306164 4924.613
## 1288 0.00020306164 4924.613
## 1289 0.00020306164 4924.613
## 1290 0.00010153082 9849.226
## 1291 0.00020306164 4924.613
## 1292 0.00010153082 9849.226
## 1293 0.00003384361 29547.678
## 1294 0.00010153082 9849.226
## 1295 0.00020306164 4924.613
## 1296 0.00010153082 9849.226
## 1297 0.00020306164 4924.613
## 1298 0.00010153082 9849.226
## 1299 0.00010153082 9849.226
## 1300 0.00013681033 7309.389
## 1301 0.00010153082 9849.226
## 1302 0.00010153082 9849.226
## 1303 0.00020306164 4924.613
## 1304 0.00020306164 4924.613
## 1305 0.00020306164 4924.613
## 1306 0.00010153082 9849.226
## 1307 0.00010153082 9849.226
## 1308 0.00010153082 9849.226
## 1309 0.00010153082 9849.226
## 1310 0.00010153082 9849.226
## 1311 0.00020306164 4924.613
## 1312 0.00005076541 19698.452
## 1313 0.00010153082 9849.226
## 1314 0.00010153082 9849.226
## 1315 0.00020306164 4924.613
## 1316 0.00020306164 4924.613
## 1317 0.00010153082 9849.226
## 1318 0.00020306164 4924.613
## 1319 0.00020306164 4924.613
## 1320 0.00010153082 9849.226
## 1321 0.00010153082 9849.226
## 1322 0.00020306164 4924.613
## 1323 0.00020306164 4924.613
## 1324 0.00010153082 9849.226
## 1325 0.00006768721 14773.839
## 1326 0.00010153082 9849.226
## 1327 0.00020306164 4924.613
## 1328 0.00006768721 14773.839
## 1329 0.00010153082 9849.226
## 1330 0.00010153082 9849.226
## 1331 0.00010153082 9849.226
## 1332 0.00010153082 9849.226
## 1333 0.00020306164 4924.613
## 1334 0.00006768721 14773.839
## 1335 0.00006768721 14773.839
## 1336 0.00010153082 9849.226
## 1337 0.00020306164 4924.613
## 1338 0.00010153082 9849.226
## 1339 0.00020306164 4924.613
## 1340 0.00020306164 4924.613
## 1341 0.00020306164 4924.613
## 1342 0.00020306164 4924.613
## 1343 0.00020306164 4924.613
## 1344 0.00005076541 19698.452
## 1345 0.00020306164 4924.613
## 1346 0.00006768721 14773.839
## 1347 0.00020306164 4924.613
## 1348 0.00010153082 9849.226
## 1349 0.00020306164 4924.613
## 1350 0.00006768721 14773.839
## 1351 0.00020306164 4924.613
## 1352 0.00010153082 9849.226
## 1353 0.00010153082 9849.226
## 1354 0.00010153082 9849.226
## 1355 0.00010153082 9849.226
## 1356 0.00020306164 4924.613
## 1357 0.00010153082 9849.226
## 1358 0.00010153082 9849.226
## 1359 0.00010153082 9849.226
## 1360 0.00020306164 4924.613
## 1361 0.00020306164 4924.613
## 1362 0.00020306164 4924.613
## 1363 0.00010153082 9849.226
## 1364 0.00010153082 9849.226
## 1365 0.00010153082 9849.226
## 1366 0.00010153082 9849.226
## 1367 0.00010153082 9849.226
## 1368 0.00010153082 9849.226
## 1369 0.00010153082 9849.226
## 1370 0.00005076541 19698.452
## 1371 0.00020306164 4924.613
## 1372 0.00020306164 4924.613
## 1373 0.00020306164 4924.613
## 1374 0.00010153082 9849.226
## 1375 0.00010153082 9849.226
## 1376 0.00010153082 9849.226
## 1377 0.00010153082 9849.226
## 1378 0.00010153082 9849.226
## 1379 0.00006768721 14773.839
## 1380 0.00020306164 4924.613
## 1381 0.00010153082 9849.226
## 1382 0.00020306164 4924.613
## 1383 0.00006768721 14773.839
## 1384 0.00010153082 9849.226
## 1385 0.00020306164 4924.613
## 1386 0.00006768721 14773.839
## 1387 0.00020306164 4924.613
## 1388 0.00010153082 9849.226
## 1389 0.00020306164 4924.613
## 1390 0.00020306164 4924.613
## 1391 0.00010153082 9849.226
## 1392 0.00010153082 9849.226
## 1393 0.00010153082 9849.226
## 1394 0.00005076541 19698.452
## 1395 0.00010153082 9849.226
## 1396 0.00006768721 14773.839
## 1397 0.00010153082 9849.226
## 1398 0.00010153082 9849.226
## 1399 0.00010153082 9849.226
## 1400 0.00010153082 9849.226
## 1401 0.00010153082 9849.226
## 1402 0.00005076541 19698.452
## 1403 0.00010153082 9849.226
## 1404 0.00020306164 4924.613
## 1405 0.00010153082 9849.226
## 1406 0.00020306164 4924.613
## 1407 0.00020306164 4924.613
## 1408 0.00010153082 9849.226
## 1409 0.00020306164 4924.613
## 1410 0.00020306164 4924.613
## 1411 0.00020306164 4924.613
## 1412 0.00020306164 4924.613
## 1413 0.00010153082 9849.226
## 1414 0.00020306164 4924.613
## 1415 0.00020306164 4924.613
## 1416 0.00020306164 4924.613
## 1417 0.00010153082 9849.226
## 1418 0.00020306164 4924.613
## 1419 0.00010153082 9849.226
## 1420 0.00010153082 9849.226
## 1421 0.00020306164 4924.613
## 1422 0.00010153082 9849.226
## 1423 0.00006768721 14773.839
## 1424 0.00010153082 9849.226
## 1425 0.00020306164 4924.613
## 1426 0.00010153082 9849.226
## 1427 0.00020306164 4924.613
## 1428 0.00010153082 9849.226
## 1429 0.00010153082 9849.226
## 1430 0.00010153082 9849.226
## 1431 0.00020306164 4924.613
## 1432 0.00010153082 9849.226
## 1433 0.00010153082 9849.226
## 1434 0.00006768721 14773.839
## 1435 0.00010153082 9849.226
## 1436 0.00020306164 4924.613
## 1437 0.00006768721 14773.839
## 1438 0.00010153082 9849.226
## 1439 0.00020306164 4924.613
## 1440 0.00010153082 9849.226
## 1441 0.00010153082 9849.226
## 1442 0.00020306164 4924.613
## 1443 0.00010153082 9849.226
## 1444 0.00020306164 4924.613
## 1445 0.00010153082 9849.226
## 1446 0.00010153082 9849.226
## 1447 0.00010153082 9849.226
## 1448 0.00005076541 19698.452
## 1449 0.00020306164 4924.613
## 1450 0.00020306164 4924.613
## 1451 0.00020306164 4924.613
## 1452 0.00020306164 4924.613
## 1453 0.00020306164 4924.613
## 1454 0.00005076541 19698.452
## 1455 0.00020306164 4924.613
## 1456 0.00010153082 9849.226
## 1457 0.00020306164 4924.613
## 1458 0.00010153082 9849.226
## 1459 0.00010153082 9849.226
## 1460 0.00010153082 9849.226
## 1461 0.00020306164 4924.613
## 1462 0.00010153082 9849.226
## 1463 0.00010153082 9849.226
## 1464 0.00010153082 9849.226
## 1465 0.00010153082 9849.226
## 1466 0.00010153082 9849.226
## 1467 0.00020306164 4924.613
## 1468 0.00005076541 19698.452
## 1469 0.00010153082 9849.226
## 1470 0.00010153082 9849.226
## 1471 0.00010153082 9849.226
## 1472 0.00010153082 9849.226
## 1473 0.00005076541 19698.452
## 1474 0.00020306164 4924.613
## 1475 0.00010153082 9849.226
## 1476 0.00010153082 9849.226
## 1477 0.00006768721 14773.839
## 1478 0.00006768721 14773.839
## 1479 0.00020306164 4924.613
## 1480 0.00020306164 4924.613
## 1481 0.00006768721 14773.839
## 1482 0.00010153082 9849.226
## 1483 0.00006768721 14773.839
## 1484 0.00006768721 14773.839
## 1485 0.00010153082 9849.226
## 1486 0.00010153082 9849.226
## 1487 0.00020306164 4924.613
## 1488 0.00020306164 4924.613
## 1489 0.00010153082 9849.226
## 1490 0.00010153082 9849.226
## 1491 0.00010153082 9849.226
## 1492 0.00010153082 9849.226
## 1493 0.00010153082 9849.226
## 1494 0.00010153082 9849.226
## 1495 0.00020306164 4924.613
## 1496 0.00020306164 4924.613
## 1497 0.00010153082 9849.226
## 1498 0.00020306164 4924.613
## 1499 0.00010153082 9849.226
## 1500 0.00020306164 4924.613
## 1501 0.00020306164 4924.613
## 1502 0.00020306164 4924.613
## 1503 0.00010153082 9849.226
## 1504 0.00010153082 9849.226
## 1505 0.00020306164 4924.613
## 1506 0.00010153082 9849.226
## 1507 0.00020306164 4924.613
## 1508 0.00020306164 4924.613
## 1509 0.00010153082 9849.226
## 1510 0.00020306164 4924.613
## 1511 0.00010153082 9849.226
## 1512 0.00004061233 24623.065
## 1513 0.00020306164 4924.613
## 1514 0.00005076541 19698.452
## 1515 0.00010153082 9849.226
## 1516 0.00020306164 4924.613
## 1517 0.00020306164 4924.613
## 1518 0.00020306164 4924.613
## 1519 0.00010153082 9849.226
## 1520 0.00006768721 14773.839
## 1521 0.00010153082 9849.226
## 1522 0.00010153082 9849.226
## 1523 0.00010153082 9849.226
## 1524 0.00010153082 9849.226
## 1525 0.00006768721 14773.839
## 1526 0.00010153082 9849.226
## 1527 0.00006768721 14773.839
## 1528 0.00020306164 4924.613
## 1529 0.00010153082 9849.226
## 1530 0.00010153082 9849.226
## 1531 0.00010153082 9849.226
## 1532 0.00010153082 9849.226
## 1533 0.00010153082 9849.226
## 1534 0.00010153082 9849.226
## 1535 0.00010153082 9849.226
## 1536 0.00020306164 4924.613
## 1537 0.00010153082 9849.226
## 1538 0.00006768721 14773.839
## 1539 0.00010153082 9849.226
## 1540 0.00010153082 9849.226
## 1541 0.00010153082 9849.226
## 1542 0.00010153082 9849.226
## 1543 0.00020306164 4924.613
## 1544 0.00010153082 9849.226
## 1545 0.00010153082 9849.226
## 1546 0.00006768721 14773.839
## 1547 0.00020306164 4924.613
## 1548 0.00020306164 4924.613
## 1549 0.00006768721 14773.839
## 1550 0.00010153082 9849.226
## 1551 0.00010153082 9849.226
## 1552 0.00020306164 4924.613
## 1553 0.00010153082 9849.226
## 1554 0.00010153082 9849.226
## 1555 0.00020306164 4924.613
## 1556 0.00010153082 9849.226
## 1557 0.00010153082 9849.226
## 1558 0.00020306164 4924.613
## 1559 0.00010153082 9849.226
## 1560 0.00006768721 14773.839
## 1561 0.00010153082 9849.226
## 1562 0.00020306164 4924.613
## 1563 0.00010153082 9849.226
## 1564 0.00020306164 4924.613
## 1565 0.00006768721 14773.839
## 1566 0.00010153082 9849.226
## 1567 0.00020306164 4924.613
## 1568 0.00010153082 9849.226
## 1569 0.00020306164 4924.613
## 1570 0.00010153082 9849.226
## 1571 0.00010153082 9849.226
## 1572 0.00020306164 4924.613
## 1573 0.00006768721 14773.839
## 1574 0.00020306164 4924.613
## 1575 0.00010153082 9849.226
## 1576 0.00010153082 9849.226
## 1577 0.00020306164 4924.613
## 1578 0.00010153082 9849.226
## 1579 0.00020306164 4924.613
## 1580 0.00005076541 19698.452
## 1581 0.00010153082 9849.226
## 1582 0.00010153082 9849.226
## 1583 0.00004061233 24623.065
## 1584 0.00006768721 14773.839
## 1585 0.00010153082 9849.226
## 1586 0.00010153082 9849.226
## 1587 0.00020306164 4924.613
## 1588 0.00020306164 4924.613
## 1589 0.00005076541 19698.452
## 1590 0.00020306164 4924.613
## 1591 0.00010153082 9849.226
## 1592 0.00010153082 9849.226
## 1593 0.00010153082 9849.226
## 1594 0.00005076541 19698.452
## 1595 0.00020306164 4924.613
## 1596 0.00020306164 4924.613
## 1597 0.00010153082 9849.226
## 1598 0.00020306164 4924.613
## 1599 0.00010153082 9849.226
## 1600 0.00020306164 4924.613
## 1601 0.00020306164 4924.613
## 1602 0.00010153082 9849.226
## 1603 0.00020306164 4924.613
## 1604 0.00010153082 9849.226
## 1605 0.00010153082 9849.226
## 1606 0.00020306164 4924.613
## 1607 0.00010153082 9849.226
## 1608 0.00010153082 9849.226
## 1609 0.00020306164 4924.613
## 1610 0.00010153082 9849.226
## 1611 0.00010153082 9849.226
## 1612 0.00010153082 9849.226
## 1613 0.00010153082 9849.226
## 1614 0.00010153082 9849.226
## 1615 0.00010153082 9849.226
## 1616 0.00020306164 4924.613
## 1617 0.00010153082 9849.226
## 1618 0.00005076541 19698.452
## 1619 0.00020306164 4924.613
## 1620 0.00020306164 4924.613
## 1621 0.00020306164 4924.613
## 1622 0.00020306164 4924.613
## 1623 0.00010153082 9849.226
## 1624 0.00020306164 4924.613
## 1625 0.00010153082 9849.226
## 1626 0.00020306164 4924.613
## 1627 0.00010153082 9849.226
## 1628 0.00020306164 4924.613
## 1629 0.00004061233 24623.065
## 1630 0.00006768721 14773.839
## 1631 0.00010153082 9849.226
## 1632 0.00020306164 4924.613
## 1633 0.00010153082 9849.226
## 1634 0.00010153082 9849.226
## 1635 0.00010153082 9849.226
## 1636 0.00010153082 9849.226
## 1637 0.00020306164 4924.613
## 1638 0.00010153082 9849.226
## 1639 0.00010153082 9849.226
## 1640 0.00020306164 4924.613
## 1641 0.00010153082 9849.226
## 1642 0.00010153082 9849.226
## 1643 0.00010153082 9849.226
## 1644 0.00010153082 9849.226
## 1645 0.00010153082 9849.226
## 1646 0.00010153082 9849.226
## 1647 0.00010153082 9849.226
## 1648 0.00010153082 9849.226
## 1649 0.00010153082 9849.226
## 1650 0.00010153082 9849.226
## 1651 0.00010153082 9849.226
## 1652 0.00005076541 19698.452
## 1653 0.00010153082 9849.226
## 1654 0.00020306164 4924.613
## 1655 0.00010153082 9849.226
## 1656 0.00010153082 9849.226
## 1657 0.00010153082 9849.226
## 1658 0.00020306164 4924.613
## 1659 0.00010153082 9849.226
## 1660 0.00010153082 9849.226
## 1661 0.00010153082 9849.226
## 1662 0.00020306164 4924.613
## 1663 0.00006768721 14773.839
## 1664 0.00020306164 4924.613
## 1665 0.00020306164 4924.613
## 1666 0.00005076541 19698.452
## 1667 0.00010153082 9849.226
## 1668 0.00020306164 4924.613
## 1669 0.00010153082 9849.226
## 1670 0.00010153082 9849.226
## 1671 0.00020306164 4924.613
## 1672 0.00010153082 9849.226
## 1673 0.00010153082 9849.226
## 1674 0.00010153082 9849.226
## 1675 0.00010153082 9849.226
## 1676 0.00010153082 9849.226
## 1677 0.00010153082 9849.226
## 1678 0.00020306164 4924.613
## 1679 0.00020306164 4924.613
## 1680 0.00005076541 19698.452
## 1681 0.00020306164 4924.613
## 1682 0.00020306164 4924.613
## 1683 0.00010153082 9849.226
## 1684 0.00010153082 9849.226
## 1685 0.00006768721 14773.839
## 1686 0.00020306164 4924.613
## 1687 0.00010153082 9849.226
## 1688 0.00020306164 4924.613
## 1689 0.00020306164 4924.613
## 1690 0.00010153082 9849.226
## 1691 0.00020306164 4924.613
## 1692 0.00020306164 4924.613
## 1693 0.00020306164 4924.613
## 1694 0.00006768721 14773.839
## 1695 0.00006768721 14773.839
## 1696 0.00010153082 9849.226
## 1697 0.00010153082 9849.226
## 1698 0.00010153082 9849.226
## 1699 0.00010153082 9849.226
## 1700 0.00010153082 9849.226
## 1701 0.00010153082 9849.226
## 1702 0.00020306164 4924.613
## 1703 0.00010153082 9849.226
## 1704 0.00020306164 4924.613
## 1705 0.00010153082 9849.226
## 1706 0.00020306164 4924.613
## 1707 0.00010153082 9849.226
## 1708 0.00010153082 9849.226
## 1709 0.00006768721 14773.839
## 1710 0.00010153082 9849.226
## 1711 0.00006768721 14773.839
## 1712 0.00010153082 9849.226
## 1713 0.00020306164 4924.613
## 1714 0.00020306164 4924.613
## 1715 0.00010153082 9849.226
## 1716 0.00010153082 9849.226
## 1717 0.00020306164 4924.613
## 1718 0.00010153082 9849.226
## 1719 0.00020306164 4924.613
## 1720 0.00020306164 4924.613
## 1721 0.00005076541 19698.452
## 1722 0.00006768721 14773.839
## 1723 0.00010153082 9849.226
## 1724 0.00020306164 4924.613
## 1725 0.00010153082 9849.226
## 1726 0.00010153082 9849.226
## 1727 0.00020306164 4924.613
## 1728 0.00010153082 9849.226
## 1729 0.00020306164 4924.613
## 1730 0.00010153082 9849.226
## 1731 0.00010153082 9849.226
## 1732 0.00010153082 9849.226
## 1733 0.00020306164 4924.613
## 1734 0.00010153082 9849.226
## 1735 0.00010153082 9849.226
## 1736 0.00006768721 14773.839
## 1737 0.00010153082 9849.226
## 1738 0.00010153082 9849.226
## 1739 0.00020306164 4924.613
## 1740 0.00010153082 9849.226
## 1741 0.00020306164 4924.613
## 1742 0.00010153082 9849.226
## 1743 0.00010153082 9849.226
## 1744 0.00006768721 14773.839
## 1745 0.00006768721 14773.839
## 1746 0.00010153082 9849.226
## 1747 0.00006768721 14773.839
## 1748 0.00010153082 9849.226
## 1749 0.00010153082 9849.226
## 1750 0.00010153082 9849.226
## 1751 0.00020306164 4924.613
## 1752 0.00010153082 9849.226
## 1753 0.00010153082 9849.226
## 1754 0.00010153082 9849.226
## 1755 0.00006768721 14773.839
## 1756 0.00020306164 4924.613
## 1757 0.00010153082 9849.226
## 1758 0.00020306164 4924.613
## 1759 0.00010153082 9849.226
## 1760 0.00010153082 9849.226
## 1761 0.00020306164 4924.613
## 1762 0.00010153082 9849.226
## 1763 0.00020306164 4924.613
## 1764 0.00010153082 9849.226
## 1765 0.00020306164 4924.613
## 1766 0.00006768721 14773.839
## 1767 0.00010153082 9849.226
## 1768 0.00010153082 9849.226
## 1769 0.00010153082 9849.226
## 1770 0.00010153082 9849.226
## 1771 0.00006768721 14773.839
## 1772 0.00010153082 9849.226
## 1773 0.00006768721 14773.839
## 1774 0.00006768721 14773.839
## 1775 0.00006768721 14773.839
## 1776 0.00020306164 4924.613
## 1777 0.00020306164 4924.613
## 1778 0.00020306164 4924.613
## 1779 0.00006768721 14773.839
## 1780 0.00010153082 9849.226
## 1781 0.00010153082 9849.226
## 1782 0.00020306164 4924.613
## 1783 0.00020306164 4924.613
## 1784 0.00010153082 9849.226
## 1785 0.00010153082 9849.226
## 1786 0.00010153082 9849.226
## 1787 0.00020306164 4924.613
## 1788 0.00010153082 9849.226
## 1789 0.00010153082 9849.226
## 1790 0.00010153082 9849.226
## 1791 0.00010153082 9849.226
## 1792 0.00005076541 19698.452
## 1793 0.00005076541 19698.452
## 1794 0.00010153082 9849.226
## 1795 0.00020306164 4924.613
## 1796 0.00020306164 4924.613
## 1797 0.00010153082 9849.226
## 1798 0.00010153082 9849.226
## 1799 0.00010153082 9849.226
## 1800 0.00010153082 9849.226
## 1801 0.00020306164 4924.613
## 1802 0.00010153082 9849.226
## 1803 0.00010153082 9849.226
## 1804 0.00010153082 9849.226
## 1805 0.00020306164 4924.613
## 1806 0.00010153082 9849.226
## 1807 0.00020306164 4924.613
## 1808 0.00020306164 4924.613
## 1809 0.00010153082 9849.226
## 1810 0.00010153082 9849.226
## 1811 0.00010153082 9849.226
## 1812 0.00020306164 4924.613
## 1813 0.00010153082 9849.226
## 1814 0.00020306164 4924.613
## 1815 0.00010153082 9849.226
## 1816 0.00010153082 9849.226
## 1817 0.00010153082 9849.226
## 1818 0.00010153082 9849.226
## 1819 0.00010153082 9849.226
## 1820 0.00020306164 4924.613
## 1821 0.00020306164 4924.613
## 1822 0.00010153082 9849.226
## 1823 0.00010153082 9849.226
## 1824 0.00010153082 9849.226
## 1825 0.00006768721 14773.839
## 1826 0.00010153082 9849.226
## 1827 0.00010153082 9849.226
## 1828 0.00010153082 9849.226
## 1829 0.00006768721 14773.839
## 1830 0.00010153082 9849.226
## 1831 0.00010153082 9849.226
## 1832 0.00020306164 4924.613
## 1833 0.00010153082 9849.226
## 1834 0.00006768721 14773.839
## 1835 0.00010153082 9849.226
## 1836 0.00010153082 9849.226
## 1837 0.00020306164 4924.613
## 1838 0.00020306164 4924.613
## 1839 0.00006768721 14773.839
## 1840 0.00010153082 9849.226
## 1841 0.00010153082 9849.226
## 1842 0.00010153082 9849.226
## 1843 0.00020306164 4924.613
## 1844 0.00010153082 9849.226
## 1845 0.00020306164 4924.613
## 1846 0.00020306164 4924.613
## 1847 0.00020306164 4924.613
## 1848 0.00020306164 4924.613
## 1849 0.00020306164 4924.613
## 1850 0.00020306164 4924.613
## 1851 0.00020306164 4924.613
## 1852 0.00020306164 4924.613
## 1853 0.00005076541 19698.452
## 1854 0.00010153082 9849.226
## 1855 0.00010153082 9849.226
## 1856 0.00010153082 9849.226
## 1857 0.00010153082 9849.226
## 1858 0.00020306164 4924.613
## 1859 0.00010153082 9849.226
## 1860 0.00020306164 4924.613
## 1861 0.00020306164 4924.613
## 1862 0.00020306164 4924.613
## 1863 0.00020306164 4924.613
## 1864 0.00010153082 9849.226
## 1865 0.00006768721 14773.839
## 1866 0.00010153082 9849.226
## 1867 0.00010153082 9849.226
## 1868 0.00010153082 9849.226
## 1869 0.00020306164 4924.613
## 1870 0.00010153082 9849.226
## 1871 0.00010153082 9849.226
## 1872 0.00006768721 14773.839
## 1873 0.00010153082 9849.226
## 1874 0.00010153082 9849.226
## 1875 0.00020306164 4924.613
## 1876 0.00020306164 4924.613
## 1877 0.00010153082 9849.226
## 1878 0.00010153082 9849.226
## 1879 0.00010153082 9849.226
## 1880 0.00010153082 9849.226
## 1881 0.00006768721 14773.839
## 1882 0.00020306164 4924.613
## 1883 0.00020306164 4924.613
## 1884 0.00010153082 9849.226
## 1885 0.00020306164 4924.613
## 1886 0.00006768721 14773.839
## 1887 0.00006768721 14773.839
## 1888 0.00010153082 9849.226
## 1889 0.00010153082 9849.226
## 1890 0.00005076541 19698.452
## 1891 0.00010153082 9849.226
## 1892 0.00010153082 9849.226
## 1893 0.00010153082 9849.226
## 1894 0.00010153082 9849.226
## 1895 0.00010153082 9849.226
## 1896 0.00004061233 24623.065
## 1897 0.00010153082 9849.226
## 1898 0.00020306164 4924.613
## 1899 0.00020306164 4924.613
## 1900 0.00010153082 9849.226
## 1901 0.00020306164 4924.613
## 1902 0.00010153082 9849.226
## 1903 0.00004061233 24623.065
## 1904 0.00010153082 9849.226
## 1905 0.00010153082 9849.226
## 1906 0.00010153082 9849.226
## 1907 0.00020306164 4924.613
## 1908 0.00020306164 4924.613
## 1909 0.00005076541 19698.452
## 1910 0.00010153082 9849.226
## 1911 0.00006768721 14773.839
## 1912 0.00020306164 4924.613
## 1913 0.00010153082 9849.226
## 1914 0.00020306164 4924.613
## 1915 0.00020306164 4924.613
## 1916 0.00010153082 9849.226
## 1917 0.00010153082 9849.226
## 1918 0.00010153082 9849.226
## 1919 0.00010153082 9849.226
## 1920 0.00010153082 9849.226
## 1921 0.00010153082 9849.226
## 1922 0.00020306164 4924.613
## 1923 0.00010153082 9849.226
## 1924 0.00010153082 9849.226
## 1925 0.00010153082 9849.226
## 1926 0.00020306164 4924.613
## 1927 0.00005076541 19698.452
## 1928 0.00010153082 9849.226
## 1929 0.00010153082 9849.226
## 1930 0.00010153082 9849.226
## 1931 0.00020306164 4924.613
## 1932 0.00010153082 9849.226
## 1933 0.00010153082 9849.226
## 1934 0.00010153082 9849.226
## 1935 0.00020306164 4924.613
## 1936 0.00010153082 9849.226
## 1937 0.00006768721 14773.839
## 1938 0.00020306164 4924.613
## 1939 0.00020306164 4924.613
## 1940 0.00020306164 4924.613
## 1941 0.00010153082 9849.226
## 1942 0.00010153082 9849.226
## 1943 0.00010153082 9849.226
## 1944 0.00005076541 19698.452
## 1945 0.00006768721 14773.839
## 1946 0.00010153082 9849.226
## 1947 0.00010153082 9849.226
## 1948 0.00010153082 9849.226
## 1949 0.00010153082 9849.226
## 1950 0.00010153082 9849.226
## 1951 0.00010153082 9849.226
## 1952 0.00020306164 4924.613
## 1953 NA NA
## 1954 0.00020306164 4924.613
## 1955 0.00020306164 4924.613
## 1956 0.00010153082 9849.226
## 1957 0.00020306164 4924.613
## 1958 0.00020306164 4924.613
## 1959 0.00006768721 14773.839
## 1960 0.00010153082 9849.226
## 1961 0.00010153082 9849.226
## 1962 0.00020306164 4924.613
## 1963 0.00020306164 4924.613
## 1964 0.00020306164 4924.613
## 1965 0.00004061233 24623.065
## 1966 0.00020306164 4924.613
## 1967 0.00020306164 4924.613
## 1968 0.00010153082 9849.226
## 1969 0.00020306164 4924.613
## 1970 0.00010153082 9849.226
## 1971 0.00010153082 9849.226
## 1972 0.00020306164 4924.613
## 1973 0.00010153082 9849.226
## 1974 0.00010153082 9849.226
## 1975 0.00010153082 9849.226
## 1976 0.00020306164 4924.613
## 1977 0.00020306164 4924.613
## 1978 0.00020306164 4924.613
## 1979 0.00010153082 9849.226
## 1980 0.00010153082 9849.226
## 1981 0.00020306164 4924.613
## 1982 0.00006768721 14773.839
## 1983 0.00020306164 4924.613
## 1984 0.00020306164 4924.613
## 1985 0.00010153082 9849.226
## 1986 0.00010153082 9849.226
## 1987 0.00006768721 14773.839
## 1988 0.00010153082 9849.226
## 1989 0.00010153082 9849.226
## 1990 0.00010153082 9849.226
## 1991 0.00020306164 4924.613
## 1992 0.00010153082 9849.226
## 1993 0.00005076541 19698.452
## 1994 0.00010153082 9849.226
## 1995 0.00006768721 14773.839
## 1996 0.00010153082 9849.226
## 1997 0.00010153082 9849.226
## 1998 0.00020306164 4924.613
## 1999 0.00020306164 4924.613
## 2000 0.00020306164 4924.613
## 2001 0.00010153082 9849.226
## 2002 0.00006768721 14773.839
## 2003 0.00010153082 9849.226
## 2004 0.00020306164 4924.613
## 2005 0.00006768721 14773.839
## 2006 0.00010153082 9849.226
## 2007 0.00010153082 9849.226
## 2008 0.00010153082 9849.226
## 2009 0.00020306164 4924.613
## 2010 0.00020306164 4924.613
## 2011 0.00020306164 4924.613
## 2012 0.00010153082 9849.226
## 2013 0.00006768721 14773.839
## 2014 0.00020306164 4924.613
## 2015 0.00010153082 9849.226
## 2016 0.00010153082 9849.226
## 2017 0.00010153082 9849.226
## 2018 0.00010153082 9849.226
## 2019 0.00020306164 4924.613
## 2020 0.00010153082 9849.226
## 2021 0.00020306164 4924.613
## 2022 0.00010153082 9849.226
## 2023 0.00010153082 9849.226
## 2024 0.00020306164 4924.613
## 2025 0.00010153082 9849.226
## 2026 0.00010153082 9849.226
## 2027 0.00010153082 9849.226
## 2028 0.00020306164 4924.613
## 2029 0.00006768721 14773.839
## 2030 0.00005076541 19698.452
## 2031 0.00010153082 9849.226
## 2032 0.00010153082 9849.226
## 2033 0.00020306164 4924.613
## 2034 0.00010153082 9849.226
## 2035 0.00005076541 19698.452
## 2036 0.00020306164 4924.613
## 2037 0.00010153082 9849.226
## 2038 0.00010153082 9849.226
## 2039 0.00020306164 4924.613
## 2040 0.00020306164 4924.613
## 2041 0.00010153082 9849.226
## 2042 0.00010153082 9849.226
## 2043 0.00010153082 9849.226
## 2044 0.00010153082 9849.226
## 2045 0.00020306164 4924.613
## 2046 0.00020306164 4924.613
## 2047 0.00020306164 4924.613
## 2048 0.00010153082 9849.226
## 2049 0.00020306164 4924.613
## 2050 0.00006768721 14773.839
## 2051 0.00020306164 4924.613
## 2052 0.00020306164 4924.613
## 2053 0.00006768721 14773.839
## 2054 0.00002538271 39396.904
## 2055 0.00010153082 9849.226
## 2056 0.00006768721 14773.839
## 2057 0.00020306164 4924.613
## 2058 0.00020306164 4924.613
## 2059 0.00001692180 59095.356
## 2060 0.00010153082 9849.226
## 2061 0.00010153082 9849.226
## 2062 0.00010153082 9849.226
## 2063 0.00010153082 9849.226
## 2064 0.00020306164 4924.613
## 2065 0.00010153082 9849.226
## 2066 0.00020306164 4924.613
## 2067 0.00010153082 9849.226
## 2068 0.00010153082 9849.226
## 2069 0.00020306164 4924.613
## 2070 0.00010153082 9849.226
## 2071 0.00006768721 14773.839
## 2072 0.00010153082 9849.226
## 2073 0.00010153082 9849.226
## 2074 0.00010153082 9849.226
## 2075 0.00010153082 9849.226
## 2076 0.00020306164 4924.613
## 2077 0.00010153082 9849.226
## 2078 0.00020306164 4924.613
## 2079 0.00010153082 9849.226
## 2080 0.00020306164 4924.613
## 2081 0.00005076541 19698.452
## 2082 0.00010153082 9849.226
## 2083 0.00020306164 4924.613
## 2084 0.00010153082 9849.226
## 2085 0.00010153082 9849.226
## 2086 0.00006768721 14773.839
## 2087 0.00010153082 9849.226
## 2088 0.00010153082 9849.226
## 2089 0.00010153082 9849.226
## 2090 0.00010153082 9849.226
## 2091 0.00010153082 9849.226
## 2092 0.00006768721 14773.839
## 2093 0.00010153082 9849.226
## 2094 0.00020306164 4924.613
## 2095 0.00020306164 4924.613
## 2096 0.00010153082 9849.226
## 2097 0.00005076541 19698.452
## 2098 0.00020306164 4924.613
## 2099 0.00010153082 9849.226
## 2100 0.00010153082 9849.226
## 2101 0.00020306164 4924.613
## 2102 0.00010153082 9849.226
## 2103 0.00010153082 9849.226
## 2104 0.00006768721 14773.839
## 2105 0.00006768721 14773.839
## 2106 0.00020306164 4924.613
## 2107 0.00010153082 9849.226
## 2108 0.00020306164 4924.613
## 2109 0.00006768721 14773.839
## 2110 0.00006768721 14773.839
## 2111 0.00010153082 9849.226
## 2112 0.00020306164 4924.613
## 2113 0.00020306164 4924.613
## 2114 0.00010153082 9849.226
## 2115 0.00010153082 9849.226
## 2116 0.00006768721 14773.839
## 2117 0.00010153082 9849.226
## 2118 0.00010153082 9849.226
## 2119 0.00010153082 9849.226
## 2120 0.00010153082 9849.226
## 2121 0.00010153082 9849.226
## 2122 0.00020306164 4924.613
## 2123 0.00006768721 14773.839
## 2124 0.00010153082 9849.226
## 2125 0.00006768721 14773.839
## 2126 0.00010153082 9849.226
## 2127 0.00020306164 4924.613
## 2128 0.00020306164 4924.613
## 2129 0.00020306164 4924.613
## 2130 0.00010153082 9849.226
## 2131 0.00010153082 9849.226
## 2132 0.00006768721 14773.839
## 2133 0.00020306164 4924.613
## 2134 0.00010153082 9849.226
## 2135 0.00010153082 9849.226
## 2136 0.00020306164 4924.613
## 2137 0.00010153082 9849.226
## 2138 0.00010153082 9849.226
## 2139 0.00010153082 9849.226
## 2140 0.00010153082 9849.226
## 2141 0.00010153082 9849.226
## 2142 0.00010153082 9849.226
## 2143 0.00010153082 9849.226
## 2144 0.00020306164 4924.613
## 2145 0.00020306164 4924.613
## 2146 0.00020306164 4924.613
## 2147 0.00010153082 9849.226
## 2148 0.00006768721 14773.839
## 2149 0.00010153082 9849.226
## 2150 0.00020306164 4924.613
## 2151 0.00005076541 19698.452
## 2152 0.00006768721 14773.839
## 2153 0.00020306164 4924.613
## 2154 0.00010153082 9849.226
## 2155 0.00020306164 4924.613
## 2156 0.00005076541 19698.452
## 2157 0.00010153082 9849.226
## 2158 0.00010153082 9849.226
## 2159 0.00010153082 9849.226
## 2160 0.00010153082 9849.226
## 2161 0.00005076541 19698.452
## 2162 0.00020306164 4924.613
## 2163 0.00020306164 4924.613
## 2164 0.00010153082 9849.226
## 2165 0.00010153082 9849.226
## 2166 0.00020306164 4924.613
## 2167 0.00006768721 14773.839
## 2168 0.00020306164 4924.613
## 2169 0.00010153082 9849.226
## 2170 0.00005076541 19698.452
## 2171 0.00020306164 4924.613
## 2172 0.00010153082 9849.226
## 2173 0.00010153082 9849.226
## 2174 0.00006768721 14773.839
## 2175 0.00010153082 9849.226
## 2176 0.00010153082 9849.226
## 2177 0.00010153082 9849.226
## 2178 0.00010153082 9849.226
## 2179 0.00010153082 9849.226
## 2180 0.00020306164 4924.613
## 2181 0.00010153082 9849.226
## 2182 0.00010153082 9849.226
## 2183 0.00006768721 14773.839
## 2184 0.00010153082 9849.226
## 2185 0.00010153082 9849.226
## 2186 0.00010153082 9849.226
## 2187 0.00010153082 9849.226
## 2188 0.00004061233 24623.065
## 2189 0.00010153082 9849.226
## 2190 0.00010153082 9849.226
## 2191 0.00020306164 4924.613
## 2192 0.00010153082 9849.226
## 2193 0.00010153082 9849.226
## 2194 0.00006768721 14773.839
## 2195 0.00020306164 4924.613
## 2196 0.00020306164 4924.613
## 2197 0.00005076541 19698.452
## 2198 0.00020306164 4924.613
## 2199 0.00020306164 4924.613
## 2200 0.00004061233 24623.065
## 2201 0.00010153082 9849.226
## 2202 0.00010153082 9849.226
## 2203 0.00010153082 9849.226
## 2204 0.00020306164 4924.613
## 2205 0.00020306164 4924.613
## 2206 0.00010153082 9849.226
## 2207 0.00010153082 9849.226
## 2208 0.00010153082 9849.226
## 2209 0.00020306164 4924.613
## 2210 0.00010153082 9849.226
## 2211 0.00020306164 4924.613
## 2212 0.00020306164 4924.613
## 2213 0.00020306164 4924.613
## 2214 0.00001846015 54170.743
## 2215 0.00020306164 4924.613
## 2216 0.00020306164 4924.613
## 2217 0.00010153082 9849.226
## 2218 0.00010153082 9849.226
## 2219 0.00020306164 4924.613
## 2220 0.00020306164 4924.613
## 2221 0.00020306164 4924.613
## 2222 0.00020306164 4924.613
## 2223 0.00020306164 4924.613
## 2224 0.00020306164 4924.613
## 2225 0.00020306164 4924.613
## 2226 0.00010153082 9849.226
## 2227 0.00010153082 9849.226
## 2228 0.00020306164 4924.613
## 2229 0.00010153082 9849.226
## 2230 0.00005076541 19698.452
## 2231 0.00004061233 24623.065
## 2232 0.00010153082 9849.226
## 2233 0.00010153082 9849.226
## 2234 0.00010153082 9849.226
## 2235 0.00020306164 4924.613
## 2236 0.00020306164 4924.613
## 2237 0.00020306164 4924.613
## 2238 0.00020306164 4924.613
## 2239 0.00010153082 9849.226
## 2240 0.00010153082 9849.226
## 2241 0.00010153082 9849.226
## 2242 0.00020306164 4924.613
## 2243 0.00010153082 9849.226
## 2244 0.00020306164 4924.613
## 2245 0.00001269135 78793.809
## 2246 0.00005076541 19698.452
## 2247 0.00010153082 9849.226
## 2248 0.00020306164 4924.613
## 2249 0.00010153082 9849.226
## 2250 0.00010153082 9849.226
## 2251 0.00005076541 19698.452
## 2252 0.00010153082 9849.226
## 2253 0.00010153082 9849.226
## 2254 0.00020306164 4924.613
## 2255 0.00010153082 9849.226
## 2256 0.00020306164 4924.613
## 2257 0.00010153082 9849.226
## 2258 0.00010153082 9849.226
## 2259 0.00010153082 9849.226
## 2260 0.00020306164 4924.613
## 2261 0.00020306164 4924.613
## 2262 0.00010153082 9849.226
## 2263 0.00010153082 9849.226
## 2264 0.00010153082 9849.226
## 2265 0.00020306164 4924.613
## 2266 NA NA
## 2267 NA NA
## 2268 NA NA
## 2269 NA NA
## 2270 NA NA
## 2271 NA NA
## 2272 NA NA
## 2273 NA NA
## 2274 NA NA
## 2275 NA NA
## 2276 NA NA
## 2277 NA NA
## 2278 NA NA
## 2279 NA NA
## 2280 NA NA
## 2281 NA NA
## 2282 NA NA
## 2283 NA NA
## 2284 NA NA
## 2285 NA NA
## 2286 NA NA
## 2287 NA NA
## 2288 NA NA
## 2289 NA NA
## 2290 NA NA
## 2291 NA NA
## 2292 NA NA
## 2293 NA NA
## 2294 NA NA
## 2295 NA NA
## 2296 NA NA
## 2297 NA NA
## 2298 NA NA
## 2299 NA NA
## 2300 NA NA
## 2301 NA NA
## 2302 NA NA
## 2303 NA NA
## 2304 NA NA
## 2305 NA NA
## 2306 NA NA
## 2307 NA NA
## 2308 NA NA
## 2309 NA NA
## 2310 NA NA
## 2311 NA NA
## 2312 NA NA
## 2313 NA NA
## 2314 NA NA
## 2315 NA NA
## 2316 NA NA
## 2317 NA NA
## 2318 NA NA
## 2319 NA NA
## 2320 NA NA
## 2321 NA NA
## 2322 NA NA
## 2323 NA NA
## 2324 NA NA
## 2325 NA NA
## 2326 NA NA
## 2327 NA NA
## 2328 NA NA
## 2329 NA NA
## 2330 NA NA
## 2331 NA NA
## 2332 NA NA
## 2333 NA NA
## 2334 NA NA
## 2335 NA NA
## 2336 NA NA
## 2337 NA NA
## 2338 NA NA
## 2339 NA NA
## 2340 NA NA
## 2341 NA NA
## 2342 NA NA
## 2343 NA NA
## 2344 NA NA
## 2345 NA NA
## 2346 NA NA
## 2347 NA NA
## 2348 NA NA
## 2349 NA NA
## 2350 NA NA
## 2351 NA NA
## 2352 NA NA
## 2353 NA NA
## 2354 NA NA
## 2355 NA NA
## 2356 NA NA
## 2357 NA NA
## 2358 NA NA
## 2359 NA NA
## 2360 NA NA
## 2361 NA NA
## 2362 NA NA
## 2363 NA NA
## 2364 NA NA
## 2365 NA NA
## 2366 NA NA
## 2367 NA NA
## 2368 NA NA
## 2369 NA NA
## 2370 NA NA
## 2371 NA NA
## 2372 NA NA
## 2373 NA NA
## 2374 NA NA
## 2375 NA NA
## 2376 NA NA
## 2377 NA NA
## 2378 NA NA
## 2379 NA NA
## 2380 NA NA
## 2381 NA NA
## 2382 NA NA
## 2383 NA NA
## 2384 NA NA
## 2385 NA NA
## 2386 NA NA
## 2387 NA NA
## 2388 NA NA
## 2389 NA NA
## 2390 NA NA
## 2391 NA NA
## 2392 NA NA
## 2393 NA NA
## 2394 NA NA
## 2395 NA NA
## 2396 NA NA
## 2397 NA NA
## 2398 NA NA
## 2399 NA NA
## 2400 NA NA
## 2401 NA NA
## 2402 NA NA
## 2403 NA NA
## 2404 NA NA
## 2405 NA NA
## 2406 NA NA
## 2407 NA NA
## 2408 NA NA
## 2409 NA NA
## 2410 NA NA
## 2411 NA NA
## 2412 NA NA
## 2413 NA NA
## 2414 NA NA
## 2415 NA NA
## 2416 NA NA
## 2417 NA NA
## 2418 NA NA
## 2419 NA NA
## 2420 NA NA
## 2421 NA NA
## 2422 NA NA
## 2423 NA NA
## 2424 NA NA
## 2425 NA NA
## 2426 NA NA
## 2427 NA NA
## 2428 NA NA
## 2429 NA NA
## 2430 NA NA
## 2431 NA NA
## 2432 NA NA
## 2433 NA NA
## 2434 NA NA
## 2435 NA NA
## 2436 NA NA
## 2437 NA NA
## 2438 NA NA
## 2439 NA NA
## 2440 NA NA
## 2441 NA NA
## 2442 NA NA
## 2443 NA NA
## 2444 NA NA
## 2445 NA NA
## 2446 NA NA
## 2447 NA NA
## 2448 NA NA
## 2449 NA NA
## 2450 NA NA
## 2451 NA NA
## 2452 NA NA
## 2453 NA NA
## 2454 NA NA
## 2455 NA NA
## 2456 NA NA
## 2457 NA NA
## 2458 NA NA
## 2459 NA NA
## 2460 NA NA
## 2461 NA NA
## 2462 NA NA
## 2463 NA NA
## 2464 NA NA
## 2465 NA NA
## 2466 NA NA
## 2467 NA NA
## 2468 NA NA
## 2469 NA NA
## 2470 NA NA
## 2471 NA NA
## 2472 NA NA
## 2473 NA NA
## 2474 NA NA
## 2475 NA NA
## 2476 NA NA
## 2477 NA NA
## 2478 NA NA
## 2479 NA NA
## 2480 NA NA
## 2481 NA NA
## 2482 NA NA
## 2483 NA NA
## 2484 NA NA
## 2485 NA NA
## 2486 NA NA
## 2487 NA NA
## 2488 NA NA
## 2489 NA NA
## 2490 NA NA
## 2491 NA NA
## 2492 NA NA
## 2493 NA NA
## 2494 NA NA
## 2495 NA NA
## 2496 NA NA
## 2497 NA NA
## 2498 NA NA
## 2499 NA NA
## 2500 NA NA
## 2501 NA NA
## 2502 NA NA
## 2503 NA NA
## 2504 NA NA
## 2505 NA NA
## 2506 NA NA
## 2507 NA NA
## 2508 NA NA
## 2509 NA NA
## 2510 NA NA
## 2511 NA NA
## 2512 NA NA
## 2513 NA NA
## 2514 NA NA
## 2515 NA NA
## 2516 NA NA
## 2517 NA NA
## 2518 NA NA
## 2519 NA NA
## 2520 NA NA
## 2521 NA NA
## 2522 NA NA
## 2523 NA NA
## 2524 NA NA
## 2525 NA NA
## 2526 NA NA
## 2527 NA NA
## 2528 NA NA
## 2529 NA NA
## 2530 NA NA
## 2531 NA NA
## 2532 NA NA
## 2533 NA NA
## 2534 NA NA
## 2535 NA NA
## 2536 NA NA
## 2537 NA NA
## 2538 NA NA
## 2539 NA NA
## 2540 NA NA
## 2541 NA NA
## 2542 NA NA
## 2543 NA NA
## 2544 NA NA
## 2545 NA NA
## 2546 NA NA
## 2547 NA NA
## 2548 NA NA
## 2549 NA NA
## 2550 NA NA
## 2551 NA NA
## 2552 NA NA
## 2553 NA NA
## 2554 NA NA
## 2555 NA NA
## 2556 NA NA
## 2557 NA NA
## 2558 NA NA
## 2559 NA NA
## 2560 NA NA
## 2561 NA NA
## 2562 NA NA
## 2563 NA NA
## 2564 NA NA
## 2565 NA NA
## 2566 NA NA
## 2567 NA NA
## 2568 NA NA
## 2569 NA NA
## 2570 NA NA
## 2571 NA NA
## 2572 NA NA
## 2573 NA NA
## 2574 NA NA
## 2575 NA NA
## 2576 NA NA
## 2577 NA NA
## 2578 NA NA
## 2579 NA NA
## 2580 NA NA
## 2581 NA NA
## 2582 NA NA
## 2583 NA NA
## 2584 NA NA
## 2585 NA NA
## 2586 NA NA
## 2587 NA NA
## 2588 NA NA
## 2589 NA NA
## 2590 NA NA
## 2591 NA NA
## 2592 NA NA
## 2593 NA NA
## 2594 NA NA
## 2595 NA NA
## 2596 NA NA
## 2597 NA NA
## 2598 NA NA
## 2599 NA NA
## 2600 NA NA
## 2601 NA NA
## 2602 NA NA
## 2603 NA NA
## 2604 NA NA
## 2605 NA NA
## 2606 NA NA
## 2607 NA NA
## 2608 NA NA
## 2609 NA NA
## 2610 NA NA
## 2611 NA NA
## 2612 NA NA
## 2613 NA NA
## 2614 NA NA
## 2615 NA NA
## 2616 NA NA
## 2617 NA NA
## 2618 NA NA
## 2619 NA NA
## 2620 NA NA
## 2621 NA NA
## 2622 NA NA
## 2623 NA NA
## 2624 NA NA
## 2625 NA NA
## 2626 NA NA
## 2627 NA NA
## 2628 NA NA
## 2629 NA NA
## 2630 NA NA
## 2631 NA NA
## 2632 NA NA
## 2633 NA NA
## 2634 NA NA
## 2635 NA NA
## 2636 NA NA
## 2637 NA NA
## 2638 NA NA
## 2639 NA NA
## 2640 NA NA
## 2641 NA NA
## 2642 NA NA
## 2643 NA NA
## 2644 NA NA
## 2645 NA NA
## 2646 NA NA
## 2647 NA NA
## 2648 NA NA
## 2649 NA NA
## 2650 NA NA
## 2651 NA NA
## 2652 NA NA
## 2653 NA NA
## 2654 NA NA
## 2655 NA NA
## 2656 NA NA
## 2657 NA NA
## 2658 NA NA
## 2659 NA NA
## 2660 NA NA
## 2661 NA NA
## 2662 NA NA
## 2663 NA NA
## 2664 NA NA
## 2665 NA NA
## 2666 NA NA
## 2667 NA NA
## 2668 NA NA
## 2669 NA NA
## 2670 NA NA
## 2671 NA NA
## 2672 NA NA
## 2673 NA NA
## 2674 NA NA
## 2675 NA NA
## 2676 NA NA
## 2677 NA NA
## 2678 NA NA
## 2679 NA NA
## 2680 NA NA
## 2681 NA NA
## 2682 NA NA
## 2683 NA NA
## 2684 NA NA
## 2685 NA NA
## 2686 NA NA
## 2687 NA NA
## 2688 NA NA
## 2689 NA NA
## 2690 NA NA
## 2691 NA NA
## 2692 NA NA
## 2693 NA NA
## 2694 NA NA
## 2695 NA NA
## 2696 NA NA
## 2697 NA NA
## 2698 NA NA
## 2699 NA NA
## 2700 NA NA
## 2701 NA NA
## 2702 NA NA
## 2703 NA NA
## 2704 NA NA
## 2705 NA NA
## 2706 NA NA
## 2707 NA NA
## 2708 NA NA
## 2709 NA NA
## 2710 NA NA
## 2711 NA NA
## 2712 NA NA
## 2713 NA NA
## 2714 NA NA
## 2715 NA NA
## 2716 NA NA
## 2717 NA NA
## 2718 NA NA
## 2719 NA NA
## 2720 NA NA
## 2721 NA NA
## 2722 NA NA
## 2723 NA NA
## 2724 NA NA
## 2725 NA NA
## 2726 NA NA
## 2727 NA NA
## 2728 NA NA
## 2729 NA NA
## 2730 NA NA
## 2731 NA NA
## 2732 NA NA
## 2733 NA NA
## 2734 NA NA
## 2735 NA NA
## 2736 NA NA
## 2737 NA NA
## 2738 NA NA
## 2739 NA NA
## 2740 NA NA
## 2741 NA NA
## 2742 NA NA
## 2743 NA NA
## 2744 NA NA
## 2745 NA NA
## 2746 NA NA
## 2747 NA NA
## 2748 NA NA
## 2749 NA NA
## 2750 NA NA
## 2751 NA NA
## 2752 NA NA
## 2753 NA NA
## 2754 NA NA
## 2755 NA NA
## 2756 NA NA
## 2757 NA NA
## 2758 NA NA
## 2759 NA NA
## 2760 NA NA
## 2761 NA NA
## 2762 NA NA
## 2763 NA NA
## 2764 NA NA
## 2765 NA NA
## 2766 NA NA
## 2767 NA NA
## 2768 NA NA
## 2769 NA NA
## 2770 NA NA
## 2771 NA NA
## 2772 NA NA
## 2773 NA NA
## 2774 NA NA
## 2775 NA NA
## 2776 NA NA
## 2777 NA NA
## 2778 NA NA
## 2779 NA NA
## 2780 NA NA
## 2781 NA NA
## 2782 NA NA
## 2783 NA NA
## 2784 NA NA
## 2785 NA NA
## 2786 NA NA
## 2787 NA NA
## 2788 NA NA
## 2789 NA NA
## 2790 NA NA
## 2791 NA NA
## 2792 NA NA
## 2793 NA NA
## 2794 NA NA
## 2795 NA NA
## 2796 NA NA
## 2797 NA NA
## 2798 NA NA
## 2799 NA NA
## 2800 NA NA
## 2801 NA NA
## 2802 NA NA
## 2803 NA NA
## 2804 NA NA
## 2805 NA NA
## 2806 NA NA
## 2807 NA NA
## 2808 NA NA
## 2809 NA NA
## 2810 NA NA
## 2811 NA NA
## 2812 NA NA
## 2813 NA NA
## 2814 NA NA
## 2815 NA NA
## 2816 NA NA
## 2817 NA NA
## 2818 NA NA
## 2819 NA NA
## 2820 NA NA
## 2821 NA NA
## 2822 NA NA
## 2823 NA NA
## 2824 NA NA
## 2825 NA NA
## 2826 NA NA
## 2827 NA NA
## 2828 NA NA
## 2829 NA NA
## 2830 NA NA
## 2831 NA NA
## 2832 NA NA
## 2833 NA NA
## 2834 NA NA
## 2835 NA NA
## 2836 NA NA
## 2837 NA NA
## 2838 NA NA
## 2839 NA NA
## 2840 NA NA
## 2841 NA NA
## 2842 NA NA
## 2843 NA NA
## 2844 NA NA
## 2845 NA NA
## 2846 NA NA
## 2847 NA NA
## 2848 NA NA
## 2849 NA NA
## 2850 NA NA
## 2851 NA NA
## 2852 NA NA
## 2853 NA NA
## 2854 NA NA
## 2855 NA NA
## 2856 NA NA
## 2857 NA NA
## 2858 NA NA
## 2859 NA NA
## 2860 NA NA
## 2861 NA NA
## 2862 NA NA
## 2863 NA NA
## 2864 NA NA
## 2865 NA NA
## 2866 NA NA
## 2867 NA NA
## 2868 NA NA
## 2869 NA NA
## 2870 NA NA
## 2871 NA NA
## 2872 NA NA
## 2873 NA NA
## 2874 NA NA
## 2875 NA NA
## 2876 NA NA
## 2877 NA NA
## 2878 NA NA
## 2879 NA NA
## 2880 NA NA
## 2881 NA NA
## 2882 NA NA
## 2883 NA NA
## 2884 NA NA
## 2885 NA NA
## 2886 NA NA
## 2887 NA NA
## 2888 NA NA
## 2889 NA NA
## 2890 NA NA
## 2891 NA NA
## 2892 NA NA
## 2893 NA NA
## 2894 NA NA
## 2895 NA NA
## 2896 NA NA
## 2897 NA NA
## 2898 NA NA
## 2899 NA NA
## 2900 NA NA
## 2901 NA NA
## 2902 NA NA
## 2903 NA NA
## 2904 NA NA
## 2905 NA NA
## 2906 NA NA
## 2907 NA NA
## 2908 NA NA
## 2909 NA NA
## 2910 NA NA
## 2911 NA NA
## 2912 NA NA
## 2913 NA NA
## 2914 NA NA
## 2915 NA NA
## 2916 NA NA
## 2917 NA NA
## 2918 NA NA
## 2919 NA NA
## 2920 NA NA
## 2921 NA NA
## 2922 NA NA
## 2923 NA NA
## 2924 NA NA
## 2925 NA NA
## 2926 NA NA
## 2927 NA NA
## 2928 NA NA
## 2929 NA NA
## 2930 NA NA
## 2931 NA NA
## 2932 NA NA
## 2933 NA NA
## 2934 NA NA
## 2935 NA NA
## 2936 NA NA
## 2937 NA NA
## 2938 NA NA
## 2939 NA NA
## 2940 NA NA
## 2941 NA NA
## 2942 NA NA
## 2943 NA NA
## 2944 NA NA
## 2945 NA NA
## 2946 NA NA
## 2947 NA NA
## 2948 NA NA
## 2949 NA NA
## 2950 NA NA
## 2951 NA NA
## 2952 NA NA
## 2953 NA NA
## 2954 NA NA
## 2955 NA NA
## 2956 NA NA
## 2957 NA NA
## 2958 NA NA
## 2959 NA NA
## 2960 NA NA
## 2961 NA NA
## 2962 NA NA
## 2963 NA NA
## 2964 NA NA
## 2965 NA NA
## 2966 NA NA
## 2967 NA NA
## 2968 NA NA
## 2969 NA NA
## 2970 NA NA
## 2971 NA NA
## 2972 NA NA
## 2973 NA NA
## 2974 NA NA
## 2975 NA NA
## 2976 NA NA
## 2977 NA NA
## 2978 NA NA
## 2979 NA NA
## 2980 NA NA
## 2981 NA NA
## 2982 NA NA
## 2983 NA NA
## 2984 NA NA
## 2985 NA NA
## 2986 NA NA
## 2987 NA NA
## 2988 NA NA
## 2989 NA NA
## 2990 NA NA
## 2991 NA NA
## 2992 NA NA
## 2993 NA NA
## 2994 NA NA
## 2995 NA NA
## 2996 NA NA
## 2997 NA NA
## 2998 NA NA
## 2999 NA NA
## 3000 NA NA
## 3001 NA NA
## 3002 NA NA
## 3003 NA NA
## 3004 NA NA
## 3005 NA NA
## 3006 NA NA
## 3007 NA NA
## 3008 NA NA
## 3009 NA NA
## 3010 NA NA
## 3011 NA NA
## 3012 NA NA
## 3013 NA NA
## 3014 NA NA
## 3015 NA NA
## 3016 NA NA
## 3017 NA NA
## 3018 NA NA
## 3019 NA NA
## 3020 NA NA
## 3021 NA NA
## 3022 NA NA
## 3023 NA NA
## 3024 NA NA
## 3025 NA NA
## 3026 NA NA
## 3027 NA NA
## 3028 NA NA
## 3029 NA NA
## 3030 NA NA
## 3031 NA NA
## 3032 NA NA
## 3033 NA NA
## 3034 NA NA
## 3035 NA NA
## 3036 NA NA
## 3037 NA NA
## 3038 NA NA
## 3039 NA NA
## 3040 NA NA
## 3041 NA NA
## 3042 NA NA
## 3043 NA NA
## 3044 NA NA
## 3045 NA NA
## 3046 NA NA
## 3047 NA NA
## 3048 NA NA
## 3049 NA NA
## 3050 NA NA
## 3051 NA NA
## 3052 NA NA
## 3053 NA NA
## 3054 NA NA
## 3055 NA NA
## 3056 NA NA
## 3057 NA NA
## 3058 NA NA
## 3059 NA NA
## 3060 NA NA
## 3061 NA NA
## 3062 NA NA
## 3063 NA NA
## 3064 NA NA
## 3065 NA NA
## 3066 NA NA
## 3067 NA NA
## 3068 NA NA
## 3069 NA NA
## 3070 NA NA
## 3071 NA NA
## 3072 NA NA
## 3073 NA NA
## 3074 NA NA
## 3075 NA NA
## 3076 NA NA
## 3077 NA NA
## 3078 NA NA
## 3079 NA NA
## 3080 NA NA
## 3081 NA NA
## 3082 NA NA
## 3083 NA NA
## 3084 NA NA
## 3085 NA NA
## 3086 NA NA
## 3087 NA NA
## 3088 NA NA
## 3089 NA NA
## 3090 NA NA
## 3091 NA NA
## 3092 NA NA
## 3093 NA NA
## 3094 NA NA
## 3095 NA NA
## 3096 NA NA
## 3097 NA NA
## 3098 NA NA
## 3099 NA NA
## 3100 NA NA
## 3101 NA NA
## 3102 NA NA
## 3103 NA NA
## 3104 NA NA
## 3105 NA NA
## 3106 NA NA
## 3107 NA NA
## 3108 NA NA
## 3109 NA NA
## 3110 NA NA
## 3111 NA NA
## 3112 NA NA
## 3113 NA NA
## 3114 NA NA
## 3115 NA NA
## 3116 NA NA
## 3117 NA NA
## 3118 NA NA
## 3119 NA NA
## 3120 NA NA
## 3121 NA NA
## 3122 NA NA
## 3123 NA NA
## 3124 NA NA
## 3125 NA NA
## 3126 NA NA
## 3127 NA NA
## 3128 NA NA
## 3129 NA NA
## 3130 NA NA
## 3131 NA NA
## 3132 NA NA
## 3133 NA NA
## 3134 NA NA
## 3135 NA NA
## 3136 NA NA
## 3137 NA NA
## 3138 NA NA
## 3139 NA NA
## 3140 NA NA
## 3141 NA NA
## 3142 NA NA
## 3143 NA NA
## 3144 NA NA
## 3145 NA NA
## 3146 NA NA
## 3147 NA NA
## 3148 NA NA
## 3149 NA NA
## 3150 NA NA
## 3151 NA NA
## 3152 NA NA
## 3153 NA NA
## 3154 NA NA
## 3155 NA NA
## 3156 NA NA
## 3157 NA NA
## 3158 NA NA
## 3159 NA NA
## 3160 NA NA
## 3161 NA NA
## 3162 NA NA
## 3163 NA NA
## 3164 NA NA
## 3165 NA NA
## 3166 NA NA
## 3167 NA NA
## 3168 NA NA
## 3169 NA NA
## 3170 NA NA
## 3171 NA NA
## 3172 NA NA
## 3173 NA NA
## 3174 NA NA
## 3175 NA NA
## 3176 NA NA
## 3177 NA NA
## 3178 NA NA
## 3179 NA NA
## 3180 NA NA
## 3181 NA NA
## 3182 NA NA
## 3183 NA NA
## 3184 NA NA
## 3185 NA NA
## 3186 NA NA
## 3187 NA NA
## 3188 NA NA
## 3189 NA NA
## 3190 NA NA
## 3191 NA NA
## 3192 NA NA
## 3193 NA NA
## 3194 NA NA
## 3195 NA NA
## 3196 NA NA
## 3197 NA NA
## 3198 NA NA
## 3199 NA NA
## 3200 NA NA
## 3201 NA NA
## 3202 NA NA
## 3203 NA NA
## 3204 NA NA
## 3205 NA NA
## 3206 NA NA
## 3207 NA NA
## 3208 NA NA
## 3209 NA NA
## 3210 NA NA
## 3211 NA NA
## 3212 NA NA
## 3213 NA NA
## 3214 NA NA
## 3215 NA NA
## 3216 NA NA
## 3217 NA NA
## 3218 NA NA
## 3219 NA NA
## 3220 NA NA
## 3221 NA NA
## 3222 NA NA
## 3223 NA NA
## 3224 NA NA
## 3225 NA NA
## 3226 NA NA
## 3227 NA NA
## 3228 NA NA
## 3229 NA NA
## 3230 NA NA
## 3231 NA NA
## 3232 NA NA
## 3233 NA NA
## 3234 NA NA
## 3235 NA NA
## 3236 NA NA
## 3237 NA NA
## 3238 NA NA
## 3239 NA NA
## 3240 NA NA
## 3241 NA NA
## 3242 NA NA
## 3243 NA NA
## 3244 NA NA
## 3245 NA NA
## 3246 NA NA
## 3247 NA NA
## 3248 NA NA
## 3249 NA NA
## 3250 NA NA
## 3251 NA NA
## 3252 NA NA
## 3253 NA NA
## 3254 NA NA
## 3255 NA NA
## 3256 NA NA
## 3257 NA NA
## 3258 NA NA
## 3259 NA NA
## 3260 NA NA
## 3261 NA NA
## 3262 NA NA
## 3263 NA NA
## 3264 NA NA
## 3265 NA NA
## 3266 NA NA
## 3267 NA NA
## 3268 NA NA
## 3269 NA NA
## 3270 NA NA
## 3271 NA NA
## 3272 NA NA
## 3273 NA NA
## 3274 NA NA
## 3275 NA NA
## 3276 NA NA
## 3277 NA NA
## 3278 NA NA
## 3279 NA NA
## 3280 NA NA
## 3281 NA NA
## 3282 NA NA
## 3283 NA NA
## 3284 NA NA
## 3285 NA NA
## 3286 NA NA
## 3287 NA NA
## 3288 NA NA
## 3289 NA NA
## 3290 NA NA
## 3291 NA NA
## 3292 NA NA
## 3293 NA NA
## 3294 NA NA
## 3295 NA NA
## 3296 NA NA
## 3297 NA NA
## 3298 NA NA
## 3299 NA NA
## 3300 NA NA
## 3301 NA NA
## 3302 NA NA
## 3303 NA NA
## 3304 NA NA
## 3305 NA NA
## 3306 NA NA
## 3307 NA NA
## 3308 NA NA
## 3309 NA NA
## 3310 NA NA
## 3311 NA NA
## 3312 NA NA
## 3313 NA NA
## 3314 NA NA
## 3315 NA NA
## 3316 NA NA
## 3317 NA NA
## 3318 NA NA
## 3319 NA NA
## 3320 NA NA
## 3321 NA NA
## 3322 NA NA
## 3323 NA NA
## 3324 NA NA
## 3325 NA NA
## 3326 NA NA
## 3327 NA NA
## 3328 NA NA
## 3329 NA NA
## 3330 NA NA
## 3331 NA NA
## 3332 NA NA
## 3333 NA NA
## 3334 NA NA
## 3335 NA NA
## 3336 NA NA
## 3337 NA NA
## 3338 NA NA
## 3339 NA NA
## 3340 NA NA
## 3341 NA NA
## 3342 NA NA
## 3343 NA NA
## 3344 NA NA
## 3345 NA NA
## 3346 NA NA
## 3347 NA NA
## 3348 NA NA
## 3349 NA NA
## 3350 NA NA
## 3351 NA NA
## 3352 NA NA
## 3353 NA NA
## 3354 NA NA
## 3355 NA NA
## 3356 NA NA
## 3357 NA NA
## 3358 NA NA
## 3359 NA NA
## 3360 NA NA
## 3361 NA NA
## 3362 NA NA
## 3363 NA NA
## 3364 NA NA
## 3365 NA NA
## 3366 NA NA
## 3367 NA NA
## 3368 NA NA
## 3369 NA NA
## 3370 NA NA
## 3371 NA NA
## 3372 NA NA
## 3373 NA NA
## 3374 NA NA
## 3375 NA NA
## 3376 NA NA
## 3377 NA NA
## 3378 NA NA
## 3379 NA NA
## 3380 NA NA
## 3381 NA NA
## 3382 NA NA
## 3383 NA NA
## 3384 NA NA
## 3385 NA NA
## 3386 NA NA
## 3387 NA NA
## 3388 NA NA
## 3389 NA NA
## 3390 NA NA
## 3391 NA NA
## 3392 NA NA
## 3393 NA NA
## 3394 NA NA
## 3395 NA NA
## 3396 NA NA
## 3397 NA NA
## 3398 NA NA
## 3399 NA NA
## 3400 NA NA
## 3401 NA NA
## 3402 NA NA
## 3403 NA NA
## 3404 NA NA
## 3405 NA NA
## 3406 NA NA
## 3407 NA NA
## 3408 NA NA
## 3409 NA NA
## 3410 NA NA
## 3411 NA NA
## 3412 NA NA
## 3413 NA NA
## 3414 NA NA
## 3415 NA NA
## 3416 NA NA
## 3417 NA NA
## 3418 NA NA
## 3419 NA NA
## 3420 NA NA
## 3421 NA NA
## 3422 NA NA
## 3423 NA NA
## 3424 NA NA
## 3425 NA NA
## 3426 NA NA
## 3427 NA NA
## 3428 NA NA
## 3429 NA NA
## 3430 NA NA
## 3431 NA NA
## 3432 NA NA
## 3433 NA NA
## 3434 NA NA
## 3435 NA NA
## 3436 NA NA
## 3437 NA NA
## 3438 NA NA
## 3439 NA NA
## 3440 NA NA
## 3441 NA NA
## 3442 NA NA
## 3443 NA NA
## 3444 NA NA
## 3445 NA NA
## 3446 NA NA
## 3447 NA NA
## 3448 NA NA
## 3449 NA NA
## 3450 NA NA
## 3451 NA NA
## 3452 NA NA
## 3453 NA NA
## 3454 NA NA
## 3455 NA NA
## 3456 NA NA
## 3457 NA NA
## 3458 NA NA
## 3459 NA NA
## 3460 NA NA
## 3461 NA NA
## 3462 NA NA
## 3463 NA NA
## 3464 NA NA
## 3465 NA NA
## 3466 NA NA
## 3467 NA NA
## 3468 NA NA
## 3469 NA NA
## 3470 NA NA
## 3471 NA NA
## 3472 NA NA
## 3473 NA NA
## 3474 NA NA
## 3475 NA NA
## 3476 NA NA
## 3477 NA NA
## 3478 NA NA
## 3479 NA NA
## 3480 NA NA
## 3481 NA NA
## 3482 NA NA
## 3483 NA NA
## 3484 NA NA
## 3485 NA NA
## 3486 NA NA
## 3487 NA NA
## 3488 NA NA
## 3489 NA NA
## 3490 NA NA
## 3491 NA NA
## 3492 NA NA
## 3493 NA NA
## 3494 NA NA
## 3495 NA NA
## 3496 NA NA
## 3497 NA NA
## 3498 NA NA
## 3499 NA NA
## 3500 NA NA
## 3501 NA NA
## 3502 NA NA
## 3503 NA NA
## 3504 NA NA
## 3505 NA NA
## 3506 NA NA
## 3507 NA NA
## 3508 NA NA
## 3509 NA NA
## 3510 NA NA
## 3511 NA NA
## 3512 NA NA
## 3513 NA NA
## 3514 NA NA
## 3515 NA NA
## 3516 NA NA
## 3517 NA NA
## 3518 NA NA
## 3519 NA NA
## 3520 NA NA
## 3521 NA NA
## 3522 NA NA
## 3523 NA NA
## 3524 NA NA
## 3525 NA NA
## 3526 NA NA
## 3527 NA NA
## 3528 NA NA
## 3529 NA NA
## 3530 NA NA
## 3531 NA NA
## 3532 NA NA
## 3533 NA NA
## 3534 NA NA
## 3535 NA NA
## 3536 NA NA
## 3537 NA NA
## 3538 NA NA
## 3539 NA NA
## 3540 NA NA
## 3541 NA NA
## 3542 NA NA
## 3543 NA NA
## 3544 NA NA
## 3545 NA NA
## 3546 NA NA
## 3547 NA NA
## 3548 NA NA
## 3549 NA NA
## 3550 NA NA
## 3551 NA NA
## 3552 NA NA
## 3553 NA NA
## 3554 NA NA
## 3555 NA NA
## 3556 NA NA
## 3557 NA NA
## 3558 NA NA
## 3559 NA NA
## 3560 NA NA
## 3561 NA NA
## 3562 NA NA
## 3563 NA NA
## 3564 NA NA
## 3565 NA NA
## 3566 NA NA
## 3567 NA NA
## 3568 NA NA
## 3569 NA NA
## 3570 NA NA
## 3571 NA NA
## 3572 NA NA
## 3573 NA NA
## 3574 NA NA
## 3575 NA NA
## 3576 NA NA
## 3577 NA NA
## 3578 NA NA
## 3579 NA NA
## 3580 NA NA
## 3581 NA NA
## 3582 NA NA
## 3583 NA NA
## 3584 NA NA
## 3585 NA NA
## 3586 NA NA
## 3587 NA NA
## 3588 NA NA
## 3589 NA NA
## 3590 NA NA
## 3591 NA NA
## 3592 NA NA
## 3593 NA NA
## 3594 NA NA
## 3595 NA NA
## 3596 NA NA
## 3597 NA NA
## 3598 NA NA
## 3599 NA NA
## 3600 NA NA
## 3601 NA NA
## 3602 NA NA
## 3603 NA NA
## 3604 NA NA
## 3605 NA NA
## 3606 NA NA
## 3607 NA NA
## 3608 NA NA
## 3609 NA NA
## 3610 NA NA
## 3611 NA NA
## 3612 NA NA
## 3613 NA NA
## 3614 NA NA
## 3615 NA NA
## 3616 NA NA
## 3617 NA NA
## 3618 NA NA
## 3619 NA NA
## 3620 NA NA
## 3621 NA NA
## 3622 NA NA
## 3623 NA NA
## 3624 NA NA
## 3625 NA NA
## 3626 NA NA
## 3627 NA NA
## 3628 NA NA
## 3629 NA NA
## 3630 NA NA
## 3631 NA NA
## 3632 NA NA
## 3633 NA NA
## 3634 NA NA
## 3635 NA NA
## 3636 NA NA
## 3637 NA NA
## 3638 NA NA
## 3639 NA NA
## 3640 NA NA
## 3641 NA NA
## 3642 NA NA
## 3643 NA NA
## 3644 NA NA
## 3645 NA NA
## 3646 NA NA
## 3647 NA NA
## 3648 NA NA
## 3649 NA NA
## 3650 NA NA
## 3651 NA NA
## 3652 NA NA
## 3653 NA NA
## 3654 NA NA
## 3655 NA NA
## 3656 NA NA
## 3657 NA NA
## 3658 NA NA
## 3659 NA NA
## 3660 NA NA
## 3661 NA NA
## 3662 NA NA
## 3663 NA NA
## 3664 NA NA
## 3665 NA NA
## 3666 NA NA
## 3667 NA NA
## 3668 NA NA
## 3669 NA NA
## 3670 NA NA
## 3671 NA NA
## 3672 NA NA
## 3673 NA NA
## 3674 NA NA
## 3675 NA NA
## 3676 NA NA
## 3677 NA NA
## 3678 NA NA
## 3679 NA NA
## 3680 NA NA
## 3681 NA NA
## 3682 NA NA
## 3683 NA NA
## 3684 NA NA
## 3685 NA NA
## 3686 NA NA
## 3687 NA NA
## 3688 NA NA
## 3689 NA NA
## 3690 NA NA
## 3691 NA NA
## 3692 NA NA
## 3693 NA NA
## 3694 NA NA
## 3695 NA NA
## 3696 NA NA
## 3697 NA NA
## 3698 NA NA
## 3699 NA NA
## 3700 NA NA
## 3701 NA NA
## 3702 NA NA
## 3703 NA NA
## 3704 NA NA
## 3705 NA NA
## 3706 NA NA
## 3707 NA NA
## 3708 NA NA
## 3709 NA NA
## 3710 NA NA
## 3711 NA NA
## 3712 NA NA
## 3713 NA NA
## 3714 NA NA
## 3715 NA NA
## 3716 NA NA
## 3717 NA NA
## 3718 NA NA
## 3719 NA NA
## 3720 NA NA
## 3721 NA NA
## 3722 NA NA
## 3723 NA NA
## 3724 NA NA
## 3725 NA NA
## 3726 NA NA
## 3727 NA NA
## 3728 NA NA
## 3729 NA NA
## 3730 NA NA
## 3731 NA NA
## 3732 NA NA
## 3733 NA NA
## 3734 NA NA
## 3735 NA NA
## 3736 NA NA
## 3737 NA NA
## 3738 NA NA
## 3739 NA NA
## 3740 NA NA
## 3741 NA NA
## 3742 NA NA
## 3743 NA NA
## 3744 NA NA
## 3745 NA NA
## 3746 NA NA
## 3747 NA NA
## 3748 NA NA
## 3749 NA NA
## 3750 NA NA
## 3751 NA NA
## 3752 NA NA
## 3753 NA NA
## 3754 NA NA
## 3755 NA NA
## 3756 NA NA
## 3757 NA NA
## 3758 NA NA
## 3759 NA NA
## 3760 NA NA
## 3761 NA NA
## 3762 NA NA
## 3763 NA NA
## 3764 NA NA
## 3765 NA NA
## 3766 NA NA
## 3767 NA NA
## 3768 NA NA
## 3769 NA NA
## 3770 NA NA
## 3771 NA NA
## 3772 NA NA
## 3773 NA NA
## 3774 NA NA
## 3775 NA NA
## 3776 NA NA
## 3777 NA NA
## 3778 NA NA
## 3779 NA NA
## 3780 NA NA
## 3781 NA NA
## 3782 NA NA
## 3783 NA NA
## 3784 NA NA
## 3785 NA NA
## 3786 NA NA
## 3787 NA NA
## 3788 NA NA
## 3789 NA NA
## 3790 NA NA
## 3791 NA NA
## 3792 NA NA
## 3793 NA NA
## 3794 NA NA
## 3795 NA NA
## 3796 NA NA
## 3797 NA NA
## 3798 NA NA
## 3799 NA NA
## 3800 NA NA
## 3801 NA NA
## 3802 NA NA
## 3803 NA NA
## 3804 NA NA
## 3805 NA NA
## 3806 NA NA
## 3807 NA NA
## 3808 NA NA
## 3809 NA NA
## 3810 NA NA
## 3811 NA NA
## 3812 NA NA
## 3813 NA NA
## 3814 NA NA
## 3815 NA NA
## 3816 NA NA
## 3817 NA NA
## 3818 NA NA
## 3819 NA NA
## 3820 NA NA
## 3821 NA NA
## 3822 NA NA
## 3823 NA NA
## 3824 NA NA
## 3825 NA NA
## 3826 NA NA
## 3827 NA NA
## 3828 NA NA
## 3829 NA NA
## 3830 NA NA
## 3831 NA NA
## 3832 NA NA
## 3833 NA NA
## 3834 NA NA
## 3835 NA NA
## 3836 NA NA
## 3837 NA NA
## 3838 NA NA
## 3839 NA NA
## 3840 NA NA
## 3841 NA NA
## 3842 NA NA
## 3843 NA NA
## 3844 NA NA
## 3845 NA NA
## 3846 NA NA
## 3847 NA NA
## 3848 NA NA
## 3849 NA NA
## 3850 NA NA
## 3851 NA NA
## 3852 NA NA
## 3853 NA NA
## 3854 NA NA
## 3855 NA NA
## 3856 NA NA
## 3857 NA NA
## 3858 NA NA
## 3859 NA NA
## 3860 NA NA
## 3861 NA NA
## 3862 NA NA
## 3863 NA NA
## 3864 NA NA
## 3865 NA NA
## 3866 NA NA
## 3867 NA NA
## 3868 NA NA
## 3869 NA NA
## 3870 NA NA
## 3871 NA NA
## 3872 NA NA
## 3873 NA NA
## 3874 NA NA
## 3875 NA NA
## 3876 NA NA
## 3877 NA NA
## 3878 NA NA
## 3879 NA NA
## 3880 NA NA
## 3881 NA NA
## 3882 NA NA
## 3883 NA NA
## 3884 NA NA
## 3885 NA NA
## 3886 NA NA
## 3887 NA NA
## 3888 NA NA
## 3889 NA NA
## 3890 NA NA
## 3891 NA NA
## 3892 NA NA
## 3893 NA NA
## 3894 NA NA
## 3895 NA NA
## 3896 NA NA
## 3897 NA NA
## 3898 NA NA
## 3899 NA NA
## 3900 NA NA
## 3901 NA NA
## 3902 NA NA
## 3903 NA NA
## 3904 NA NA
## 3905 NA NA
## 3906 NA NA
## 3907 NA NA
## 3908 NA NA
## 3909 NA NA
## 3910 NA NA
## 3911 NA NA
## 3912 NA NA
## 3913 NA NA
## 3914 NA NA
## 3915 NA NA
## 3916 NA NA
## 3917 NA NA
## 3918 NA NA
## 3919 NA NA
## 3920 NA NA
## 3921 NA NA
## 3922 NA NA
## 3923 NA NA
## 3924 NA NA
## 3925 NA NA
## 3926 NA NA
## 3927 NA NA
## 3928 NA NA
## 3929 NA NA
## 3930 NA NA
## 3931 NA NA
## 3932 NA NA
## 3933 NA NA
## 3934 NA NA
## 3935 NA NA
## 3936 NA NA
## 3937 NA NA
## 3938 NA NA
## 3939 NA NA
## 3940 NA NA
## 3941 NA NA
## 3942 NA NA
## 3943 NA NA
## 3944 NA NA
## 3945 NA NA
## 3946 NA NA
## 3947 NA NA
## 3948 NA NA
## 3949 NA NA
## 3950 NA NA
## 3951 NA NA
## 3952 NA NA
## 3953 NA NA
## 3954 NA NA
## 3955 NA NA
## 3956 NA NA
## 3957 NA NA
## 3958 NA NA
## 3959 NA NA
## 3960 NA NA
## 3961 NA NA
## 3962 NA NA
## 3963 NA NA
## 3964 NA NA
## 3965 NA NA
## 3966 NA NA
## 3967 NA NA
## 3968 NA NA
## 3969 NA NA
## 3970 NA NA
## 3971 NA NA
## 3972 NA NA
## 3973 NA NA
## 3974 NA NA
## 3975 NA NA
## 3976 NA NA
## 3977 NA NA
## 3978 NA NA
## 3979 NA NA
## 3980 NA NA
## 3981 NA NA
## 3982 NA NA
## 3983 NA NA
## 3984 NA NA
## 3985 NA NA
## 3986 NA NA
## 3987 NA NA
## 3988 NA NA
## 3989 NA NA
## 3990 NA NA
## 3991 NA NA
## 3992 NA NA
## 3993 NA NA
## 3994 NA NA
## 3995 NA NA
## 3996 NA NA
## 3997 NA NA
## 3998 NA NA
## 3999 NA NA
## 4000 NA NA
## 4001 NA NA
## 4002 NA NA
## 4003 NA NA
## 4004 NA NA
## 4005 NA NA
## 4006 NA NA
## 4007 NA NA
## 4008 NA NA
## 4009 NA NA
## 4010 NA NA
## 4011 NA NA
## 4012 NA NA
## 4013 NA NA
## 4014 NA NA
## 4015 NA NA
## 4016 NA NA
## 4017 NA NA
## 4018 NA NA
## 4019 NA NA
## 4020 NA NA
## 4021 NA NA
## 4022 NA NA
## 4023 NA NA
## 4024 NA NA
## 4025 NA NA
## 4026 NA NA
## 4027 NA NA
## 4028 NA NA
## 4029 NA NA
## 4030 NA NA
## 4031 NA NA
## 4032 NA NA
## 4033 NA NA
## 4034 NA NA
## 4035 NA NA
## 4036 NA NA
## 4037 NA NA
## 4038 NA NA
## 4039 NA NA
## 4040 NA NA
## 4041 NA NA
## 4042 NA NA
## 4043 NA NA
## 4044 NA NA
## 4045 NA NA
## 4046 NA NA
## 4047 NA NA
## 4048 NA NA
## 4049 NA NA
## 4050 NA NA
## 4051 NA NA
## 4052 NA NA
## 4053 NA NA
## 4054 NA NA
## 4055 NA NA
## 4056 NA NA
## 4057 NA NA
## 4058 NA NA
## 4059 NA NA
## 4060 NA NA
## 4061 NA NA
## 4062 NA NA
## 4063 NA NA
## 4064 NA NA
## 4065 NA NA
## 4066 NA NA
## 4067 NA NA
## 4068 NA NA
## 4069 NA NA
## 4070 NA NA
## 4071 NA NA
## 4072 NA NA
## 4073 NA NA
## 4074 NA NA
## 4075 NA NA
## 4076 NA NA
## 4077 NA NA
## 4078 NA NA
## 4079 NA NA
## 4080 NA NA
## 4081 NA NA
## 4082 NA NA
## 4083 NA NA
## 4084 NA NA
## 4085 NA NA
## 4086 NA NA
## 4087 NA NA
## 4088 NA NA
## 4089 NA NA
## 4090 NA NA
## 4091 NA NA
## 4092 NA NA
## 4093 NA NA
## 4094 NA NA
## 4095 NA NA
## 4096 NA NA
## 4097 NA NA
## 4098 NA NA
## 4099 NA NA
## 4100 NA NA
## 4101 NA NA
## 4102 NA NA
## 4103 NA NA
## 4104 NA NA
## 4105 NA NA
## 4106 NA NA
## 4107 NA NA
## 4108 NA NA
## 4109 NA NA
## 4110 NA NA
## 4111 NA NA
## 4112 NA NA
## 4113 NA NA
## 4114 NA NA
## 4115 NA NA
## 4116 NA NA
## 4117 NA NA
## 4118 NA NA
## 4119 NA NA
## 4120 NA NA
## 4121 NA NA
## 4122 NA NA
## 4123 NA NA
## 4124 NA NA
## 4125 NA NA
## 4126 NA NA
## 4127 NA NA
## 4128 NA NA
## 4129 NA NA
## 4130 NA NA
## 4131 NA NA
## 4132 NA NA
## 4133 NA NA
## 4134 NA NA
## 4135 NA NA
## 4136 NA NA
## 4137 NA NA
## 4138 NA NA
## 4139 NA NA
## 4140 NA NA
## 4141 NA NA
## 4142 NA NA
## 4143 NA NA
## 4144 NA NA
## 4145 NA NA
## 4146 NA NA
## 4147 NA NA
## 4148 NA NA
## 4149 NA NA
## 4150 NA NA
## 4151 NA NA
## 4152 NA NA
## 4153 NA NA
## 4154 NA NA
## 4155 NA NA
## 4156 NA NA
## 4157 NA NA
## 4158 NA NA
## 4159 NA NA
## 4160 NA NA
## 4161 NA NA
## 4162 NA NA
## 4163 NA NA
## 4164 NA NA
## 4165 NA NA
## 4166 NA NA
## 4167 NA NA
## 4168 NA NA
## 4169 NA NA
## 4170 NA NA
## 4171 NA NA
## 4172 NA NA
## 4173 NA NA
## 4174 NA NA
## 4175 NA NA
## 4176 NA NA
## 4177 NA NA
## 4178 NA NA
## 4179 NA NA
## 4180 NA NA
## 4181 NA NA
## 4182 NA NA
## 4183 NA NA
## 4184 NA NA
## 4185 NA NA
## 4186 NA NA
## 4187 NA NA
## 4188 NA NA
## 4189 NA NA
## 4190 NA NA
## 4191 NA NA
## 4192 NA NA
## 4193 NA NA
## 4194 NA NA
## 4195 NA NA
## 4196 NA NA
## 4197 NA NA
## 4198 NA NA
## 4199 NA NA
## 4200 NA NA
## 4201 NA NA
## 4202 NA NA
## 4203 NA NA
## 4204 NA NA
## 4205 NA NA
## 4206 NA NA
## 4207 NA NA
## 4208 NA NA
## 4209 NA NA
## 4210 NA NA
## 4211 NA NA
## 4212 NA NA
## 4213 NA NA
## 4214 NA NA
## 4215 NA NA
## 4216 NA NA
## 4217 NA NA
## 4218 NA NA
## 4219 NA NA
## 4220 NA NA
## 4221 NA NA
## 4222 NA NA
## 4223 NA NA
## 4224 NA NA
## 4225 NA NA
## 4226 NA NA
## 4227 NA NA
## 4228 NA NA
## 4229 NA NA
## 4230 NA NA
## 4231 NA NA
## 4232 NA NA
## 4233 NA NA
## 4234 NA NA
## 4235 NA NA
## 4236 NA NA
## 4237 NA NA
## 4238 NA NA
## 4239 NA NA
## 4240 NA NA
## 4241 NA NA
## 4242 NA NA
## 4243 NA NA
## 4244 NA NA
## 4245 NA NA
## 4246 NA NA
## 4247 NA NA
## 4248 NA NA
## 4249 NA NA
## 4250 NA NA
## 4251 NA NA
## 4252 NA NA
## 4253 NA NA
## 4254 NA NA
## 4255 NA NA
## 4256 NA NA
## 4257 NA NA
## 4258 NA NA
## 4259 NA NA
## 4260 NA NA
## 4261 NA NA
## 4262 NA NA
## 4263 NA NA
## 4264 NA NA
## 4265 NA NA
## 4266 NA NA
## 4267 NA NA
## 4268 NA NA
## 4269 NA NA
## 4270 NA NA
## 4271 NA NA
## 4272 NA NA
## 4273 NA NA
## 4274 NA NA
## 4275 NA NA
## 4276 NA NA
## 4277 NA NA
## 4278 NA NA
## 4279 NA NA
## 4280 NA NA
## 4281 NA NA
## 4282 NA NA
## 4283 NA NA
## 4284 NA NA
## 4285 NA NA
## 4286 NA NA
## 4287 NA NA
## 4288 NA NA
## 4289 NA NA
## 4290 NA NA
## 4291 NA NA
## 4292 NA NA
## 4293 NA NA
## 4294 NA NA
## 4295 NA NA
## 4296 NA NA
## 4297 NA NA
## 4298 NA NA
## 4299 NA NA
## 4300 NA NA
## 4301 NA NA
## 4302 NA NA
## 4303 NA NA
## 4304 NA NA
## 4305 NA NA
## 4306 NA NA
## 4307 NA NA
## 4308 NA NA
## 4309 NA NA
## 4310 NA NA
## 4311 NA NA
## 4312 NA NA
## 4313 NA NA
## 4314 NA NA
## 4315 NA NA
## 4316 NA NA
## 4317 NA NA
## 4318 NA NA
## 4319 NA NA
## 4320 NA NA
## 4321 NA NA
## 4322 NA NA
## 4323 NA NA
## 4324 NA NA
## 4325 NA NA
## 4326 NA NA
## 4327 NA NA
## 4328 NA NA
## 4329 NA NA
## 4330 NA NA
## 4331 NA NA
## 4332 NA NA
## 4333 NA NA
## 4334 NA NA
## 4335 NA NA
## 4336 NA NA
## 4337 NA NA
## 4338 NA NA
## 4339 NA NA
## 4340 NA NA
## 4341 NA NA
## 4342 NA NA
## 4343 NA NA
## 4344 NA NA
## 4345 NA NA
## 4346 NA NA
## 4347 NA NA
## 4348 NA NA
## 4349 NA NA
## 4350 NA NA
## 4351 NA NA
## 4352 NA NA
## 4353 NA NA
## 4354 NA NA
## 4355 NA NA
## 4356 NA NA
## 4357 NA NA
## 4358 NA NA
## 4359 NA NA
## 4360 NA NA
## 4361 NA NA
## 4362 NA NA
## 4363 NA NA
## 4364 NA NA
## 4365 NA NA
## 4366 NA NA
## 4367 NA NA
## 4368 NA NA
## 4369 NA NA
## 4370 NA NA
## 4371 NA NA
## 4372 NA NA
## 4373 NA NA
## 4374 NA NA
## 4375 NA NA
## 4376 NA NA
## 4377 NA NA
## 4378 NA NA
## 4379 NA NA
## 4380 NA NA
## 4381 NA NA
## 4382 NA NA
## 4383 NA NA
## 4384 NA NA
## 4385 NA NA
## 4386 NA NA
## 4387 NA NA
## 4388 NA NA
## 4389 NA NA
## 4390 NA NA
## 4391 NA NA
## 4392 NA NA
## 4393 NA NA
## 4394 NA NA
## 4395 NA NA
## 4396 NA NA
## 4397 NA NA
## 4398 NA NA
## 4399 NA NA
## 4400 NA NA
## 4401 NA NA
## 4402 NA NA
## 4403 NA NA
## 4404 NA NA
## 4405 NA NA
## 4406 NA NA
## 4407 NA NA
## 4408 NA NA
## 4409 NA NA
## 4410 NA NA
## 4411 NA NA
## 4412 NA NA
## 4413 NA NA
## 4414 NA NA
## 4415 NA NA
## 4416 NA NA
## 4417 NA NA
## 4418 NA NA
## 4419 NA NA
## 4420 NA NA
## 4421 NA NA
## 4422 NA NA
## 4423 NA NA
## 4424 NA NA
## 4425 NA NA
## 4426 NA NA
## 4427 NA NA
## 4428 NA NA
## 4429 NA NA
## 4430 NA NA
## 4431 NA NA
## 4432 NA NA
## 4433 NA NA
## 4434 NA NA
## 4435 NA NA
## 4436 NA NA
## 4437 NA NA
## 4438 NA NA
## 4439 NA NA
## 4440 NA NA
## 4441 NA NA
## 4442 NA NA
## 4443 NA NA
## 4444 NA NA
## 4445 NA NA
## 4446 NA NA
## 4447 NA NA
## 4448 NA NA
## 4449 NA NA
## 4450 NA NA
## 4451 NA NA
## 4452 NA NA
## 4453 NA NA
## 4454 NA NA
## 4455 NA NA
## 4456 NA NA
## 4457 NA NA
## 4458 NA NA
## 4459 NA NA
## 4460 NA NA
## 4461 NA NA
## 4462 NA NA
## 4463 NA NA
## 4464 NA NA
## 4465 NA NA
## 4466 NA NA
## 4467 NA NA
## 4468 NA NA
## 4469 NA NA
## 4470 NA NA
## 4471 NA NA
## 4472 NA NA
## 4473 NA NA
## 4474 NA NA
## 4475 NA NA
## 4476 NA NA
## 4477 NA NA
## 4478 NA NA
## 4479 NA NA
## 4480 NA NA
## 4481 NA NA
## 4482 NA NA
## 4483 NA NA
## 4484 NA NA
## 4485 NA NA
## 4486 NA NA
## 4487 NA NA
## 4488 NA NA
## 4489 NA NA
## 4490 NA NA
## 4491 NA NA
## 4492 NA NA
## 4493 NA NA
## 4494 NA NA
## 4495 NA NA
## 4496 NA NA
## 4497 NA NA
## 4498 NA NA
## 4499 NA NA
## 4500 NA NA
## 4501 NA NA
## 4502 NA NA
## 4503 NA NA
## 4504 NA NA
## 4505 NA NA
## 4506 NA NA
## 4507 NA NA
## 4508 NA NA
## 4509 NA NA
## 4510 NA NA
## 4511 NA NA
## 4512 NA NA
## 4513 NA NA
## 4514 NA NA
## 4515 NA NA
## 4516 NA NA
## 4517 NA NA
## 4518 NA NA
## 4519 NA NA
## 4520 NA NA
## 4521 NA NA
## 4522 NA NA
## 4523 NA NA
## 4524 NA NA
## 4525 NA NA
## 4526 NA NA
## 4527 NA NA
## 4528 NA NA
## 4529 NA NA
## 4530 NA NA
## 4531 NA NA
## 4532 NA NA
## 4533 NA NA
## 4534 NA NA
## 4535 NA NA
## 4536 NA NA
## 4537 NA NA
## 4538 NA NA
## 4539 NA NA
## 4540 NA NA
## 4541 NA NA
## 4542 NA NA
## 4543 NA NA
## 4544 NA NA
## 4545 NA NA
## 4546 NA NA
## 4547 NA NA
## 4548 NA NA
## 4549 NA NA
## 4550 NA NA
## 4551 NA NA
## 4552 NA NA
## 4553 NA NA
## 4554 NA NA
## 4555 NA NA
## 4556 NA NA
## 4557 NA NA
## 4558 NA NA
## 4559 NA NA
## 4560 NA NA
## 4561 NA NA
## 4562 NA NA
## 4563 NA NA
## 4564 NA NA
## 4565 NA NA
## 4566 NA NA
## 4567 NA NA
## 4568 NA NA
## 4569 NA NA
## 4570 NA NA
## 4571 NA NA
## 4572 NA NA
## 4573 NA NA
## 4574 NA NA
## 4575 NA NA
## 4576 NA NA
## 4577 NA NA
## 4578 NA NA
## 4579 NA NA
## 4580 NA NA
## 4581 NA NA
## 4582 NA NA
## 4583 NA NA
## 4584 NA NA
## 4585 NA NA
## 4586 NA NA
## 4587 NA NA
## 4588 NA NA
## 4589 NA NA
## 4590 NA NA
## 4591 NA NA
## 4592 NA NA
## 4593 NA NA
## 4594 NA NA
## 4595 NA NA
## 4596 NA NA
## 4597 NA NA
## 4598 NA NA
## 4599 NA NA
## 4600 NA NA
## 4601 NA NA
## 4602 NA NA
## 4603 NA NA
## 4604 NA NA
## 4605 NA NA
## 4606 NA NA
## 4607 NA NA
## 4608 NA NA
## 4609 NA NA
## 4610 NA NA
## 4611 NA NA
## 4612 NA NA
## 4613 NA NA
## 4614 NA NA
## 4615 NA NA
## 4616 NA NA
## 4617 NA NA
## 4618 NA NA
## 4619 NA NA
## 4620 NA NA
## 4621 NA NA
## 4622 NA NA
## 4623 NA NA
## 4624 NA NA
## 4625 NA NA
## 4626 NA NA
## 4627 NA NA
## 4628 NA NA
## 4629 NA NA
## 4630 NA NA
## 4631 NA NA
## 4632 NA NA
## 4633 NA NA
## 4634 NA NA
## 4635 NA NA
## 4636 NA NA
## 4637 NA NA
## 4638 NA NA
## 4639 NA NA
## 4640 NA NA
## 4641 NA NA
## 4642 NA NA
## 4643 NA NA
## 4644 NA NA
## 4645 NA NA
## 4646 NA NA
## 4647 NA NA
## 4648 NA NA
## 4649 NA NA
## 4650 NA NA
## 4651 NA NA
## 4652 NA NA
## 4653 NA NA
## 4654 NA NA
## 4655 NA NA
## 4656 NA NA
## 4657 NA NA
## 4658 NA NA
## 4659 NA NA
## 4660 NA NA
## 4661 NA NA
## 4662 NA NA
## 4663 NA NA
## 4664 NA NA
## 4665 NA NA
## 4666 NA NA
## 4667 NA NA
## 4668 NA NA
## 4669 NA NA
## 4670 NA NA
## 4671 NA NA
## 4672 NA NA
## 4673 NA NA
## 4674 NA NA
## 4675 NA NA
## 4676 NA NA
## 4677 NA NA
## 4678 NA NA
## 4679 NA NA
## 4680 NA NA
## 4681 NA NA
## 4682 NA NA
## 4683 NA NA
## 4684 NA NA
## 4685 NA NA
## 4686 NA NA
## 4687 NA NA
## 4688 NA NA
## 4689 NA NA
## 4690 NA NA
## 4691 NA NA
## 4692 NA NA
## 4693 NA NA
## 4694 NA NA
## 4695 NA NA
## 4696 NA NA
## 4697 NA NA
## 4698 NA NA
## 4699 NA NA
## 4700 NA NA
## 4701 NA NA
## 4702 NA NA
## 4703 NA NA
## 4704 NA NA
## 4705 NA NA
## 4706 NA NA
## 4707 NA NA
## 4708 NA NA
## 4709 NA NA
## 4710 NA NA
## 4711 NA NA
## 4712 NA NA
## 4713 NA NA
## 4714 NA NA
## 4715 NA NA
## 4716 NA NA
## 4717 NA NA
## 4718 NA NA
## 4719 NA NA
## 4720 NA NA
## 4721 NA NA
## 4722 NA NA
## 4723 NA NA
## 4724 NA NA
## 4725 NA NA
## 4726 NA NA
## 4727 NA NA
## 4728 NA NA
## 4729 NA NA
## 4730 NA NA
## 4731 NA NA
## 4732 NA NA
## 4733 NA NA
## 4734 NA NA
## 4735 NA NA
## 4736 NA NA
## 4737 NA NA
## 4738 NA NA
## 4739 NA NA
## 4740 NA NA
## 4741 NA NA
## 4742 NA NA
## 4743 NA NA
## 4744 NA NA
## 4745 NA NA
## 4746 NA NA
## 4747 NA NA
## 4748 NA NA
## 4749 NA NA
## 4750 NA NA
## 4751 NA NA
## 4752 NA NA
## 4753 NA NA
## 4754 NA NA
## 4755 NA NA
## 4756 NA NA
## 4757 NA NA
## 4758 NA NA
## 4759 NA NA
## 4760 NA NA
## 4761 NA NA
## 4762 NA NA
## 4763 NA NA
## 4764 NA NA
## 4765 NA NA
## 4766 NA NA
## 4767 NA NA
## 4768 NA NA
## 4769 NA NA
## 4770 NA NA
## 4771 NA NA
## 4772 NA NA
## 4773 NA NA
## 4774 NA NA
## 4775 NA NA
## 4776 NA NA
## 4777 NA NA
## 4778 NA NA
## 4779 NA NA
## 4780 NA NA
## 4781 NA NA
## 4782 NA NA
## 4783 NA NA
## 4784 NA NA
## 4785 NA NA
## 4786 NA NA
## 4787 NA NA
## 4788 NA NA
## 4789 NA NA
## 4790 NA NA
## 4791 NA NA
## 4792 NA NA
## 4793 NA NA
## 4794 NA NA
## 4795 NA NA
## 4796 NA NA
## 4797 NA NA
## 4798 NA NA
## 4799 NA NA
## 4800 NA NA
## 4801 NA NA
## 4802 NA NA
## 4803 NA NA
## 4804 NA NA
## 4805 NA NA
## 4806 NA NA
## 4807 NA NA
## 4808 NA NA
## 4809 NA NA
## 4810 NA NA
## 4811 NA NA
## 4812 NA NA
## 4813 NA NA
## 4814 NA NA
## 4815 NA NA
## 4816 NA NA
## 4817 NA NA
## 4818 NA NA
## 4819 NA NA
## 4820 NA NA
## 4821 NA NA
## 4822 NA NA
## 4823 NA NA
## 4824 NA NA
## 4825 NA NA
## 4826 NA NA
## 4827 NA NA
## 4828 NA NA
## 4829 NA NA
## 4830 NA NA
## 4831 NA NA
## 4832 NA NA
## 4833 NA NA
## 4834 NA NA
## 4835 NA NA
## 4836 NA NA
## 4837 NA NA
## 4838 NA NA
## 4839 NA NA
## 4840 NA NA
## 4841 NA NA
## 4842 NA NA
## 4843 NA NA
## 4844 NA NA
## 4845 NA NA
## 4846 NA NA
## 4847 NA NA
## 4848 NA NA
## 4849 NA NA
## 4850 NA NA
## 4851 NA NA
## 4852 NA NA
## 4853 NA NA
## 4854 NA NA
## 4855 NA NA
## 4856 NA NA
## 4857 NA NA
## 4858 NA NA
## 4859 NA NA
## 4860 NA NA
## 4861 NA NA
## 4862 NA NA
## 4863 NA NA
## 4864 NA NA
## 4865 NA NA
## 4866 NA NA
## 4867 NA NA
## 4868 NA NA
## 4869 NA NA
## 4870 NA NA
## 4871 NA NA
## 4872 NA NA
## 4873 NA NA
## 4874 NA NA
## 4875 NA NA
## 4876 NA NA
## 4877 NA NA
## 4878 NA NA
## 4879 NA NA
## 4880 NA NA
## 4881 NA NA
## 4882 NA NA
## 4883 NA NA
## 4884 NA NA
## 4885 NA NA
## 4886 NA NA
## 4887 NA NA
## 4888 NA NA
## 4889 NA NA
## 4890 NA NA
## 4891 NA NA
## 4892 NA NA
## 4893 NA NA
## 4894 NA NA
## 4895 NA NA
## 4896 NA NA
## 4897 NA NA
## 4898 NA NA
## 4899 NA NA
## 4900 NA NA
## 4901 NA NA
## 4902 NA NA
## 4903 NA NA
## 4904 NA NA
## 4905 NA NA
## 4906 NA NA
## 4907 NA NA
## 4908 NA NA
## 4909 NA NA
## 4910 NA NA
## 4911 NA NA
## 4912 NA NA
## 4913 NA NA
## 4914 NA NA
## 4915 NA NA
## 4916 NA NA
## 4917 NA NA
## 4918 NA NA
## 4919 NA NA
## 4920 NA NA
## 4921 NA NA
## 4922 NA NA
## 4923 NA NA
## 4924 NA NA
## 4925 NA NA
## 4926 NA NA
## 4927 NA NA
## 4928 NA NA
## 4929 NA NA
## 4930 NA NA
## 4931 NA NA
## 4932 NA NA
## 4933 NA NA
## 4934 NA NA
## 4935 NA NA
## 4936 NA NA
## 4937 NA NA
## 4938 NA NA
## 4939 NA NA
## 4940 NA NA
## 4941 NA NA
## 4942 NA NA
## 4943 NA NA
## 4944 NA NA
## 4945 NA NA
## 4946 NA NA
## 4947 NA NA
## 4948 NA NA
## 4949 NA NA
## 4950 NA NA
## 4951 NA NA
## 4952 NA NA
## 4953 NA NA
## 4954 NA NA
## 4955 NA NA
## 4956 NA NA
## 4957 NA NA
## 4958 NA NA
## 4959 NA NA
## 4960 NA NA
## 4961 NA NA
## 4962 NA NA
## 4963 NA NA
## 4964 NA NA
## 4965 NA NA
## 4966 NA NA
## 4967 NA NA
## 4968 NA NA
## 4969 NA NA
## 4970 NA NA
## 4971 NA NA
## 4972 NA NA
## 4973 NA NA
## 4974 NA NA
## 4975 NA NA
## 4976 NA NA
## 4977 NA NA
## 4978 NA NA
## 4979 NA NA
## 4980 NA NA
## 4981 NA NA
## 4982 NA NA
## 4983 NA NA
## 4984 NA NA
## 4985 NA NA
## 4986 NA NA
## 4987 NA NA
## 4988 NA NA
## 4989 NA NA
## 4990 NA NA
## 4991 NA NA
## 4992 NA NA
## 4993 NA NA
## 4994 NA NA
## 4995 NA NA
## 4996 NA NA
## 4997 NA NA
## 4998 NA NA
## 4999 NA NA
## 5000 NA NA
## 5001 NA NA
## 5002 NA NA
## 5003 NA NA
## 5004 NA NA
## 5005 NA NA
## 5006 NA NA
## 5007 NA NA
## 5008 NA NA
## 5009 NA NA
## 5010 NA NA
## 5011 NA NA
## 5012 NA NA
## 5013 NA NA
## 5014 NA NA
## 5015 NA NA
## 5016 NA NA
## 5017 NA NA
## 5018 NA NA
## 5019 NA NA
## 5020 NA NA
## 5021 NA NA
## 5022 NA NA
## 5023 NA NA
## 5024 NA NA
## 5025 NA NA
## 5026 NA NA
## 5027 NA NA
## 5028 NA NA
## 5029 NA NA
## 5030 NA NA
## 5031 NA NA
## 5032 NA NA
## 5033 NA NA
## 5034 NA NA
## 5035 NA NA
## 5036 NA NA
## 5037 NA NA
## 5038 NA NA
## 5039 NA NA
## 5040 NA NA
## 5041 NA NA
## 5042 NA NA
## 5043 NA NA
## 5044 NA NA
## 5045 NA NA
## 5046 NA NA
## 5047 NA NA
## 5048 NA NA
## 5049 NA NA
## 5050 NA NA
## 5051 NA NA
## 5052 NA NA
## 5053 NA NA
## 5054 NA NA
## 5055 NA NA
## 5056 NA NA
## 5057 NA NA
## 5058 NA NA
## 5059 NA NA
## 5060 NA NA
## 5061 NA NA
## 5062 NA NA
## 5063 NA NA
## 5064 NA NA
## 5065 NA NA
## 5066 NA NA
## 5067 NA NA
## 5068 NA NA
## 5069 NA NA
## 5070 NA NA
## 5071 NA NA
## 5072 NA NA
## 5073 NA NA
## 5074 NA NA
## 5075 NA NA
## 5076 NA NA
## 5077 NA NA
## 5078 NA NA
## 5079 NA NA
## 5080 NA NA
## 5081 NA NA
## 5082 NA NA
## 5083 NA NA
## 5084 NA NA
## 5085 NA NA
## 5086 NA NA
## 5087 NA NA
## 5088 NA NA
## 5089 NA NA
## 5090 NA NA
## 5091 NA NA
## 5092 NA NA
## 5093 NA NA
## 5094 NA NA
## 5095 NA NA
## 5096 NA NA
## 5097 NA NA
## 5098 NA NA
## 5099 NA NA
## 5100 NA NA
## 5101 NA NA
## 5102 NA NA
## 5103 NA NA
## 5104 NA NA
## 5105 NA NA
## 5106 NA NA
## 5107 NA NA
## 5108 NA NA
## 5109 NA NA
## 5110 NA NA
## 5111 NA NA
## 5112 NA NA
## 5113 NA NA
## 5114 NA NA
## 5115 NA NA
## 5116 NA NA
## 5117 NA NA
## 5118 NA NA
## 5119 NA NA
## 5120 NA NA
## 5121 NA NA
## 5122 NA NA
## 5123 NA NA
## 5124 NA NA
## 5125 NA NA
## 5126 NA NA
## 5127 NA NA
## 5128 NA NA
## 5129 NA NA
## 5130 NA NA
## 5131 NA NA
## 5132 NA NA
## 5133 NA NA
## 5134 NA NA
## 5135 NA NA
## 5136 NA NA
## 5137 NA NA
## 5138 NA NA
## 5139 NA NA
## 5140 NA NA
## 5141 NA NA
## 5142 NA NA
## 5143 NA NA
## 5144 NA NA
## 5145 NA NA
## 5146 NA NA
## 5147 NA NA
## 5148 NA NA
## 5149 NA NA
## 5150 NA NA
## 5151 NA NA
## 5152 NA NA
## 5153 NA NA
## 5154 NA NA
## 5155 NA NA
## 5156 NA NA
## 5157 NA NA
## 5158 NA NA
## 5159 NA NA
## 5160 NA NA
## 5161 NA NA
## 5162 NA NA
## 5163 NA NA
## 5164 NA NA
## 5165 NA NA
## 5166 NA NA
## 5167 NA NA
## 5168 NA NA
## 5169 NA NA
## 5170 NA NA
## 5171 NA NA
## 5172 NA NA
## 5173 NA NA
## 5174 NA NA
## 5175 NA NA
## 5176 NA NA
## 5177 NA NA
## 5178 NA NA
## 5179 NA NA
## 5180 NA NA
## 5181 NA NA
## 5182 NA NA
## 5183 NA NA
## 5184 NA NA
## 5185 NA NA
## 5186 NA NA
## 5187 NA NA
## 5188 NA NA
## 5189 NA NA
## 5190 NA NA
## 5191 NA NA
## 5192 NA NA
## 5193 NA NA
## 5194 NA NA
## 5195 NA NA
## 5196 NA NA
## 5197 NA NA
## 5198 NA NA
## 5199 NA NA
## 5200 NA NA
## 5201 NA NA
## 5202 NA NA
## 5203 NA NA
## 5204 NA NA
## 5205 NA NA
## 5206 NA NA
## 5207 NA NA
## 5208 NA NA
## 5209 NA NA
## 5210 NA NA
## 5211 NA NA
## 5212 NA NA
## 5213 NA NA
## 5214 NA NA
## 5215 NA NA
## 5216 NA NA
## 5217 NA NA
## 5218 NA NA
## 5219 NA NA
## 5220 NA NA
## 5221 NA NA
## 5222 NA NA
## 5223 NA NA
## 5224 NA NA
## 5225 NA NA
## 5226 NA NA
## 5227 NA NA
## 5228 NA NA
## 5229 NA NA
## 5230 NA NA
## 5231 NA NA
## 5232 NA NA
## 5233 NA NA
## 5234 NA NA
## 5235 NA NA
## 5236 NA NA
## 5237 NA NA
## 5238 NA NA
## 5239 NA NA
## 5240 NA NA
## 5241 NA NA
## 5242 NA NA
## 5243 NA NA
## 5244 NA NA
## 5245 NA NA
## 5246 NA NA
## 5247 NA NA
## 5248 NA NA
## 5249 NA NA
## 5250 NA NA
## 5251 NA NA
## 5252 NA NA
## 5253 NA NA
## 5254 NA NA
## 5255 NA NA
## 5256 NA NA
## 5257 NA NA
## 5258 NA NA
## 5259 NA NA
## 5260 NA NA
## 5261 NA NA
## 5262 NA NA
## 5263 NA NA
## 5264 NA NA
## 5265 NA NA
## 5266 NA NA
## 5267 NA NA
## 5268 NA NA
## 5269 NA NA
## 5270 NA NA
## 5271 NA NA
## 5272 NA NA
## 5273 NA NA
## 5274 NA NA
## 5275 NA NA
## 5276 NA NA
## 5277 NA NA
## 5278 NA NA
## 5279 NA NA
## 5280 NA NA
## 5281 NA NA
## 5282 NA NA
## 5283 NA NA
## 5284 NA NA
## 5285 NA NA
## 5286 NA NA
## 5287 NA NA
## 5288 NA NA
## 5289 NA NA
## 5290 NA NA
## 5291 NA NA
## 5292 NA NA
## 5293 NA NA
## 5294 NA NA
## 5295 NA NA
## 5296 NA NA
## 5297 NA NA
## 5298 NA NA
## 5299 NA NA
## 5300 NA NA
## 5301 NA NA
## 5302 NA NA
## 5303 NA NA
## 5304 NA NA
## 5305 NA NA
## 5306 NA NA
## 5307 NA NA
## 5308 NA NA
## 5309 NA NA
## 5310 NA NA
## 5311 NA NA
## 5312 NA NA
## 5313 NA NA
## 5314 NA NA
## 5315 NA NA
## 5316 NA NA
## 5317 NA NA
## 5318 NA NA
## 5319 NA NA
## 5320 NA NA
## 5321 NA NA
## 5322 NA NA
## 5323 NA NA
## 5324 NA NA
## 5325 NA NA
## 5326 NA NA
## 5327 NA NA
## 5328 NA NA
## 5329 NA NA
## 5330 NA NA
## 5331 NA NA
## 5332 NA NA
## 5333 NA NA
## 5334 NA NA
## 5335 NA NA
## 5336 NA NA
## 5337 NA NA
## 5338 NA NA
## 5339 NA NA
## 5340 NA NA
## 5341 NA NA
## 5342 NA NA
## 5343 NA NA
## 5344 NA NA
## 5345 NA NA
## 5346 NA NA
## 5347 NA NA
## 5348 NA NA
## 5349 NA NA
## 5350 NA NA
## 5351 NA NA
## 5352 NA NA
## 5353 NA NA
## 5354 NA NA
## 5355 NA NA
## 5356 NA NA
## 5357 NA NA
## 5358 NA NA
## 5359 NA NA
## 5360 NA NA
## 5361 NA NA
## 5362 NA NA
## 5363 NA NA
## 5364 NA NA
## 5365 NA NA
## 5366 NA NA
## 5367 NA NA
## 5368 NA NA
## 5369 NA NA
## 5370 NA NA
## 5371 NA NA
## 5372 NA NA
## 5373 NA NA
## 5374 NA NA
## 5375 NA NA
## 5376 NA NA
## 5377 NA NA
## 5378 NA NA
## 5379 NA NA
## 5380 NA NA
## 5381 NA NA
## 5382 NA NA
## 5383 NA NA
## 5384 NA NA
## 5385 NA NA
## 5386 NA NA
## 5387 NA NA
## 5388 NA NA
## 5389 NA NA
## 5390 NA NA
## 5391 NA NA
## 5392 NA NA
## 5393 NA NA
## 5394 NA NA
## 5395 NA NA
## 5396 NA NA
## 5397 NA NA
## 5398 NA NA
## 5399 NA NA
## 5400 NA NA
## 5401 NA NA
## 5402 NA NA
## 5403 NA NA
## 5404 NA NA
## 5405 NA NA
## 5406 NA NA
## 5407 NA NA
## 5408 NA NA
## 5409 NA NA
## 5410 NA NA
## 5411 NA NA
## 5412 NA NA
## 5413 NA NA
## 5414 NA NA
## 5415 NA NA
## 5416 NA NA
## 5417 NA NA
## 5418 NA NA
## 5419 NA NA
## 5420 NA NA
## 5421 NA NA
## 5422 NA NA
## 5423 NA NA
## 5424 NA NA
## 5425 NA NA
## 5426 NA NA
## 5427 NA NA
## 5428 NA NA
## 5429 NA NA
## 5430 NA NA
## 5431 NA NA
## 5432 NA NA
## 5433 NA NA
## 5434 NA NA
## 5435 NA NA
## 5436 NA NA
## 5437 NA NA
## 5438 NA NA
## 5439 NA NA
## 5440 NA NA
## 5441 NA NA
## 5442 NA NA
## 5443 NA NA
## 5444 NA NA
## 5445 NA NA
## 5446 NA NA
## 5447 NA NA
## 5448 NA NA
## 5449 NA NA
## 5450 NA NA
## 5451 NA NA
## 5452 NA NA
## 5453 NA NA
## 5454 NA NA
## 5455 NA NA
## 5456 NA NA
## 5457 NA NA
## 5458 NA NA
## 5459 NA NA
## 5460 NA NA
## 5461 NA NA
## 5462 NA NA
## 5463 NA NA
## 5464 NA NA
## 5465 NA NA
## 5466 NA NA
## 5467 NA NA
## 5468 NA NA
## 5469 NA NA
## 5470 NA NA
## 5471 NA NA
## 5472 NA NA
## 5473 NA NA
## 5474 NA NA
## 5475 NA NA
## 5476 NA NA
## 5477 NA NA
## 5478 NA NA
## 5479 NA NA
## 5480 NA NA
## 5481 NA NA
## 5482 NA NA
## 5483 NA NA
## 5484 NA NA
## 5485 NA NA
## 5486 NA NA
## 5487 NA NA
## 5488 NA NA
## 5489 NA NA
## 5490 NA NA
## 5491 NA NA
## 5492 NA NA
## 5493 NA NA
## 5494 NA NA
## 5495 NA NA
## 5496 NA NA
## 5497 NA NA
## 5498 NA NA
## 5499 NA NA
## 5500 NA NA
## 5501 NA NA
## 5502 NA NA
## 5503 NA NA
## 5504 NA NA
## 5505 NA NA
## 5506 NA NA
## 5507 NA NA
## 5508 NA NA
## 5509 NA NA
## 5510 NA NA
## 5511 NA NA
## 5512 NA NA
## 5513 NA NA
## 5514 NA NA
## 5515 NA NA
## 5516 NA NA
## 5517 NA NA
## 5518 NA NA
## 5519 NA NA
## 5520 NA NA
## 5521 NA NA
## 5522 NA NA
## 5523 NA NA
## 5524 NA NA
## 5525 NA NA
## 5526 NA NA
## 5527 NA NA
## 5528 NA NA
## 5529 NA NA
## 5530 NA NA
## 5531 NA NA
## 5532 NA NA
## 5533 NA NA
## 5534 NA NA
## 5535 NA NA
## 5536 NA NA
## 5537 NA NA
## 5538 NA NA
## 5539 NA NA
## 5540 NA NA
## 5541 NA NA
## 5542 NA NA
## 5543 NA NA
## 5544 NA NA
## 5545 NA NA
## 5546 NA NA
## 5547 NA NA
## 5548 NA NA
## 5549 NA NA
## 5550 NA NA
## 5551 NA NA
## 5552 NA NA
## 5553 NA NA
## 5554 NA NA
## 5555 NA NA
## 5556 NA NA
## 5557 NA NA
## 5558 NA NA
## 5559 NA NA
## 5560 NA NA
## 5561 NA NA
## 5562 NA NA
## 5563 NA NA
## 5564 NA NA
## 5565 NA NA
## 5566 NA NA
## 5567 NA NA
## 5568 NA NA
## 5569 NA NA
## 5570 NA NA
## 5571 NA NA
## 5572 NA NA
## 5573 NA NA
## 5574 NA NA
## 5575 NA NA
## 5576 NA NA
## 5577 NA NA
## 5578 NA NA
## 5579 NA NA
## 5580 NA NA
## 5581 NA NA
## 5582 NA NA
## 5583 NA NA
## 5584 NA NA
## 5585 NA NA
## 5586 NA NA
## 5587 NA NA
## 5588 NA NA
## 5589 NA NA
## 5590 NA NA
## 5591 NA NA
## 5592 NA NA
## 5593 NA NA
## 5594 NA NA
## 5595 NA NA
## 5596 NA NA
## 5597 NA NA
## 5598 NA NA
## 5599 NA NA
## 5600 NA NA
Here we compute the base weight from the probability given in the ESS database.
data %<>%
mutate(base.weight = 1/prob)
data %>%
select(prob, base.weight)
## prob base.weight
## 1 0.00020306164 4924.613
## 2 0.00020306164 4924.613
## 3 0.00020306164 4924.613
## 4 0.00005076541 19698.452
## 5 0.00010153082 9849.226
## 6 0.00010153082 9849.226
## 7 0.00010153082 9849.226
## 8 0.00020306164 4924.613
## 9 0.00010153082 9849.226
## 10 0.00010153082 9849.226
## 11 0.00010153082 9849.226
## 12 0.00006768721 14773.839
## 13 0.00020306164 4924.613
## 14 0.00010153082 9849.226
## 15 0.00010153082 9849.226
## 16 0.00010153082 9849.226
## 17 0.00020306164 4924.613
## 18 0.00002256240 44321.517
## 19 0.00010153082 9849.226
## 20 0.00010153082 9849.226
## 21 0.00010153082 9849.226
## 22 0.00010153082 9849.226
## 23 0.00020306164 4924.613
## 24 0.00010153082 9849.226
## 25 0.00010153082 9849.226
## 26 0.00020306164 4924.613
## 27 0.00010153082 9849.226
## 28 0.00010153082 9849.226
## 29 0.00020306164 4924.613
## 30 0.00020306164 4924.613
## 31 0.00010153082 9849.226
## 32 0.00010153082 9849.226
## 33 0.00004061233 24623.065
## 34 0.00020306164 4924.613
## 35 0.00010153082 9849.226
## 36 0.00010153082 9849.226
## 37 0.00010153082 9849.226
## 38 0.00020306164 4924.613
## 39 0.00020306164 4924.613
## 40 0.00010153082 9849.226
## 41 0.00006768721 14773.839
## 42 0.00005076541 19698.452
## 43 0.00020306164 4924.613
## 44 0.00010153082 9849.226
## 45 0.00020306164 4924.613
## 46 0.00010153082 9849.226
## 47 0.00010153082 9849.226
## 48 0.00010153082 9849.226
## 49 0.00010153082 9849.226
## 50 0.00010153082 9849.226
## 51 0.00010153082 9849.226
## 52 0.00010153082 9849.226
## 53 0.00020306164 4924.613
## 54 0.00010153082 9849.226
## 55 0.00020306164 4924.613
## 56 0.00020306164 4924.613
## 57 0.00020306164 4924.613
## 58 0.00002030616 49246.130
## 59 0.00010153082 9849.226
## 60 0.00006768721 14773.839
## 61 0.00020306164 4924.613
## 62 0.00010153082 9849.226
## 63 0.00020306164 4924.613
## 64 0.00010153082 9849.226
## 65 0.00020306164 4924.613
## 66 0.00010153082 9849.226
## 67 0.00010153082 9849.226
## 68 0.00020306164 4924.613
## 69 0.00004061233 24623.065
## 70 0.00010153082 9849.226
## 71 0.00006768721 14773.839
## 72 0.00010153082 9849.226
## 73 0.00010153082 9849.226
## 74 0.00020306164 4924.613
## 75 0.00010153082 9849.226
## 76 0.00003384361 29547.678
## 77 0.00020306164 4924.613
## 78 0.00010153082 9849.226
## 79 0.00010153082 9849.226
## 80 0.00005076541 19698.452
## 81 0.00010153082 9849.226
## 82 0.00010153082 9849.226
## 83 0.00010153082 9849.226
## 84 0.00010153082 9849.226
## 85 0.00020306164 4924.613
## 86 0.00010153082 9849.226
## 87 0.00010153082 9849.226
## 88 0.00010153082 9849.226
## 89 0.00006768721 14773.839
## 90 0.00010153082 9849.226
## 91 0.00020306164 4924.613
## 92 0.00010153082 9849.226
## 93 0.00010153082 9849.226
## 94 0.00020306164 4924.613
## 95 0.00005076541 19698.452
## 96 0.00020306164 4924.613
## 97 0.00020306164 4924.613
## 98 0.00020306164 4924.613
## 99 0.00010153082 9849.226
## 100 0.00020306164 4924.613
## 101 0.00010153082 9849.226
## 102 0.00010153082 9849.226
## 103 0.00010153082 9849.226
## 104 0.00010153082 9849.226
## 105 0.00010153082 9849.226
## 106 0.00010153082 9849.226
## 107 0.00020306164 4924.613
## 108 0.00010153082 9849.226
## 109 0.00020306164 4924.613
## 110 0.00010153082 9849.226
## 111 0.00020306164 4924.613
## 112 0.00006768721 14773.839
## 113 0.00010153082 9849.226
## 114 0.00020306164 4924.613
## 115 0.00010153082 9849.226
## 116 0.00020306164 4924.613
## 117 0.00010153082 9849.226
## 118 0.00010153082 9849.226
## 119 0.00002256240 44321.517
## 120 0.00010153082 9849.226
## 121 0.00010153082 9849.226
## 122 0.00010153082 9849.226
## 123 0.00020306164 4924.613
## 124 0.00020306164 4924.613
## 125 0.00020306164 4924.613
## 126 0.00020306164 4924.613
## 127 0.00010153082 9849.226
## 128 0.00010153082 9849.226
## 129 0.00010153082 9849.226
## 130 0.00001846015 54170.743
## 131 0.00020306164 4924.613
## 132 0.00020306164 4924.613
## 133 0.00010153082 9849.226
## 134 0.00020306164 4924.613
## 135 0.00010153082 9849.226
## 136 0.00010153082 9849.226
## 137 0.00006768721 14773.839
## 138 0.00020306164 4924.613
## 139 0.00020306164 4924.613
## 140 0.00020306164 4924.613
## 141 0.00010153082 9849.226
## 142 0.00005076541 19698.452
## 143 0.00020306164 4924.613
## 144 0.00020306164 4924.613
## 145 0.00010153082 9849.226
## 146 0.00010153082 9849.226
## 147 0.00010153082 9849.226
## 148 0.00020306164 4924.613
## 149 0.00010153082 9849.226
## 150 0.00010153082 9849.226
## 151 0.00006768721 14773.839
## 152 0.00006768721 14773.839
## 153 0.00020306164 4924.613
## 154 0.00010153082 9849.226
## 155 0.00010153082 9849.226
## 156 0.00010153082 9849.226
## 157 0.00010153082 9849.226
## 158 0.00020306164 4924.613
## 159 0.00020306164 4924.613
## 160 0.00005076541 19698.452
## 161 0.00010153082 9849.226
## 162 0.00010153082 9849.226
## 163 0.00020306164 4924.613
## 164 0.00020306164 4924.613
## 165 0.00020306164 4924.613
## 166 0.00020306164 4924.613
## 167 0.00010153082 9849.226
## 168 0.00020306164 4924.613
## 169 0.00010153082 9849.226
## 170 0.00010153082 9849.226
## 171 0.00010153082 9849.226
## 172 0.00006768721 14773.839
## 173 0.00020306164 4924.613
## 174 0.00010153082 9849.226
## 175 0.00020306164 4924.613
## 176 0.00010153082 9849.226
## 177 0.00020306164 4924.613
## 178 0.00020306164 4924.613
## 179 0.00020306164 4924.613
## 180 0.00020306164 4924.613
## 181 0.00020306164 4924.613
## 182 0.00020306164 4924.613
## 183 0.00020306164 4924.613
## 184 0.00010153082 9849.226
## 185 0.00010153082 9849.226
## 186 0.00010153082 9849.226
## 187 0.00006768721 14773.839
## 188 0.00020306164 4924.613
## 189 0.00010153082 9849.226
## 190 0.00020306164 4924.613
## 191 0.00006768721 14773.839
## 192 0.00010153082 9849.226
## 193 0.00010153082 9849.226
## 194 0.00002256240 44321.517
## 195 0.00010153082 9849.226
## 196 0.00010153082 9849.226
## 197 0.00020306164 4924.613
## 198 0.00010153082 9849.226
## 199 0.00010153082 9849.226
## 200 0.00005076541 19698.452
## 201 0.00010153082 9849.226
## 202 0.00010153082 9849.226
## 203 0.00010153082 9849.226
## 204 0.00020306164 4924.613
## 205 0.00010153082 9849.226
## 206 0.00020306164 4924.613
## 207 0.00010153082 9849.226
## 208 0.00020306164 4924.613
## 209 0.00010153082 9849.226
## 210 0.00005076541 19698.452
## 211 0.00020306164 4924.613
## 212 0.00010153082 9849.226
## 213 0.00020306164 4924.613
## 214 0.00010153082 9849.226
## 215 0.00010153082 9849.226
## 216 0.00010153082 9849.226
## 217 0.00020306164 4924.613
## 218 0.00010153082 9849.226
## 219 0.00020306164 4924.613
## 220 0.00010153082 9849.226
## 221 0.00010153082 9849.226
## 222 0.00005076541 19698.452
## 223 0.00020306164 4924.613
## 224 0.00020306164 4924.613
## 225 0.00010153082 9849.226
## 226 0.00020306164 4924.613
## 227 0.00010153082 9849.226
## 228 0.00005076541 19698.452
## 229 0.00010153082 9849.226
## 230 0.00010153082 9849.226
## 231 0.00020306164 4924.613
## 232 0.00010153082 9849.226
## 233 0.00020306164 4924.613
## 234 0.00010153082 9849.226
## 235 0.00010153082 9849.226
## 236 0.00010153082 9849.226
## 237 0.00010153082 9849.226
## 238 0.00010153082 9849.226
## 239 0.00010153082 9849.226
## 240 0.00020306164 4924.613
## 241 0.00020306164 4924.613
## 242 0.00020306164 4924.613
## 243 0.00005076541 19698.452
## 244 0.00020306164 4924.613
## 245 0.00010153082 9849.226
## 246 0.00020306164 4924.613
## 247 0.00006768721 14773.839
## 248 0.00020306164 4924.613
## 249 0.00020306164 4924.613
## 250 0.00010153082 9849.226
## 251 0.00010153082 9849.226
## 252 0.00010153082 9849.226
## 253 0.00010153082 9849.226
## 254 0.00010153082 9849.226
## 255 0.00010153082 9849.226
## 256 0.00006768721 14773.839
## 257 0.00020306164 4924.613
## 258 0.00010153082 9849.226
## 259 0.00020306164 4924.613
## 260 0.00010153082 9849.226
## 261 0.00020306164 4924.613
## 262 0.00020306164 4924.613
## 263 0.00010153082 9849.226
## 264 0.00020306164 4924.613
## 265 0.00010153082 9849.226
## 266 0.00020306164 4924.613
## 267 0.00006768721 14773.839
## 268 0.00020306164 4924.613
## 269 0.00020306164 4924.613
## 270 0.00005076541 19698.452
## 271 0.00010153082 9849.226
## 272 0.00010153082 9849.226
## 273 0.00020306164 4924.613
## 274 0.00010153082 9849.226
## 275 0.00010153082 9849.226
## 276 0.00020306164 4924.613
## 277 0.00020306164 4924.613
## 278 0.00010153082 9849.226
## 279 0.00004061233 24623.065
## 280 0.00010153082 9849.226
## 281 0.00020306164 4924.613
## 282 0.00005076541 19698.452
## 283 0.00010153082 9849.226
## 284 0.00010153082 9849.226
## 285 0.00010153082 9849.226
## 286 0.00010153082 9849.226
## 287 0.00020306164 4924.613
## 288 0.00020306164 4924.613
## 289 0.00010153082 9849.226
## 290 0.00010153082 9849.226
## 291 0.00010153082 9849.226
## 292 0.00010153082 9849.226
## 293 0.00010153082 9849.226
## 294 0.00010153082 9849.226
## 295 0.00006768721 14773.839
## 296 0.00010153082 9849.226
## 297 0.00010153082 9849.226
## 298 0.00020306164 4924.613
## 299 0.00010153082 9849.226
## 300 0.00010153082 9849.226
## 301 0.00010153082 9849.226
## 302 0.00010153082 9849.226
## 303 0.00010153082 9849.226
## 304 0.00020306164 4924.613
## 305 0.00005076541 19698.452
## 306 0.00020306164 4924.613
## 307 0.00006768721 14773.839
## 308 0.00006768721 14773.839
## 309 0.00020306164 4924.613
## 310 0.00020306164 4924.613
## 311 0.00020306164 4924.613
## 312 0.00020306164 4924.613
## 313 0.00006768721 14773.839
## 314 0.00020306164 4924.613
## 315 0.00010153082 9849.226
## 316 0.00006768721 14773.839
## 317 0.00010153082 9849.226
## 318 0.00010153082 9849.226
## 319 0.00010153082 9849.226
## 320 0.00020306164 4924.613
## 321 0.00020306164 4924.613
## 322 0.00020306164 4924.613
## 323 0.00010153082 9849.226
## 324 0.00020306164 4924.613
## 325 0.00006768721 14773.839
## 326 0.00020306164 4924.613
## 327 0.00010153082 9849.226
## 328 0.00020306164 4924.613
## 329 0.00020306164 4924.613
## 330 0.00020306164 4924.613
## 331 0.00020306164 4924.613
## 332 0.00010153082 9849.226
## 333 0.00020306164 4924.613
## 334 0.00020306164 4924.613
## 335 0.00020306164 4924.613
## 336 0.00010153082 9849.226
## 337 0.00020306164 4924.613
## 338 0.00020306164 4924.613
## 339 0.00020306164 4924.613
## 340 0.00020306164 4924.613
## 341 0.00020306164 4924.613
## 342 0.00010153082 9849.226
## 343 0.00010153082 9849.226
## 344 0.00010153082 9849.226
## 345 0.00010153082 9849.226
## 346 0.00020306164 4924.613
## 347 0.00010153082 9849.226
## 348 0.00010153082 9849.226
## 349 0.00010153082 9849.226
## 350 0.00020306164 4924.613
## 351 0.00010153082 9849.226
## 352 0.00010153082 9849.226
## 353 0.00020306164 4924.613
## 354 0.00005076541 19698.452
## 355 0.00020306164 4924.613
## 356 0.00020306164 4924.613
## 357 0.00020306164 4924.613
## 358 0.00020306164 4924.613
## 359 0.00010153082 9849.226
## 360 0.00020306164 4924.613
## 361 0.00010153082 9849.226
## 362 0.00020306164 4924.613
## 363 0.00020306164 4924.613
## 364 0.00010153082 9849.226
## 365 0.00020306164 4924.613
## 366 0.00010153082 9849.226
## 367 0.00006768721 14773.839
## 368 0.00010153082 9849.226
## 369 0.00010153082 9849.226
## 370 0.00010153082 9849.226
## 371 0.00005076541 19698.452
## 372 0.00010153082 9849.226
## 373 0.00010153082 9849.226
## 374 0.00020306164 4924.613
## 375 0.00006768721 14773.839
## 376 0.00004061233 24623.065
## 377 0.00010153082 9849.226
## 378 0.00020306164 4924.613
## 379 0.00005076541 19698.452
## 380 0.00010153082 9849.226
## 381 0.00020306164 4924.613
## 382 0.00020306164 4924.613
## 383 0.00010153082 9849.226
## 384 0.00004061233 24623.065
## 385 0.00010153082 9849.226
## 386 0.00010153082 9849.226
## 387 0.00010153082 9849.226
## 388 0.00005076541 19698.452
## 389 0.00010153082 9849.226
## 390 0.00010153082 9849.226
## 391 0.00006768721 14773.839
## 392 0.00010153082 9849.226
## 393 0.00020306164 4924.613
## 394 0.00020306164 4924.613
## 395 0.00010153082 9849.226
## 396 0.00006768721 14773.839
## 397 0.00020306164 4924.613
## 398 0.00010153082 9849.226
## 399 0.00010153082 9849.226
## 400 0.00006768721 14773.839
## 401 0.00010153082 9849.226
## 402 0.00010153082 9849.226
## 403 0.00020306164 4924.613
## 404 0.00020306164 4924.613
## 405 0.00010153082 9849.226
## 406 0.00010153082 9849.226
## 407 0.00010153082 9849.226
## 408 0.00020306164 4924.613
## 409 0.00006768721 14773.839
## 410 0.00020306164 4924.613
## 411 0.00010153082 9849.226
## 412 0.00020306164 4924.613
## 413 0.00020306164 4924.613
## 414 0.00010153082 9849.226
## 415 0.00020306164 4924.613
## 416 0.00020306164 4924.613
## 417 0.00010153082 9849.226
## 418 0.00010153082 9849.226
## 419 0.00010153082 9849.226
## 420 0.00010153082 9849.226
## 421 0.00020306164 4924.613
## 422 0.00010153082 9849.226
## 423 0.00020306164 4924.613
## 424 0.00010153082 9849.226
## 425 0.00010153082 9849.226
## 426 0.00010153082 9849.226
## 427 0.00010153082 9849.226
## 428 0.00010153082 9849.226
## 429 0.00020306164 4924.613
## 430 0.00005076541 19698.452
## 431 0.00020306164 4924.613
## 432 0.00010153082 9849.226
## 433 0.00020306164 4924.613
## 434 0.00010153082 9849.226
## 435 0.00020306164 4924.613
## 436 0.00010153082 9849.226
## 437 0.00020306164 4924.613
## 438 0.00010153082 9849.226
## 439 0.00010153082 9849.226
## 440 0.00010153082 9849.226
## 441 0.00010153082 9849.226
## 442 0.00010153082 9849.226
## 443 0.00010153082 9849.226
## 444 0.00010153082 9849.226
## 445 0.00020306164 4924.613
## 446 0.00010153082 9849.226
## 447 0.00006768721 14773.839
## 448 0.00004061233 24623.065
## 449 0.00010153082 9849.226
## 450 0.00010153082 9849.226
## 451 0.00020306164 4924.613
## 452 0.00010153082 9849.226
## 453 0.00004061233 24623.065
## 454 0.00020306164 4924.613
## 455 0.00010153082 9849.226
## 456 0.00020306164 4924.613
## 457 0.00010153082 9849.226
## 458 0.00020306164 4924.613
## 459 0.00010153082 9849.226
## 460 0.00010153082 9849.226
## 461 0.00010153082 9849.226
## 462 0.00020306164 4924.613
## 463 0.00020306164 4924.613
## 464 0.00010153082 9849.226
## 465 0.00010153082 9849.226
## 466 0.00020306164 4924.613
## 467 0.00010153082 9849.226
## 468 0.00010153082 9849.226
## 469 0.00010153082 9849.226
## 470 0.00020306164 4924.613
## 471 0.00010153082 9849.226
## 472 0.00010153082 9849.226
## 473 0.00020306164 4924.613
## 474 0.00020306164 4924.613
## 475 0.00010153082 9849.226
## 476 0.00020306164 4924.613
## 477 0.00010153082 9849.226
## 478 0.00006768721 14773.839
## 479 0.00005076541 19698.452
## 480 0.00005076541 19698.452
## 481 0.00010153082 9849.226
## 482 0.00010153082 9849.226
## 483 0.00006768721 14773.839
## 484 0.00003384361 29547.678
## 485 0.00020306164 4924.613
## 486 0.00010153082 9849.226
## 487 0.00020306164 4924.613
## 488 0.00010153082 9849.226
## 489 0.00020306164 4924.613
## 490 0.00020306164 4924.613
## 491 0.00010153082 9849.226
## 492 0.00010153082 9849.226
## 493 0.00010153082 9849.226
## 494 0.00010153082 9849.226
## 495 0.00020306164 4924.613
## 496 0.00020306164 4924.613
## 497 0.00020306164 4924.613
## 498 0.00010153082 9849.226
## 499 0.00020306164 4924.613
## 500 0.00006768721 14773.839
## 501 0.00010153082 9849.226
## 502 0.00010153082 9849.226
## 503 0.00020306164 4924.613
## 504 0.00010153082 9849.226
## 505 0.00010153082 9849.226
## 506 0.00010153082 9849.226
## 507 0.00010153082 9849.226
## 508 0.00020306164 4924.613
## 509 0.00020306164 4924.613
## 510 0.00020306164 4924.613
## 511 0.00020306164 4924.613
## 512 0.00020306164 4924.613
## 513 0.00020306164 4924.613
## 514 0.00020306164 4924.613
## 515 0.00010153082 9849.226
## 516 0.00006768721 14773.839
## 517 0.00020306164 4924.613
## 518 0.00010153082 9849.226
## 519 0.00006768721 14773.839
## 520 0.00020306164 4924.613
## 521 0.00010153082 9849.226
## 522 0.00020306164 4924.613
## 523 0.00010153082 9849.226
## 524 0.00020306164 4924.613
## 525 0.00010153082 9849.226
## 526 0.00010153082 9849.226
## 527 0.00010153082 9849.226
## 528 0.00010153082 9849.226
## 529 0.00005076541 19698.452
## 530 0.00020306164 4924.613
## 531 0.00010153082 9849.226
## 532 0.00010153082 9849.226
## 533 0.00010153082 9849.226
## 534 0.00010153082 9849.226
## 535 0.00020306164 4924.613
## 536 0.00010153082 9849.226
## 537 0.00010153082 9849.226
## 538 0.00003384361 29547.678
## 539 0.00010153082 9849.226
## 540 0.00020306164 4924.613
## 541 0.00010153082 9849.226
## 542 0.00020306164 4924.613
## 543 0.00020306164 4924.613
## 544 0.00020306164 4924.613
## 545 0.00020306164 4924.613
## 546 0.00010153082 9849.226
## 547 0.00010153082 9849.226
## 548 0.00020306164 4924.613
## 549 0.00020306164 4924.613
## 550 0.00020306164 4924.613
## 551 0.00010153082 9849.226
## 552 0.00010153082 9849.226
## 553 0.00020306164 4924.613
## 554 0.00010153082 9849.226
## 555 0.00010153082 9849.226
## 556 0.00020306164 4924.613
## 557 0.00010153082 9849.226
## 558 0.00010153082 9849.226
## 559 0.00020306164 4924.613
## 560 0.00010153082 9849.226
## 561 0.00020306164 4924.613
## 562 0.00010153082 9849.226
## 563 0.00020306164 4924.613
## 564 0.00010153082 9849.226
## 565 0.00010153082 9849.226
## 566 0.00010153082 9849.226
## 567 0.00020306164 4924.613
## 568 0.00020306164 4924.613
## 569 0.00010153082 9849.226
## 570 0.00006768721 14773.839
## 571 0.00010153082 9849.226
## 572 0.00020306164 4924.613
## 573 0.00010153082 9849.226
## 574 0.00010153082 9849.226
## 575 0.00005076541 19698.452
## 576 0.00010153082 9849.226
## 577 0.00020306164 4924.613
## 578 0.00010153082 9849.226
## 579 0.00020306164 4924.613
## 580 0.00020306164 4924.613
## 581 0.00005076541 19698.452
## 582 0.00010153082 9849.226
## 583 0.00020306164 4924.613
## 584 0.00020306164 4924.613
## 585 0.00020306164 4924.613
## 586 0.00006768721 14773.839
## 587 0.00020306164 4924.613
## 588 0.00006768721 14773.839
## 589 0.00010153082 9849.226
## 590 0.00010153082 9849.226
## 591 0.00020306164 4924.613
## 592 0.00010153082 9849.226
## 593 0.00020306164 4924.613
## 594 0.00010153082 9849.226
## 595 0.00010153082 9849.226
## 596 0.00020306164 4924.613
## 597 0.00003384361 29547.678
## 598 0.00005076541 19698.452
## 599 0.00020306164 4924.613
## 600 0.00010153082 9849.226
## 601 0.00020306164 4924.613
## 602 0.00020306164 4924.613
## 603 0.00010153082 9849.226
## 604 0.00020306164 4924.613
## 605 0.00010153082 9849.226
## 606 0.00020306164 4924.613
## 607 0.00020306164 4924.613
## 608 0.00020306164 4924.613
## 609 0.00010153082 9849.226
## 610 0.00010153082 9849.226
## 611 0.00020306164 4924.613
## 612 0.00020306164 4924.613
## 613 0.00020306164 4924.613
## 614 0.00010153082 9849.226
## 615 0.00020306164 4924.613
## 616 0.00020306164 4924.613
## 617 0.00020306164 4924.613
## 618 0.00005076541 19698.452
## 619 0.00020306164 4924.613
## 620 0.00010153082 9849.226
## 621 0.00010153082 9849.226
## 622 0.00020306164 4924.613
## 623 0.00010153082 9849.226
## 624 0.00010153082 9849.226
## 625 0.00020306164 4924.613
## 626 0.00020306164 4924.613
## 627 0.00010153082 9849.226
## 628 0.00006768721 14773.839
## 629 0.00010153082 9849.226
## 630 0.00010153082 9849.226
## 631 0.00010153082 9849.226
## 632 0.00010153082 9849.226
## 633 0.00006768721 14773.839
## 634 0.00020306164 4924.613
## 635 0.00010153082 9849.226
## 636 0.00010153082 9849.226
## 637 0.00020306164 4924.613
## 638 0.00010153082 9849.226
## 639 0.00020306164 4924.613
## 640 0.00006768721 14773.839
## 641 0.00010153082 9849.226
## 642 0.00005076541 19698.452
## 643 0.00020306164 4924.613
## 644 0.00020306164 4924.613
## 645 0.00010153082 9849.226
## 646 0.00010153082 9849.226
## 647 0.00020306164 4924.613
## 648 0.00020306164 4924.613
## 649 0.00020306164 4924.613
## 650 0.00010153082 9849.226
## 651 0.00005076541 19698.452
## 652 0.00010153082 9849.226
## 653 0.00010153082 9849.226
## 654 0.00020306164 4924.613
## 655 0.00006768721 14773.839
## 656 0.00020306164 4924.613
## 657 0.00005076541 19698.452
## 658 0.00020306164 4924.613
## 659 0.00006768721 14773.839
## 660 0.00006768721 14773.839
## 661 0.00020306164 4924.613
## 662 0.00005076541 19698.452
## 663 0.00005076541 19698.452
## 664 0.00020306164 4924.613
## 665 0.00010153082 9849.226
## 666 0.00020306164 4924.613
## 667 0.00020306164 4924.613
## 668 0.00020306164 4924.613
## 669 0.00020306164 4924.613
## 670 0.00010153082 9849.226
## 671 0.00010153082 9849.226
## 672 0.00020306164 4924.613
## 673 0.00010153082 9849.226
## 674 0.00020306164 4924.613
## 675 0.00010153082 9849.226
## 676 0.00010153082 9849.226
## 677 0.00010153082 9849.226
## 678 0.00020306164 4924.613
## 679 0.00020306164 4924.613
## 680 0.00020306164 4924.613
## 681 0.00010153082 9849.226
## 682 0.00002256240 44321.517
## 683 0.00006768721 14773.839
## 684 0.00020306164 4924.613
## 685 0.00020306164 4924.613
## 686 0.00010153082 9849.226
## 687 0.00010153082 9849.226
## 688 0.00010153082 9849.226
## 689 0.00013681033 7309.389
## 690 0.00010153082 9849.226
## 691 0.00020306164 4924.613
## 692 0.00020306164 4924.613
## 693 0.00010153082 9849.226
## 694 0.00010153082 9849.226
## 695 0.00020306164 4924.613
## 696 0.00010153082 9849.226
## 697 0.00020306164 4924.613
## 698 0.00010153082 9849.226
## 699 0.00006768721 14773.839
## 700 0.00020306164 4924.613
## 701 0.00010153082 9849.226
## 702 0.00010153082 9849.226
## 703 0.00010153082 9849.226
## 704 0.00010153082 9849.226
## 705 0.00010153082 9849.226
## 706 0.00020306164 4924.613
## 707 0.00010153082 9849.226
## 708 0.00010153082 9849.226
## 709 0.00006768721 14773.839
## 710 0.00010153082 9849.226
## 711 0.00010153082 9849.226
## 712 0.00010153082 9849.226
## 713 0.00010153082 9849.226
## 714 0.00010153082 9849.226
## 715 0.00010153082 9849.226
## 716 0.00006768721 14773.839
## 717 0.00020306164 4924.613
## 718 0.00010153082 9849.226
## 719 0.00010153082 9849.226
## 720 0.00020306164 4924.613
## 721 0.00020306164 4924.613
## 722 0.00020306164 4924.613
## 723 0.00006768721 14773.839
## 724 0.00010153082 9849.226
## 725 0.00020306164 4924.613
## 726 0.00010153082 9849.226
## 727 0.00006768721 14773.839
## 728 0.00010153082 9849.226
## 729 0.00004061233 24623.065
## 730 0.00010153082 9849.226
## 731 0.00010153082 9849.226
## 732 0.00006768721 14773.839
## 733 0.00010153082 9849.226
## 734 0.00010153082 9849.226
## 735 0.00020306164 4924.613
## 736 0.00006768721 14773.839
## 737 0.00010153082 9849.226
## 738 0.00020306164 4924.613
## 739 0.00020306164 4924.613
## 740 0.00020306164 4924.613
## 741 0.00020306164 4924.613
## 742 0.00010153082 9849.226
## 743 0.00010153082 9849.226
## 744 0.00020306164 4924.613
## 745 0.00005076541 19698.452
## 746 0.00010153082 9849.226
## 747 0.00006768721 14773.839
## 748 0.00020306164 4924.613
## 749 0.00006768721 14773.839
## 750 0.00010153082 9849.226
## 751 0.00010153082 9849.226
## 752 0.00010153082 9849.226
## 753 0.00005076541 19698.452
## 754 0.00020306164 4924.613
## 755 0.00010153082 9849.226
## 756 0.00005076541 19698.452
## 757 0.00010153082 9849.226
## 758 0.00020306164 4924.613
## 759 0.00020306164 4924.613
## 760 0.00004061233 24623.065
## 761 0.00010153082 9849.226
## 762 0.00006768721 14773.839
## 763 0.00010153082 9849.226
## 764 0.00010153082 9849.226
## 765 0.00005076541 19698.452
## 766 0.00020306164 4924.613
## 767 0.00010153082 9849.226
## 768 0.00020306164 4924.613
## 769 0.00010153082 9849.226
## 770 0.00010153082 9849.226
## 771 0.00010153082 9849.226
## 772 0.00010153082 9849.226
## 773 0.00010153082 9849.226
## 774 0.00010153082 9849.226
## 775 0.00020306164 4924.613
## 776 0.00020306164 4924.613
## 777 0.00010153082 9849.226
## 778 0.00010153082 9849.226
## 779 0.00006768721 14773.839
## 780 0.00020306164 4924.613
## 781 0.00010153082 9849.226
## 782 0.00006768721 14773.839
## 783 0.00010153082 9849.226
## 784 0.00010153082 9849.226
## 785 0.00010153082 9849.226
## 786 0.00010153082 9849.226
## 787 0.00006768721 14773.839
## 788 0.00010153082 9849.226
## 789 0.00010153082 9849.226
## 790 0.00020306164 4924.613
## 791 0.00010153082 9849.226
## 792 0.00005076541 19698.452
## 793 0.00020306164 4924.613
## 794 0.00020306164 4924.613
## 795 0.00020306164 4924.613
## 796 0.00020306164 4924.613
## 797 0.00006768721 14773.839
## 798 0.00010153082 9849.226
## 799 0.00020306164 4924.613
## 800 0.00010153082 9849.226
## 801 0.00010153082 9849.226
## 802 0.00020306164 4924.613
## 803 0.00010153082 9849.226
## 804 0.00006768721 14773.839
## 805 0.00020306164 4924.613
## 806 0.00010153082 9849.226
## 807 0.00005076541 19698.452
## 808 0.00020306164 4924.613
## 809 0.00005076541 19698.452
## 810 0.00010153082 9849.226
## 811 0.00010153082 9849.226
## 812 0.00010153082 9849.226
## 813 0.00010153082 9849.226
## 814 0.00020306164 4924.613
## 815 0.00010153082 9849.226
## 816 0.00010153082 9849.226
## 817 0.00020306164 4924.613
## 818 0.00020306164 4924.613
## 819 0.00010153082 9849.226
## 820 0.00020306164 4924.613
## 821 0.00010153082 9849.226
## 822 0.00010153082 9849.226
## 823 0.00010153082 9849.226
## 824 0.00020306164 4924.613
## 825 0.00020306164 4924.613
## 826 0.00020306164 4924.613
## 827 0.00020306164 4924.613
## 828 0.00010153082 9849.226
## 829 0.00020306164 4924.613
## 830 0.00010153082 9849.226
## 831 0.00010153082 9849.226
## 832 0.00010153082 9849.226
## 833 0.00005076541 19698.452
## 834 0.00020306164 4924.613
## 835 0.00010153082 9849.226
## 836 0.00010153082 9849.226
## 837 0.00004061233 24623.065
## 838 0.00020306164 4924.613
## 839 0.00003384361 29547.678
## 840 0.00010153082 9849.226
## 841 0.00010153082 9849.226
## 842 0.00010153082 9849.226
## 843 0.00010153082 9849.226
## 844 0.00005076541 19698.452
## 845 0.00020306164 4924.613
## 846 0.00002256240 44321.517
## 847 0.00010153082 9849.226
## 848 0.00010153082 9849.226
## 849 0.00006768721 14773.839
## 850 0.00001682761 59426.130
## 851 0.00010153082 9849.226
## 852 0.00010153082 9849.226
## 853 0.00010153082 9849.226
## 854 0.00020306164 4924.613
## 855 0.00005076541 19698.452
## 856 0.00010153082 9849.226
## 857 0.00020306164 4924.613
## 858 0.00006768721 14773.839
## 859 0.00010153082 9849.226
## 860 0.00010153082 9849.226
## 861 0.00006768721 14773.839
## 862 0.00006768721 14773.839
## 863 0.00020306164 4924.613
## 864 0.00010153082 9849.226
## 865 0.00020306164 4924.613
## 866 0.00010153082 9849.226
## 867 0.00006768721 14773.839
## 868 0.00006768721 14773.839
## 869 0.00020306164 4924.613
## 870 0.00005076541 19698.452
## 871 0.00010153082 9849.226
## 872 0.00020306164 4924.613
## 873 0.00020306164 4924.613
## 874 0.00010153082 9849.226
## 875 0.00020306164 4924.613
## 876 0.00010153082 9849.226
## 877 0.00010153082 9849.226
## 878 0.00020306164 4924.613
## 879 0.00020306164 4924.613
## 880 0.00010153082 9849.226
## 881 0.00010153082 9849.226
## 882 0.00010153082 9849.226
## 883 0.00020306164 4924.613
## 884 0.00020306164 4924.613
## 885 0.00020306164 4924.613
## 886 0.00010153082 9849.226
## 887 0.00002900881 34472.291
## 888 0.00020306164 4924.613
## 889 0.00005076541 19698.452
## 890 0.00010153082 9849.226
## 891 0.00010153082 9849.226
## 892 0.00020306164 4924.613
## 893 0.00020306164 4924.613
## 894 0.00006768721 14773.839
## 895 0.00010153082 9849.226
## 896 0.00020306164 4924.613
## 897 0.00006768721 14773.839
## 898 0.00010153082 9849.226
## 899 0.00010153082 9849.226
## 900 0.00020306164 4924.613
## 901 0.00020306164 4924.613
## 902 0.00010153082 9849.226
## 903 0.00010153082 9849.226
## 904 0.00005076541 19698.452
## 905 0.00010153082 9849.226
## 906 0.00010153082 9849.226
## 907 0.00020306164 4924.613
## 908 0.00010153082 9849.226
## 909 0.00020306164 4924.613
## 910 0.00010153082 9849.226
## 911 0.00010153082 9849.226
## 912 0.00005076541 19698.452
## 913 0.00010153082 9849.226
## 914 0.00006768721 14773.839
## 915 0.00020306164 4924.613
## 916 0.00020306164 4924.613
## 917 0.00020306164 4924.613
## 918 0.00010153082 9849.226
## 919 0.00010153082 9849.226
## 920 0.00010153082 9849.226
## 921 0.00010153082 9849.226
## 922 0.00010153082 9849.226
## 923 0.00010153082 9849.226
## 924 0.00020306164 4924.613
## 925 0.00010153082 9849.226
## 926 0.00010153082 9849.226
## 927 0.00010153082 9849.226
## 928 0.00010153082 9849.226
## 929 0.00020306164 4924.613
## 930 0.00010153082 9849.226
## 931 0.00010153082 9849.226
## 932 0.00010153082 9849.226
## 933 0.00006768721 14773.839
## 934 0.00020306164 4924.613
## 935 0.00010153082 9849.226
## 936 0.00010153082 9849.226
## 937 0.00020306164 4924.613
## 938 0.00010153082 9849.226
## 939 0.00010153082 9849.226
## 940 0.00010153082 9849.226
## 941 0.00010153082 9849.226
## 942 0.00010153082 9849.226
## 943 0.00020306164 4924.613
## 944 0.00010153082 9849.226
## 945 0.00020306164 4924.613
## 946 0.00006768721 14773.839
## 947 0.00020306164 4924.613
## 948 0.00020306164 4924.613
## 949 0.00006768721 14773.839
## 950 0.00010153082 9849.226
## 951 0.00010153082 9849.226
## 952 0.00020306164 4924.613
## 953 0.00004061233 24623.065
## 954 0.00006768721 14773.839
## 955 0.00020306164 4924.613
## 956 0.00020306164 4924.613
## 957 0.00010153082 9849.226
## 958 0.00020306164 4924.613
## 959 0.00020306164 4924.613
## 960 0.00010153082 9849.226
## 961 0.00010153082 9849.226
## 962 0.00010153082 9849.226
## 963 0.00005076541 19698.452
## 964 0.00020306164 4924.613
## 965 0.00006768721 14773.839
## 966 0.00020306164 4924.613
## 967 0.00020306164 4924.613
## 968 0.00010153082 9849.226
## 969 0.00020306164 4924.613
## 970 0.00010153082 9849.226
## 971 0.00005076541 19698.452
## 972 0.00010153082 9849.226
## 973 0.00020306164 4924.613
## 974 0.00010153082 9849.226
## 975 0.00020306164 4924.613
## 976 0.00010153082 9849.226
## 977 0.00004061233 24623.065
## 978 0.00010153082 9849.226
## 979 0.00020306164 4924.613
## 980 0.00010153082 9849.226
## 981 0.00020306164 4924.613
## 982 0.00010153082 9849.226
## 983 0.00010153082 9849.226
## 984 0.00010153082 9849.226
## 985 0.00006768721 14773.839
## 986 0.00010153082 9849.226
## 987 0.00005076541 19698.452
## 988 0.00020306164 4924.613
## 989 0.00020306164 4924.613
## 990 0.00020306164 4924.613
## 991 0.00010153082 9849.226
## 992 0.00010153082 9849.226
## 993 0.00010153082 9849.226
## 994 0.00010153082 9849.226
## 995 0.00020306164 4924.613
## 996 0.00005076541 19698.452
## 997 0.00010153082 9849.226
## 998 0.00020306164 4924.613
## 999 0.00010153082 9849.226
## 1000 0.00006768721 14773.839
## 1001 0.00010153082 9849.226
## 1002 0.00010153082 9849.226
## 1003 0.00010153082 9849.226
## 1004 0.00010153082 9849.226
## 1005 0.00006768721 14773.839
## 1006 0.00006768721 14773.839
## 1007 0.00020306164 4924.613
## 1008 0.00010153082 9849.226
## 1009 0.00010153082 9849.226
## 1010 0.00020306164 4924.613
## 1011 0.00020306164 4924.613
## 1012 0.00020306164 4924.613
## 1013 0.00010153082 9849.226
## 1014 0.00010153082 9849.226
## 1015 0.00010153082 9849.226
## 1016 0.00010153082 9849.226
## 1017 0.00020306164 4924.613
## 1018 0.00020306164 4924.613
## 1019 0.00010153082 9849.226
## 1020 0.00020306164 4924.613
## 1021 0.00005076541 19698.452
## 1022 0.00020306164 4924.613
## 1023 0.00020306164 4924.613
## 1024 0.00010153082 9849.226
## 1025 0.00010153082 9849.226
## 1026 0.00010153082 9849.226
## 1027 0.00005076541 19698.452
## 1028 0.00010153082 9849.226
## 1029 0.00010153082 9849.226
## 1030 0.00006768721 14773.839
## 1031 0.00010153082 9849.226
## 1032 0.00010153082 9849.226
## 1033 0.00020306164 4924.613
## 1034 0.00010153082 9849.226
## 1035 0.00010153082 9849.226
## 1036 0.00010153082 9849.226
## 1037 0.00010153082 9849.226
## 1038 0.00020306164 4924.613
## 1039 0.00010153082 9849.226
## 1040 0.00020306164 4924.613
## 1041 0.00006768721 14773.839
## 1042 0.00020306164 4924.613
## 1043 0.00010153082 9849.226
## 1044 0.00010153082 9849.226
## 1045 0.00020306164 4924.613
## 1046 0.00006768721 14773.839
## 1047 0.00006768721 14773.839
## 1048 0.00006768721 14773.839
## 1049 0.00020306164 4924.613
## 1050 0.00020306164 4924.613
## 1051 0.00010153082 9849.226
## 1052 0.00020306164 4924.613
## 1053 0.00020306164 4924.613
## 1054 0.00010153082 9849.226
## 1055 0.00020306164 4924.613
## 1056 0.00020306164 4924.613
## 1057 0.00010153082 9849.226
## 1058 0.00006768721 14773.839
## 1059 0.00006768721 14773.839
## 1060 0.00020306164 4924.613
## 1061 0.00020306164 4924.613
## 1062 0.00010153082 9849.226
## 1063 0.00020306164 4924.613
## 1064 0.00010153082 9849.226
## 1065 0.00005076541 19698.452
## 1066 0.00020306164 4924.613
## 1067 0.00010153082 9849.226
## 1068 0.00020306164 4924.613
## 1069 0.00006768721 14773.839
## 1070 0.00005076541 19698.452
## 1071 0.00010153082 9849.226
## 1072 0.00010153082 9849.226
## 1073 0.00010153082 9849.226
## 1074 0.00010153082 9849.226
## 1075 0.00020306164 4924.613
## 1076 0.00010153082 9849.226
## 1077 0.00020306164 4924.613
## 1078 0.00010153082 9849.226
## 1079 0.00020306164 4924.613
## 1080 0.00006768721 14773.839
## 1081 0.00020306164 4924.613
## 1082 0.00020306164 4924.613
## 1083 0.00010153082 9849.226
## 1084 0.00010153082 9849.226
## 1085 0.00010153082 9849.226
## 1086 0.00006768721 14773.839
## 1087 0.00010153082 9849.226
## 1088 0.00010153082 9849.226
## 1089 0.00010153082 9849.226
## 1090 0.00010153082 9849.226
## 1091 0.00010153082 9849.226
## 1092 0.00010153082 9849.226
## 1093 0.00020306164 4924.613
## 1094 0.00010153082 9849.226
## 1095 0.00010153082 9849.226
## 1096 0.00010153082 9849.226
## 1097 0.00020306164 4924.613
## 1098 0.00020306164 4924.613
## 1099 0.00010153082 9849.226
## 1100 0.00020306164 4924.613
## 1101 0.00006768721 14773.839
## 1102 0.00020306164 4924.613
## 1103 0.00020306164 4924.613
## 1104 0.00020306164 4924.613
## 1105 0.00020306164 4924.613
## 1106 0.00010153082 9849.226
## 1107 0.00020306164 4924.613
## 1108 0.00020306164 4924.613
## 1109 0.00010153082 9849.226
## 1110 0.00010153082 9849.226
## 1111 0.00020306164 4924.613
## 1112 0.00020306164 4924.613
## 1113 0.00010153082 9849.226
## 1114 0.00010153082 9849.226
## 1115 0.00010153082 9849.226
## 1116 0.00020306164 4924.613
## 1117 0.00010153082 9849.226
## 1118 0.00020306164 4924.613
## 1119 0.00020306164 4924.613
## 1120 0.00010153082 9849.226
## 1121 0.00006768721 14773.839
## 1122 0.00020306164 4924.613
## 1123 0.00010153082 9849.226
## 1124 0.00005076541 19698.452
## 1125 0.00020306164 4924.613
## 1126 0.00005076541 19698.452
## 1127 0.00010153082 9849.226
## 1128 0.00006768721 14773.839
## 1129 0.00010153082 9849.226
## 1130 0.00020306164 4924.613
## 1131 0.00005076541 19698.452
## 1132 0.00002256240 44321.517
## 1133 0.00005076541 19698.452
## 1134 0.00010153082 9849.226
## 1135 0.00020306164 4924.613
## 1136 0.00006768721 14773.839
## 1137 0.00010153082 9849.226
## 1138 0.00010153082 9849.226
## 1139 0.00020306164 4924.613
## 1140 0.00010153082 9849.226
## 1141 0.00020306164 4924.613
## 1142 0.00020306164 4924.613
## 1143 0.00010153082 9849.226
## 1144 0.00005076541 19698.452
## 1145 0.00010153082 9849.226
## 1146 0.00010153082 9849.226
## 1147 0.00020306164 4924.613
## 1148 0.00020306164 4924.613
## 1149 0.00010153082 9849.226
## 1150 0.00020306164 4924.613
## 1151 0.00020306164 4924.613
## 1152 0.00020306164 4924.613
## 1153 0.00020306164 4924.613
## 1154 0.00006768721 14773.839
## 1155 0.00010153082 9849.226
## 1156 0.00010153082 9849.226
## 1157 0.00010153082 9849.226
## 1158 0.00020306164 4924.613
## 1159 0.00020306164 4924.613
## 1160 0.00010153082 9849.226
## 1161 0.00010153082 9849.226
## 1162 0.00010153082 9849.226
## 1163 0.00020306164 4924.613
## 1164 0.00020306164 4924.613
## 1165 0.00020306164 4924.613
## 1166 0.00020306164 4924.613
## 1167 0.00010153082 9849.226
## 1168 0.00004061233 24623.065
## 1169 0.00010153082 9849.226
## 1170 0.00010153082 9849.226
## 1171 0.00010153082 9849.226
## 1172 0.00010153082 9849.226
## 1173 0.00010153082 9849.226
## 1174 0.00020306164 4924.613
## 1175 0.00010153082 9849.226
## 1176 0.00010153082 9849.226
## 1177 0.00006768721 14773.839
## 1178 0.00020306164 4924.613
## 1179 0.00010153082 9849.226
## 1180 0.00010153082 9849.226
## 1181 0.00010153082 9849.226
## 1182 0.00010153082 9849.226
## 1183 0.00020306164 4924.613
## 1184 0.00010153082 9849.226
## 1185 0.00020306164 4924.613
## 1186 0.00010153082 9849.226
## 1187 0.00010153082 9849.226
## 1188 0.00020306164 4924.613
## 1189 0.00020306164 4924.613
## 1190 0.00010153082 9849.226
## 1191 0.00020306164 4924.613
## 1192 0.00010153082 9849.226
## 1193 0.00020306164 4924.613
## 1194 0.00010153082 9849.226
## 1195 0.00010153082 9849.226
## 1196 0.00020306164 4924.613
## 1197 0.00010153082 9849.226
## 1198 0.00010153082 9849.226
## 1199 0.00010153082 9849.226
## 1200 0.00010153082 9849.226
## 1201 0.00010153082 9849.226
## 1202 0.00020306164 4924.613
## 1203 0.00010153082 9849.226
## 1204 0.00020306164 4924.613
## 1205 0.00010153082 9849.226
## 1206 0.00020306164 4924.613
## 1207 0.00020306164 4924.613
## 1208 0.00020306164 4924.613
## 1209 0.00010153082 9849.226
## 1210 0.00010153082 9849.226
## 1211 0.00010153082 9849.226
## 1212 0.00010153082 9849.226
## 1213 0.00010153082 9849.226
## 1214 0.00006768721 14773.839
## 1215 0.00020306164 4924.613
## 1216 0.00020306164 4924.613
## 1217 0.00020306164 4924.613
## 1218 0.00020306164 4924.613
## 1219 0.00010153082 9849.226
## 1220 0.00005076541 19698.452
## 1221 0.00006768721 14773.839
## 1222 0.00005076541 19698.452
## 1223 0.00005076541 19698.452
## 1224 0.00005076541 19698.452
## 1225 0.00006768721 14773.839
## 1226 0.00006768721 14773.839
## 1227 0.00010153082 9849.226
## 1228 0.00010153082 9849.226
## 1229 0.00006768721 14773.839
## 1230 0.00006768721 14773.839
## 1231 0.00020306164 4924.613
## 1232 0.00020306164 4924.613
## 1233 0.00010153082 9849.226
## 1234 0.00010153082 9849.226
## 1235 0.00010153082 9849.226
## 1236 0.00010153082 9849.226
## 1237 0.00010153082 9849.226
## 1238 0.00010153082 9849.226
## 1239 0.00010153082 9849.226
## 1240 0.00020306164 4924.613
## 1241 0.00010153082 9849.226
## 1242 0.00010153082 9849.226
## 1243 0.00020306164 4924.613
## 1244 0.00010153082 9849.226
## 1245 0.00006768721 14773.839
## 1246 0.00020306164 4924.613
## 1247 0.00010153082 9849.226
## 1248 0.00020306164 4924.613
## 1249 0.00020306164 4924.613
## 1250 0.00010153082 9849.226
## 1251 0.00010153082 9849.226
## 1252 0.00020306164 4924.613
## 1253 0.00010153082 9849.226
## 1254 0.00010153082 9849.226
## 1255 0.00020306164 4924.613
## 1256 0.00020306164 4924.613
## 1257 0.00010153082 9849.226
## 1258 0.00010153082 9849.226
## 1259 0.00010153082 9849.226
## 1260 0.00020306164 4924.613
## 1261 0.00010153082 9849.226
## 1262 0.00010153082 9849.226
## 1263 0.00006768721 14773.839
## 1264 0.00020306164 4924.613
## 1265 0.00020306164 4924.613
## 1266 0.00020306164 4924.613
## 1267 0.00020306164 4924.613
## 1268 0.00010153082 9849.226
## 1269 0.00010153082 9849.226
## 1270 0.00006768721 14773.839
## 1271 0.00010153082 9849.226
## 1272 0.00010153082 9849.226
## 1273 0.00010153082 9849.226
## 1274 0.00020306164 4924.613
## 1275 0.00010153082 9849.226
## 1276 0.00020306164 4924.613
## 1277 0.00010153082 9849.226
## 1278 0.00010153082 9849.226
## 1279 0.00010153082 9849.226
## 1280 0.00005076541 19698.452
## 1281 0.00010153082 9849.226
## 1282 0.00010153082 9849.226
## 1283 0.00020306164 4924.613
## 1284 0.00020306164 4924.613
## 1285 0.00020306164 4924.613
## 1286 0.00010153082 9849.226
## 1287 0.00020306164 4924.613
## 1288 0.00020306164 4924.613
## 1289 0.00020306164 4924.613
## 1290 0.00010153082 9849.226
## 1291 0.00020306164 4924.613
## 1292 0.00010153082 9849.226
## 1293 0.00003384361 29547.678
## 1294 0.00010153082 9849.226
## 1295 0.00020306164 4924.613
## 1296 0.00010153082 9849.226
## 1297 0.00020306164 4924.613
## 1298 0.00010153082 9849.226
## 1299 0.00010153082 9849.226
## 1300 0.00013681033 7309.389
## 1301 0.00010153082 9849.226
## 1302 0.00010153082 9849.226
## 1303 0.00020306164 4924.613
## 1304 0.00020306164 4924.613
## 1305 0.00020306164 4924.613
## 1306 0.00010153082 9849.226
## 1307 0.00010153082 9849.226
## 1308 0.00010153082 9849.226
## 1309 0.00010153082 9849.226
## 1310 0.00010153082 9849.226
## 1311 0.00020306164 4924.613
## 1312 0.00005076541 19698.452
## 1313 0.00010153082 9849.226
## 1314 0.00010153082 9849.226
## 1315 0.00020306164 4924.613
## 1316 0.00020306164 4924.613
## 1317 0.00010153082 9849.226
## 1318 0.00020306164 4924.613
## 1319 0.00020306164 4924.613
## 1320 0.00010153082 9849.226
## 1321 0.00010153082 9849.226
## 1322 0.00020306164 4924.613
## 1323 0.00020306164 4924.613
## 1324 0.00010153082 9849.226
## 1325 0.00006768721 14773.839
## 1326 0.00010153082 9849.226
## 1327 0.00020306164 4924.613
## 1328 0.00006768721 14773.839
## 1329 0.00010153082 9849.226
## 1330 0.00010153082 9849.226
## 1331 0.00010153082 9849.226
## 1332 0.00010153082 9849.226
## 1333 0.00020306164 4924.613
## 1334 0.00006768721 14773.839
## 1335 0.00006768721 14773.839
## 1336 0.00010153082 9849.226
## 1337 0.00020306164 4924.613
## 1338 0.00010153082 9849.226
## 1339 0.00020306164 4924.613
## 1340 0.00020306164 4924.613
## 1341 0.00020306164 4924.613
## 1342 0.00020306164 4924.613
## 1343 0.00020306164 4924.613
## 1344 0.00005076541 19698.452
## 1345 0.00020306164 4924.613
## 1346 0.00006768721 14773.839
## 1347 0.00020306164 4924.613
## 1348 0.00010153082 9849.226
## 1349 0.00020306164 4924.613
## 1350 0.00006768721 14773.839
## 1351 0.00020306164 4924.613
## 1352 0.00010153082 9849.226
## 1353 0.00010153082 9849.226
## 1354 0.00010153082 9849.226
## 1355 0.00010153082 9849.226
## 1356 0.00020306164 4924.613
## 1357 0.00010153082 9849.226
## 1358 0.00010153082 9849.226
## 1359 0.00010153082 9849.226
## 1360 0.00020306164 4924.613
## 1361 0.00020306164 4924.613
## 1362 0.00020306164 4924.613
## 1363 0.00010153082 9849.226
## 1364 0.00010153082 9849.226
## 1365 0.00010153082 9849.226
## 1366 0.00010153082 9849.226
## 1367 0.00010153082 9849.226
## 1368 0.00010153082 9849.226
## 1369 0.00010153082 9849.226
## 1370 0.00005076541 19698.452
## 1371 0.00020306164 4924.613
## 1372 0.00020306164 4924.613
## 1373 0.00020306164 4924.613
## 1374 0.00010153082 9849.226
## 1375 0.00010153082 9849.226
## 1376 0.00010153082 9849.226
## 1377 0.00010153082 9849.226
## 1378 0.00010153082 9849.226
## 1379 0.00006768721 14773.839
## 1380 0.00020306164 4924.613
## 1381 0.00010153082 9849.226
## 1382 0.00020306164 4924.613
## 1383 0.00006768721 14773.839
## 1384 0.00010153082 9849.226
## 1385 0.00020306164 4924.613
## 1386 0.00006768721 14773.839
## 1387 0.00020306164 4924.613
## 1388 0.00010153082 9849.226
## 1389 0.00020306164 4924.613
## 1390 0.00020306164 4924.613
## 1391 0.00010153082 9849.226
## 1392 0.00010153082 9849.226
## 1393 0.00010153082 9849.226
## 1394 0.00005076541 19698.452
## 1395 0.00010153082 9849.226
## 1396 0.00006768721 14773.839
## 1397 0.00010153082 9849.226
## 1398 0.00010153082 9849.226
## 1399 0.00010153082 9849.226
## 1400 0.00010153082 9849.226
## 1401 0.00010153082 9849.226
## 1402 0.00005076541 19698.452
## 1403 0.00010153082 9849.226
## 1404 0.00020306164 4924.613
## 1405 0.00010153082 9849.226
## 1406 0.00020306164 4924.613
## 1407 0.00020306164 4924.613
## 1408 0.00010153082 9849.226
## 1409 0.00020306164 4924.613
## 1410 0.00020306164 4924.613
## 1411 0.00020306164 4924.613
## 1412 0.00020306164 4924.613
## 1413 0.00010153082 9849.226
## 1414 0.00020306164 4924.613
## 1415 0.00020306164 4924.613
## 1416 0.00020306164 4924.613
## 1417 0.00010153082 9849.226
## 1418 0.00020306164 4924.613
## 1419 0.00010153082 9849.226
## 1420 0.00010153082 9849.226
## 1421 0.00020306164 4924.613
## 1422 0.00010153082 9849.226
## 1423 0.00006768721 14773.839
## 1424 0.00010153082 9849.226
## 1425 0.00020306164 4924.613
## 1426 0.00010153082 9849.226
## 1427 0.00020306164 4924.613
## 1428 0.00010153082 9849.226
## 1429 0.00010153082 9849.226
## 1430 0.00010153082 9849.226
## 1431 0.00020306164 4924.613
## 1432 0.00010153082 9849.226
## 1433 0.00010153082 9849.226
## 1434 0.00006768721 14773.839
## 1435 0.00010153082 9849.226
## 1436 0.00020306164 4924.613
## 1437 0.00006768721 14773.839
## 1438 0.00010153082 9849.226
## 1439 0.00020306164 4924.613
## 1440 0.00010153082 9849.226
## 1441 0.00010153082 9849.226
## 1442 0.00020306164 4924.613
## 1443 0.00010153082 9849.226
## 1444 0.00020306164 4924.613
## 1445 0.00010153082 9849.226
## 1446 0.00010153082 9849.226
## 1447 0.00010153082 9849.226
## 1448 0.00005076541 19698.452
## 1449 0.00020306164 4924.613
## 1450 0.00020306164 4924.613
## 1451 0.00020306164 4924.613
## 1452 0.00020306164 4924.613
## 1453 0.00020306164 4924.613
## 1454 0.00005076541 19698.452
## 1455 0.00020306164 4924.613
## 1456 0.00010153082 9849.226
## 1457 0.00020306164 4924.613
## 1458 0.00010153082 9849.226
## 1459 0.00010153082 9849.226
## 1460 0.00010153082 9849.226
## 1461 0.00020306164 4924.613
## 1462 0.00010153082 9849.226
## 1463 0.00010153082 9849.226
## 1464 0.00010153082 9849.226
## 1465 0.00010153082 9849.226
## 1466 0.00010153082 9849.226
## 1467 0.00020306164 4924.613
## 1468 0.00005076541 19698.452
## 1469 0.00010153082 9849.226
## 1470 0.00010153082 9849.226
## 1471 0.00010153082 9849.226
## 1472 0.00010153082 9849.226
## 1473 0.00005076541 19698.452
## 1474 0.00020306164 4924.613
## 1475 0.00010153082 9849.226
## 1476 0.00010153082 9849.226
## 1477 0.00006768721 14773.839
## 1478 0.00006768721 14773.839
## 1479 0.00020306164 4924.613
## 1480 0.00020306164 4924.613
## 1481 0.00006768721 14773.839
## 1482 0.00010153082 9849.226
## 1483 0.00006768721 14773.839
## 1484 0.00006768721 14773.839
## 1485 0.00010153082 9849.226
## 1486 0.00010153082 9849.226
## 1487 0.00020306164 4924.613
## 1488 0.00020306164 4924.613
## 1489 0.00010153082 9849.226
## 1490 0.00010153082 9849.226
## 1491 0.00010153082 9849.226
## 1492 0.00010153082 9849.226
## 1493 0.00010153082 9849.226
## 1494 0.00010153082 9849.226
## 1495 0.00020306164 4924.613
## 1496 0.00020306164 4924.613
## 1497 0.00010153082 9849.226
## 1498 0.00020306164 4924.613
## 1499 0.00010153082 9849.226
## 1500 0.00020306164 4924.613
## 1501 0.00020306164 4924.613
## 1502 0.00020306164 4924.613
## 1503 0.00010153082 9849.226
## 1504 0.00010153082 9849.226
## 1505 0.00020306164 4924.613
## 1506 0.00010153082 9849.226
## 1507 0.00020306164 4924.613
## 1508 0.00020306164 4924.613
## 1509 0.00010153082 9849.226
## 1510 0.00020306164 4924.613
## 1511 0.00010153082 9849.226
## 1512 0.00004061233 24623.065
## 1513 0.00020306164 4924.613
## 1514 0.00005076541 19698.452
## 1515 0.00010153082 9849.226
## 1516 0.00020306164 4924.613
## 1517 0.00020306164 4924.613
## 1518 0.00020306164 4924.613
## 1519 0.00010153082 9849.226
## 1520 0.00006768721 14773.839
## 1521 0.00010153082 9849.226
## 1522 0.00010153082 9849.226
## 1523 0.00010153082 9849.226
## 1524 0.00010153082 9849.226
## 1525 0.00006768721 14773.839
## 1526 0.00010153082 9849.226
## 1527 0.00006768721 14773.839
## 1528 0.00020306164 4924.613
## 1529 0.00010153082 9849.226
## 1530 0.00010153082 9849.226
## 1531 0.00010153082 9849.226
## 1532 0.00010153082 9849.226
## 1533 0.00010153082 9849.226
## 1534 0.00010153082 9849.226
## 1535 0.00010153082 9849.226
## 1536 0.00020306164 4924.613
## 1537 0.00010153082 9849.226
## 1538 0.00006768721 14773.839
## 1539 0.00010153082 9849.226
## 1540 0.00010153082 9849.226
## 1541 0.00010153082 9849.226
## 1542 0.00010153082 9849.226
## 1543 0.00020306164 4924.613
## 1544 0.00010153082 9849.226
## 1545 0.00010153082 9849.226
## 1546 0.00006768721 14773.839
## 1547 0.00020306164 4924.613
## 1548 0.00020306164 4924.613
## 1549 0.00006768721 14773.839
## 1550 0.00010153082 9849.226
## 1551 0.00010153082 9849.226
## 1552 0.00020306164 4924.613
## 1553 0.00010153082 9849.226
## 1554 0.00010153082 9849.226
## 1555 0.00020306164 4924.613
## 1556 0.00010153082 9849.226
## 1557 0.00010153082 9849.226
## 1558 0.00020306164 4924.613
## 1559 0.00010153082 9849.226
## 1560 0.00006768721 14773.839
## 1561 0.00010153082 9849.226
## 1562 0.00020306164 4924.613
## 1563 0.00010153082 9849.226
## 1564 0.00020306164 4924.613
## 1565 0.00006768721 14773.839
## 1566 0.00010153082 9849.226
## 1567 0.00020306164 4924.613
## 1568 0.00010153082 9849.226
## 1569 0.00020306164 4924.613
## 1570 0.00010153082 9849.226
## 1571 0.00010153082 9849.226
## 1572 0.00020306164 4924.613
## 1573 0.00006768721 14773.839
## 1574 0.00020306164 4924.613
## 1575 0.00010153082 9849.226
## 1576 0.00010153082 9849.226
## 1577 0.00020306164 4924.613
## 1578 0.00010153082 9849.226
## 1579 0.00020306164 4924.613
## 1580 0.00005076541 19698.452
## 1581 0.00010153082 9849.226
## 1582 0.00010153082 9849.226
## 1583 0.00004061233 24623.065
## 1584 0.00006768721 14773.839
## 1585 0.00010153082 9849.226
## 1586 0.00010153082 9849.226
## 1587 0.00020306164 4924.613
## 1588 0.00020306164 4924.613
## 1589 0.00005076541 19698.452
## 1590 0.00020306164 4924.613
## 1591 0.00010153082 9849.226
## 1592 0.00010153082 9849.226
## 1593 0.00010153082 9849.226
## 1594 0.00005076541 19698.452
## 1595 0.00020306164 4924.613
## 1596 0.00020306164 4924.613
## 1597 0.00010153082 9849.226
## 1598 0.00020306164 4924.613
## 1599 0.00010153082 9849.226
## 1600 0.00020306164 4924.613
## 1601 0.00020306164 4924.613
## 1602 0.00010153082 9849.226
## 1603 0.00020306164 4924.613
## 1604 0.00010153082 9849.226
## 1605 0.00010153082 9849.226
## 1606 0.00020306164 4924.613
## 1607 0.00010153082 9849.226
## 1608 0.00010153082 9849.226
## 1609 0.00020306164 4924.613
## 1610 0.00010153082 9849.226
## 1611 0.00010153082 9849.226
## 1612 0.00010153082 9849.226
## 1613 0.00010153082 9849.226
## 1614 0.00010153082 9849.226
## 1615 0.00010153082 9849.226
## 1616 0.00020306164 4924.613
## 1617 0.00010153082 9849.226
## 1618 0.00005076541 19698.452
## 1619 0.00020306164 4924.613
## 1620 0.00020306164 4924.613
## 1621 0.00020306164 4924.613
## 1622 0.00020306164 4924.613
## 1623 0.00010153082 9849.226
## 1624 0.00020306164 4924.613
## 1625 0.00010153082 9849.226
## 1626 0.00020306164 4924.613
## 1627 0.00010153082 9849.226
## 1628 0.00020306164 4924.613
## 1629 0.00004061233 24623.065
## 1630 0.00006768721 14773.839
## 1631 0.00010153082 9849.226
## 1632 0.00020306164 4924.613
## 1633 0.00010153082 9849.226
## 1634 0.00010153082 9849.226
## 1635 0.00010153082 9849.226
## 1636 0.00010153082 9849.226
## 1637 0.00020306164 4924.613
## 1638 0.00010153082 9849.226
## 1639 0.00010153082 9849.226
## 1640 0.00020306164 4924.613
## 1641 0.00010153082 9849.226
## 1642 0.00010153082 9849.226
## 1643 0.00010153082 9849.226
## 1644 0.00010153082 9849.226
## 1645 0.00010153082 9849.226
## 1646 0.00010153082 9849.226
## 1647 0.00010153082 9849.226
## 1648 0.00010153082 9849.226
## 1649 0.00010153082 9849.226
## 1650 0.00010153082 9849.226
## 1651 0.00010153082 9849.226
## 1652 0.00005076541 19698.452
## 1653 0.00010153082 9849.226
## 1654 0.00020306164 4924.613
## 1655 0.00010153082 9849.226
## 1656 0.00010153082 9849.226
## 1657 0.00010153082 9849.226
## 1658 0.00020306164 4924.613
## 1659 0.00010153082 9849.226
## 1660 0.00010153082 9849.226
## 1661 0.00010153082 9849.226
## 1662 0.00020306164 4924.613
## 1663 0.00006768721 14773.839
## 1664 0.00020306164 4924.613
## 1665 0.00020306164 4924.613
## 1666 0.00005076541 19698.452
## 1667 0.00010153082 9849.226
## 1668 0.00020306164 4924.613
## 1669 0.00010153082 9849.226
## 1670 0.00010153082 9849.226
## 1671 0.00020306164 4924.613
## 1672 0.00010153082 9849.226
## 1673 0.00010153082 9849.226
## 1674 0.00010153082 9849.226
## 1675 0.00010153082 9849.226
## 1676 0.00010153082 9849.226
## 1677 0.00010153082 9849.226
## 1678 0.00020306164 4924.613
## 1679 0.00020306164 4924.613
## 1680 0.00005076541 19698.452
## 1681 0.00020306164 4924.613
## 1682 0.00020306164 4924.613
## 1683 0.00010153082 9849.226
## 1684 0.00010153082 9849.226
## 1685 0.00006768721 14773.839
## 1686 0.00020306164 4924.613
## 1687 0.00010153082 9849.226
## 1688 0.00020306164 4924.613
## 1689 0.00020306164 4924.613
## 1690 0.00010153082 9849.226
## 1691 0.00020306164 4924.613
## 1692 0.00020306164 4924.613
## 1693 0.00020306164 4924.613
## 1694 0.00006768721 14773.839
## 1695 0.00006768721 14773.839
## 1696 0.00010153082 9849.226
## 1697 0.00010153082 9849.226
## 1698 0.00010153082 9849.226
## 1699 0.00010153082 9849.226
## 1700 0.00010153082 9849.226
## 1701 0.00010153082 9849.226
## 1702 0.00020306164 4924.613
## 1703 0.00010153082 9849.226
## 1704 0.00020306164 4924.613
## 1705 0.00010153082 9849.226
## 1706 0.00020306164 4924.613
## 1707 0.00010153082 9849.226
## 1708 0.00010153082 9849.226
## 1709 0.00006768721 14773.839
## 1710 0.00010153082 9849.226
## 1711 0.00006768721 14773.839
## 1712 0.00010153082 9849.226
## 1713 0.00020306164 4924.613
## 1714 0.00020306164 4924.613
## 1715 0.00010153082 9849.226
## 1716 0.00010153082 9849.226
## 1717 0.00020306164 4924.613
## 1718 0.00010153082 9849.226
## 1719 0.00020306164 4924.613
## 1720 0.00020306164 4924.613
## 1721 0.00005076541 19698.452
## 1722 0.00006768721 14773.839
## 1723 0.00010153082 9849.226
## 1724 0.00020306164 4924.613
## 1725 0.00010153082 9849.226
## 1726 0.00010153082 9849.226
## 1727 0.00020306164 4924.613
## 1728 0.00010153082 9849.226
## 1729 0.00020306164 4924.613
## 1730 0.00010153082 9849.226
## 1731 0.00010153082 9849.226
## 1732 0.00010153082 9849.226
## 1733 0.00020306164 4924.613
## 1734 0.00010153082 9849.226
## 1735 0.00010153082 9849.226
## 1736 0.00006768721 14773.839
## 1737 0.00010153082 9849.226
## 1738 0.00010153082 9849.226
## 1739 0.00020306164 4924.613
## 1740 0.00010153082 9849.226
## 1741 0.00020306164 4924.613
## 1742 0.00010153082 9849.226
## 1743 0.00010153082 9849.226
## 1744 0.00006768721 14773.839
## 1745 0.00006768721 14773.839
## 1746 0.00010153082 9849.226
## 1747 0.00006768721 14773.839
## 1748 0.00010153082 9849.226
## 1749 0.00010153082 9849.226
## 1750 0.00010153082 9849.226
## 1751 0.00020306164 4924.613
## 1752 0.00010153082 9849.226
## 1753 0.00010153082 9849.226
## 1754 0.00010153082 9849.226
## 1755 0.00006768721 14773.839
## 1756 0.00020306164 4924.613
## 1757 0.00010153082 9849.226
## 1758 0.00020306164 4924.613
## 1759 0.00010153082 9849.226
## 1760 0.00010153082 9849.226
## 1761 0.00020306164 4924.613
## 1762 0.00010153082 9849.226
## 1763 0.00020306164 4924.613
## 1764 0.00010153082 9849.226
## 1765 0.00020306164 4924.613
## 1766 0.00006768721 14773.839
## 1767 0.00010153082 9849.226
## 1768 0.00010153082 9849.226
## 1769 0.00010153082 9849.226
## 1770 0.00010153082 9849.226
## 1771 0.00006768721 14773.839
## 1772 0.00010153082 9849.226
## 1773 0.00006768721 14773.839
## 1774 0.00006768721 14773.839
## 1775 0.00006768721 14773.839
## 1776 0.00020306164 4924.613
## 1777 0.00020306164 4924.613
## 1778 0.00020306164 4924.613
## 1779 0.00006768721 14773.839
## 1780 0.00010153082 9849.226
## 1781 0.00010153082 9849.226
## 1782 0.00020306164 4924.613
## 1783 0.00020306164 4924.613
## 1784 0.00010153082 9849.226
## 1785 0.00010153082 9849.226
## 1786 0.00010153082 9849.226
## 1787 0.00020306164 4924.613
## 1788 0.00010153082 9849.226
## 1789 0.00010153082 9849.226
## 1790 0.00010153082 9849.226
## 1791 0.00010153082 9849.226
## 1792 0.00005076541 19698.452
## 1793 0.00005076541 19698.452
## 1794 0.00010153082 9849.226
## 1795 0.00020306164 4924.613
## 1796 0.00020306164 4924.613
## 1797 0.00010153082 9849.226
## 1798 0.00010153082 9849.226
## 1799 0.00010153082 9849.226
## 1800 0.00010153082 9849.226
## 1801 0.00020306164 4924.613
## 1802 0.00010153082 9849.226
## 1803 0.00010153082 9849.226
## 1804 0.00010153082 9849.226
## 1805 0.00020306164 4924.613
## 1806 0.00010153082 9849.226
## 1807 0.00020306164 4924.613
## 1808 0.00020306164 4924.613
## 1809 0.00010153082 9849.226
## 1810 0.00010153082 9849.226
## 1811 0.00010153082 9849.226
## 1812 0.00020306164 4924.613
## 1813 0.00010153082 9849.226
## 1814 0.00020306164 4924.613
## 1815 0.00010153082 9849.226
## 1816 0.00010153082 9849.226
## 1817 0.00010153082 9849.226
## 1818 0.00010153082 9849.226
## 1819 0.00010153082 9849.226
## 1820 0.00020306164 4924.613
## 1821 0.00020306164 4924.613
## 1822 0.00010153082 9849.226
## 1823 0.00010153082 9849.226
## 1824 0.00010153082 9849.226
## 1825 0.00006768721 14773.839
## 1826 0.00010153082 9849.226
## 1827 0.00010153082 9849.226
## 1828 0.00010153082 9849.226
## 1829 0.00006768721 14773.839
## 1830 0.00010153082 9849.226
## 1831 0.00010153082 9849.226
## 1832 0.00020306164 4924.613
## 1833 0.00010153082 9849.226
## 1834 0.00006768721 14773.839
## 1835 0.00010153082 9849.226
## 1836 0.00010153082 9849.226
## 1837 0.00020306164 4924.613
## 1838 0.00020306164 4924.613
## 1839 0.00006768721 14773.839
## 1840 0.00010153082 9849.226
## 1841 0.00010153082 9849.226
## 1842 0.00010153082 9849.226
## 1843 0.00020306164 4924.613
## 1844 0.00010153082 9849.226
## 1845 0.00020306164 4924.613
## 1846 0.00020306164 4924.613
## 1847 0.00020306164 4924.613
## 1848 0.00020306164 4924.613
## 1849 0.00020306164 4924.613
## 1850 0.00020306164 4924.613
## 1851 0.00020306164 4924.613
## 1852 0.00020306164 4924.613
## 1853 0.00005076541 19698.452
## 1854 0.00010153082 9849.226
## 1855 0.00010153082 9849.226
## 1856 0.00010153082 9849.226
## 1857 0.00010153082 9849.226
## 1858 0.00020306164 4924.613
## 1859 0.00010153082 9849.226
## 1860 0.00020306164 4924.613
## 1861 0.00020306164 4924.613
## 1862 0.00020306164 4924.613
## 1863 0.00020306164 4924.613
## 1864 0.00010153082 9849.226
## 1865 0.00006768721 14773.839
## 1866 0.00010153082 9849.226
## 1867 0.00010153082 9849.226
## 1868 0.00010153082 9849.226
## 1869 0.00020306164 4924.613
## 1870 0.00010153082 9849.226
## 1871 0.00010153082 9849.226
## 1872 0.00006768721 14773.839
## 1873 0.00010153082 9849.226
## 1874 0.00010153082 9849.226
## 1875 0.00020306164 4924.613
## 1876 0.00020306164 4924.613
## 1877 0.00010153082 9849.226
## 1878 0.00010153082 9849.226
## 1879 0.00010153082 9849.226
## 1880 0.00010153082 9849.226
## 1881 0.00006768721 14773.839
## 1882 0.00020306164 4924.613
## 1883 0.00020306164 4924.613
## 1884 0.00010153082 9849.226
## 1885 0.00020306164 4924.613
## 1886 0.00006768721 14773.839
## 1887 0.00006768721 14773.839
## 1888 0.00010153082 9849.226
## 1889 0.00010153082 9849.226
## 1890 0.00005076541 19698.452
## 1891 0.00010153082 9849.226
## 1892 0.00010153082 9849.226
## 1893 0.00010153082 9849.226
## 1894 0.00010153082 9849.226
## 1895 0.00010153082 9849.226
## 1896 0.00004061233 24623.065
## 1897 0.00010153082 9849.226
## 1898 0.00020306164 4924.613
## 1899 0.00020306164 4924.613
## 1900 0.00010153082 9849.226
## 1901 0.00020306164 4924.613
## 1902 0.00010153082 9849.226
## 1903 0.00004061233 24623.065
## 1904 0.00010153082 9849.226
## 1905 0.00010153082 9849.226
## 1906 0.00010153082 9849.226
## 1907 0.00020306164 4924.613
## 1908 0.00020306164 4924.613
## 1909 0.00005076541 19698.452
## 1910 0.00010153082 9849.226
## 1911 0.00006768721 14773.839
## 1912 0.00020306164 4924.613
## 1913 0.00010153082 9849.226
## 1914 0.00020306164 4924.613
## 1915 0.00020306164 4924.613
## 1916 0.00010153082 9849.226
## 1917 0.00010153082 9849.226
## 1918 0.00010153082 9849.226
## 1919 0.00010153082 9849.226
## 1920 0.00010153082 9849.226
## 1921 0.00010153082 9849.226
## 1922 0.00020306164 4924.613
## 1923 0.00010153082 9849.226
## 1924 0.00010153082 9849.226
## 1925 0.00010153082 9849.226
## 1926 0.00020306164 4924.613
## 1927 0.00005076541 19698.452
## 1928 0.00010153082 9849.226
## 1929 0.00010153082 9849.226
## 1930 0.00010153082 9849.226
## 1931 0.00020306164 4924.613
## 1932 0.00010153082 9849.226
## 1933 0.00010153082 9849.226
## 1934 0.00010153082 9849.226
## 1935 0.00020306164 4924.613
## 1936 0.00010153082 9849.226
## 1937 0.00006768721 14773.839
## 1938 0.00020306164 4924.613
## 1939 0.00020306164 4924.613
## 1940 0.00020306164 4924.613
## 1941 0.00010153082 9849.226
## 1942 0.00010153082 9849.226
## 1943 0.00010153082 9849.226
## 1944 0.00005076541 19698.452
## 1945 0.00006768721 14773.839
## 1946 0.00010153082 9849.226
## 1947 0.00010153082 9849.226
## 1948 0.00010153082 9849.226
## 1949 0.00010153082 9849.226
## 1950 0.00010153082 9849.226
## 1951 0.00010153082 9849.226
## 1952 0.00020306164 4924.613
## 1953 NA NA
## 1954 0.00020306164 4924.613
## 1955 0.00020306164 4924.613
## 1956 0.00010153082 9849.226
## 1957 0.00020306164 4924.613
## 1958 0.00020306164 4924.613
## 1959 0.00006768721 14773.839
## 1960 0.00010153082 9849.226
## 1961 0.00010153082 9849.226
## 1962 0.00020306164 4924.613
## 1963 0.00020306164 4924.613
## 1964 0.00020306164 4924.613
## 1965 0.00004061233 24623.065
## 1966 0.00020306164 4924.613
## 1967 0.00020306164 4924.613
## 1968 0.00010153082 9849.226
## 1969 0.00020306164 4924.613
## 1970 0.00010153082 9849.226
## 1971 0.00010153082 9849.226
## 1972 0.00020306164 4924.613
## 1973 0.00010153082 9849.226
## 1974 0.00010153082 9849.226
## 1975 0.00010153082 9849.226
## 1976 0.00020306164 4924.613
## 1977 0.00020306164 4924.613
## 1978 0.00020306164 4924.613
## 1979 0.00010153082 9849.226
## 1980 0.00010153082 9849.226
## 1981 0.00020306164 4924.613
## 1982 0.00006768721 14773.839
## 1983 0.00020306164 4924.613
## 1984 0.00020306164 4924.613
## 1985 0.00010153082 9849.226
## 1986 0.00010153082 9849.226
## 1987 0.00006768721 14773.839
## 1988 0.00010153082 9849.226
## 1989 0.00010153082 9849.226
## 1990 0.00010153082 9849.226
## 1991 0.00020306164 4924.613
## 1992 0.00010153082 9849.226
## 1993 0.00005076541 19698.452
## 1994 0.00010153082 9849.226
## 1995 0.00006768721 14773.839
## 1996 0.00010153082 9849.226
## 1997 0.00010153082 9849.226
## 1998 0.00020306164 4924.613
## 1999 0.00020306164 4924.613
## 2000 0.00020306164 4924.613
## 2001 0.00010153082 9849.226
## 2002 0.00006768721 14773.839
## 2003 0.00010153082 9849.226
## 2004 0.00020306164 4924.613
## 2005 0.00006768721 14773.839
## 2006 0.00010153082 9849.226
## 2007 0.00010153082 9849.226
## 2008 0.00010153082 9849.226
## 2009 0.00020306164 4924.613
## 2010 0.00020306164 4924.613
## 2011 0.00020306164 4924.613
## 2012 0.00010153082 9849.226
## 2013 0.00006768721 14773.839
## 2014 0.00020306164 4924.613
## 2015 0.00010153082 9849.226
## 2016 0.00010153082 9849.226
## 2017 0.00010153082 9849.226
## 2018 0.00010153082 9849.226
## 2019 0.00020306164 4924.613
## 2020 0.00010153082 9849.226
## 2021 0.00020306164 4924.613
## 2022 0.00010153082 9849.226
## 2023 0.00010153082 9849.226
## 2024 0.00020306164 4924.613
## 2025 0.00010153082 9849.226
## 2026 0.00010153082 9849.226
## 2027 0.00010153082 9849.226
## 2028 0.00020306164 4924.613
## 2029 0.00006768721 14773.839
## 2030 0.00005076541 19698.452
## 2031 0.00010153082 9849.226
## 2032 0.00010153082 9849.226
## 2033 0.00020306164 4924.613
## 2034 0.00010153082 9849.226
## 2035 0.00005076541 19698.452
## 2036 0.00020306164 4924.613
## 2037 0.00010153082 9849.226
## 2038 0.00010153082 9849.226
## 2039 0.00020306164 4924.613
## 2040 0.00020306164 4924.613
## 2041 0.00010153082 9849.226
## 2042 0.00010153082 9849.226
## 2043 0.00010153082 9849.226
## 2044 0.00010153082 9849.226
## 2045 0.00020306164 4924.613
## 2046 0.00020306164 4924.613
## 2047 0.00020306164 4924.613
## 2048 0.00010153082 9849.226
## 2049 0.00020306164 4924.613
## 2050 0.00006768721 14773.839
## 2051 0.00020306164 4924.613
## 2052 0.00020306164 4924.613
## 2053 0.00006768721 14773.839
## 2054 0.00002538271 39396.904
## 2055 0.00010153082 9849.226
## 2056 0.00006768721 14773.839
## 2057 0.00020306164 4924.613
## 2058 0.00020306164 4924.613
## 2059 0.00001692180 59095.356
## 2060 0.00010153082 9849.226
## 2061 0.00010153082 9849.226
## 2062 0.00010153082 9849.226
## 2063 0.00010153082 9849.226
## 2064 0.00020306164 4924.613
## 2065 0.00010153082 9849.226
## 2066 0.00020306164 4924.613
## 2067 0.00010153082 9849.226
## 2068 0.00010153082 9849.226
## 2069 0.00020306164 4924.613
## 2070 0.00010153082 9849.226
## 2071 0.00006768721 14773.839
## 2072 0.00010153082 9849.226
## 2073 0.00010153082 9849.226
## 2074 0.00010153082 9849.226
## 2075 0.00010153082 9849.226
## 2076 0.00020306164 4924.613
## 2077 0.00010153082 9849.226
## 2078 0.00020306164 4924.613
## 2079 0.00010153082 9849.226
## 2080 0.00020306164 4924.613
## 2081 0.00005076541 19698.452
## 2082 0.00010153082 9849.226
## 2083 0.00020306164 4924.613
## 2084 0.00010153082 9849.226
## 2085 0.00010153082 9849.226
## 2086 0.00006768721 14773.839
## 2087 0.00010153082 9849.226
## 2088 0.00010153082 9849.226
## 2089 0.00010153082 9849.226
## 2090 0.00010153082 9849.226
## 2091 0.00010153082 9849.226
## 2092 0.00006768721 14773.839
## 2093 0.00010153082 9849.226
## 2094 0.00020306164 4924.613
## 2095 0.00020306164 4924.613
## 2096 0.00010153082 9849.226
## 2097 0.00005076541 19698.452
## 2098 0.00020306164 4924.613
## 2099 0.00010153082 9849.226
## 2100 0.00010153082 9849.226
## 2101 0.00020306164 4924.613
## 2102 0.00010153082 9849.226
## 2103 0.00010153082 9849.226
## 2104 0.00006768721 14773.839
## 2105 0.00006768721 14773.839
## 2106 0.00020306164 4924.613
## 2107 0.00010153082 9849.226
## 2108 0.00020306164 4924.613
## 2109 0.00006768721 14773.839
## 2110 0.00006768721 14773.839
## 2111 0.00010153082 9849.226
## 2112 0.00020306164 4924.613
## 2113 0.00020306164 4924.613
## 2114 0.00010153082 9849.226
## 2115 0.00010153082 9849.226
## 2116 0.00006768721 14773.839
## 2117 0.00010153082 9849.226
## 2118 0.00010153082 9849.226
## 2119 0.00010153082 9849.226
## 2120 0.00010153082 9849.226
## 2121 0.00010153082 9849.226
## 2122 0.00020306164 4924.613
## 2123 0.00006768721 14773.839
## 2124 0.00010153082 9849.226
## 2125 0.00006768721 14773.839
## 2126 0.00010153082 9849.226
## 2127 0.00020306164 4924.613
## 2128 0.00020306164 4924.613
## 2129 0.00020306164 4924.613
## 2130 0.00010153082 9849.226
## 2131 0.00010153082 9849.226
## 2132 0.00006768721 14773.839
## 2133 0.00020306164 4924.613
## 2134 0.00010153082 9849.226
## 2135 0.00010153082 9849.226
## 2136 0.00020306164 4924.613
## 2137 0.00010153082 9849.226
## 2138 0.00010153082 9849.226
## 2139 0.00010153082 9849.226
## 2140 0.00010153082 9849.226
## 2141 0.00010153082 9849.226
## 2142 0.00010153082 9849.226
## 2143 0.00010153082 9849.226
## 2144 0.00020306164 4924.613
## 2145 0.00020306164 4924.613
## 2146 0.00020306164 4924.613
## 2147 0.00010153082 9849.226
## 2148 0.00006768721 14773.839
## 2149 0.00010153082 9849.226
## 2150 0.00020306164 4924.613
## 2151 0.00005076541 19698.452
## 2152 0.00006768721 14773.839
## 2153 0.00020306164 4924.613
## 2154 0.00010153082 9849.226
## 2155 0.00020306164 4924.613
## 2156 0.00005076541 19698.452
## 2157 0.00010153082 9849.226
## 2158 0.00010153082 9849.226
## 2159 0.00010153082 9849.226
## 2160 0.00010153082 9849.226
## 2161 0.00005076541 19698.452
## 2162 0.00020306164 4924.613
## 2163 0.00020306164 4924.613
## 2164 0.00010153082 9849.226
## 2165 0.00010153082 9849.226
## 2166 0.00020306164 4924.613
## 2167 0.00006768721 14773.839
## 2168 0.00020306164 4924.613
## 2169 0.00010153082 9849.226
## 2170 0.00005076541 19698.452
## 2171 0.00020306164 4924.613
## 2172 0.00010153082 9849.226
## 2173 0.00010153082 9849.226
## 2174 0.00006768721 14773.839
## 2175 0.00010153082 9849.226
## 2176 0.00010153082 9849.226
## 2177 0.00010153082 9849.226
## 2178 0.00010153082 9849.226
## 2179 0.00010153082 9849.226
## 2180 0.00020306164 4924.613
## 2181 0.00010153082 9849.226
## 2182 0.00010153082 9849.226
## 2183 0.00006768721 14773.839
## 2184 0.00010153082 9849.226
## 2185 0.00010153082 9849.226
## 2186 0.00010153082 9849.226
## 2187 0.00010153082 9849.226
## 2188 0.00004061233 24623.065
## 2189 0.00010153082 9849.226
## 2190 0.00010153082 9849.226
## 2191 0.00020306164 4924.613
## 2192 0.00010153082 9849.226
## 2193 0.00010153082 9849.226
## 2194 0.00006768721 14773.839
## 2195 0.00020306164 4924.613
## 2196 0.00020306164 4924.613
## 2197 0.00005076541 19698.452
## 2198 0.00020306164 4924.613
## 2199 0.00020306164 4924.613
## 2200 0.00004061233 24623.065
## 2201 0.00010153082 9849.226
## 2202 0.00010153082 9849.226
## 2203 0.00010153082 9849.226
## 2204 0.00020306164 4924.613
## 2205 0.00020306164 4924.613
## 2206 0.00010153082 9849.226
## 2207 0.00010153082 9849.226
## 2208 0.00010153082 9849.226
## 2209 0.00020306164 4924.613
## 2210 0.00010153082 9849.226
## 2211 0.00020306164 4924.613
## 2212 0.00020306164 4924.613
## 2213 0.00020306164 4924.613
## 2214 0.00001846015 54170.743
## 2215 0.00020306164 4924.613
## 2216 0.00020306164 4924.613
## 2217 0.00010153082 9849.226
## 2218 0.00010153082 9849.226
## 2219 0.00020306164 4924.613
## 2220 0.00020306164 4924.613
## 2221 0.00020306164 4924.613
## 2222 0.00020306164 4924.613
## 2223 0.00020306164 4924.613
## 2224 0.00020306164 4924.613
## 2225 0.00020306164 4924.613
## 2226 0.00010153082 9849.226
## 2227 0.00010153082 9849.226
## 2228 0.00020306164 4924.613
## 2229 0.00010153082 9849.226
## 2230 0.00005076541 19698.452
## 2231 0.00004061233 24623.065
## 2232 0.00010153082 9849.226
## 2233 0.00010153082 9849.226
## 2234 0.00010153082 9849.226
## 2235 0.00020306164 4924.613
## 2236 0.00020306164 4924.613
## 2237 0.00020306164 4924.613
## 2238 0.00020306164 4924.613
## 2239 0.00010153082 9849.226
## 2240 0.00010153082 9849.226
## 2241 0.00010153082 9849.226
## 2242 0.00020306164 4924.613
## 2243 0.00010153082 9849.226
## 2244 0.00020306164 4924.613
## 2245 0.00001269135 78793.809
## 2246 0.00005076541 19698.452
## 2247 0.00010153082 9849.226
## 2248 0.00020306164 4924.613
## 2249 0.00010153082 9849.226
## 2250 0.00010153082 9849.226
## 2251 0.00005076541 19698.452
## 2252 0.00010153082 9849.226
## 2253 0.00010153082 9849.226
## 2254 0.00020306164 4924.613
## 2255 0.00010153082 9849.226
## 2256 0.00020306164 4924.613
## 2257 0.00010153082 9849.226
## 2258 0.00010153082 9849.226
## 2259 0.00010153082 9849.226
## 2260 0.00020306164 4924.613
## 2261 0.00020306164 4924.613
## 2262 0.00010153082 9849.226
## 2263 0.00010153082 9849.226
## 2264 0.00010153082 9849.226
## 2265 0.00020306164 4924.613
## 2266 NA NA
## 2267 NA NA
## 2268 NA NA
## 2269 NA NA
## 2270 NA NA
## 2271 NA NA
## 2272 NA NA
## 2273 NA NA
## 2274 NA NA
## 2275 NA NA
## 2276 NA NA
## 2277 NA NA
## 2278 NA NA
## 2279 NA NA
## 2280 NA NA
## 2281 NA NA
## 2282 NA NA
## 2283 NA NA
## 2284 NA NA
## 2285 NA NA
## 2286 NA NA
## 2287 NA NA
## 2288 NA NA
## 2289 NA NA
## 2290 NA NA
## 2291 NA NA
## 2292 NA NA
## 2293 NA NA
## 2294 NA NA
## 2295 NA NA
## 2296 NA NA
## 2297 NA NA
## 2298 NA NA
## 2299 NA NA
## 2300 NA NA
## 2301 NA NA
## 2302 NA NA
## 2303 NA NA
## 2304 NA NA
## 2305 NA NA
## 2306 NA NA
## 2307 NA NA
## 2308 NA NA
## 2309 NA NA
## 2310 NA NA
## 2311 NA NA
## 2312 NA NA
## 2313 NA NA
## 2314 NA NA
## 2315 NA NA
## 2316 NA NA
## 2317 NA NA
## 2318 NA NA
## 2319 NA NA
## 2320 NA NA
## 2321 NA NA
## 2322 NA NA
## 2323 NA NA
## 2324 NA NA
## 2325 NA NA
## 2326 NA NA
## 2327 NA NA
## 2328 NA NA
## 2329 NA NA
## 2330 NA NA
## 2331 NA NA
## 2332 NA NA
## 2333 NA NA
## 2334 NA NA
## 2335 NA NA
## 2336 NA NA
## 2337 NA NA
## 2338 NA NA
## 2339 NA NA
## 2340 NA NA
## 2341 NA NA
## 2342 NA NA
## 2343 NA NA
## 2344 NA NA
## 2345 NA NA
## 2346 NA NA
## 2347 NA NA
## 2348 NA NA
## 2349 NA NA
## 2350 NA NA
## 2351 NA NA
## 2352 NA NA
## 2353 NA NA
## 2354 NA NA
## 2355 NA NA
## 2356 NA NA
## 2357 NA NA
## 2358 NA NA
## 2359 NA NA
## 2360 NA NA
## 2361 NA NA
## 2362 NA NA
## 2363 NA NA
## 2364 NA NA
## 2365 NA NA
## 2366 NA NA
## 2367 NA NA
## 2368 NA NA
## 2369 NA NA
## 2370 NA NA
## 2371 NA NA
## 2372 NA NA
## 2373 NA NA
## 2374 NA NA
## 2375 NA NA
## 2376 NA NA
## 2377 NA NA
## 2378 NA NA
## 2379 NA NA
## 2380 NA NA
## 2381 NA NA
## 2382 NA NA
## 2383 NA NA
## 2384 NA NA
## 2385 NA NA
## 2386 NA NA
## 2387 NA NA
## 2388 NA NA
## 2389 NA NA
## 2390 NA NA
## 2391 NA NA
## 2392 NA NA
## 2393 NA NA
## 2394 NA NA
## 2395 NA NA
## 2396 NA NA
## 2397 NA NA
## 2398 NA NA
## 2399 NA NA
## 2400 NA NA
## 2401 NA NA
## 2402 NA NA
## 2403 NA NA
## 2404 NA NA
## 2405 NA NA
## 2406 NA NA
## 2407 NA NA
## 2408 NA NA
## 2409 NA NA
## 2410 NA NA
## 2411 NA NA
## 2412 NA NA
## 2413 NA NA
## 2414 NA NA
## 2415 NA NA
## 2416 NA NA
## 2417 NA NA
## 2418 NA NA
## 2419 NA NA
## 2420 NA NA
## 2421 NA NA
## 2422 NA NA
## 2423 NA NA
## 2424 NA NA
## 2425 NA NA
## 2426 NA NA
## 2427 NA NA
## 2428 NA NA
## 2429 NA NA
## 2430 NA NA
## 2431 NA NA
## 2432 NA NA
## 2433 NA NA
## 2434 NA NA
## 2435 NA NA
## 2436 NA NA
## 2437 NA NA
## 2438 NA NA
## 2439 NA NA
## 2440 NA NA
## 2441 NA NA
## 2442 NA NA
## 2443 NA NA
## 2444 NA NA
## 2445 NA NA
## 2446 NA NA
## 2447 NA NA
## 2448 NA NA
## 2449 NA NA
## 2450 NA NA
## 2451 NA NA
## 2452 NA NA
## 2453 NA NA
## 2454 NA NA
## 2455 NA NA
## 2456 NA NA
## 2457 NA NA
## 2458 NA NA
## 2459 NA NA
## 2460 NA NA
## 2461 NA NA
## 2462 NA NA
## 2463 NA NA
## 2464 NA NA
## 2465 NA NA
## 2466 NA NA
## 2467 NA NA
## 2468 NA NA
## 2469 NA NA
## 2470 NA NA
## 2471 NA NA
## 2472 NA NA
## 2473 NA NA
## 2474 NA NA
## 2475 NA NA
## 2476 NA NA
## 2477 NA NA
## 2478 NA NA
## 2479 NA NA
## 2480 NA NA
## 2481 NA NA
## 2482 NA NA
## 2483 NA NA
## 2484 NA NA
## 2485 NA NA
## 2486 NA NA
## 2487 NA NA
## 2488 NA NA
## 2489 NA NA
## 2490 NA NA
## 2491 NA NA
## 2492 NA NA
## 2493 NA NA
## 2494 NA NA
## 2495 NA NA
## 2496 NA NA
## 2497 NA NA
## 2498 NA NA
## 2499 NA NA
## 2500 NA NA
## 2501 NA NA
## 2502 NA NA
## 2503 NA NA
## 2504 NA NA
## 2505 NA NA
## 2506 NA NA
## 2507 NA NA
## 2508 NA NA
## 2509 NA NA
## 2510 NA NA
## 2511 NA NA
## 2512 NA NA
## 2513 NA NA
## 2514 NA NA
## 2515 NA NA
## 2516 NA NA
## 2517 NA NA
## 2518 NA NA
## 2519 NA NA
## 2520 NA NA
## 2521 NA NA
## 2522 NA NA
## 2523 NA NA
## 2524 NA NA
## 2525 NA NA
## 2526 NA NA
## 2527 NA NA
## 2528 NA NA
## 2529 NA NA
## 2530 NA NA
## 2531 NA NA
## 2532 NA NA
## 2533 NA NA
## 2534 NA NA
## 2535 NA NA
## 2536 NA NA
## 2537 NA NA
## 2538 NA NA
## 2539 NA NA
## 2540 NA NA
## 2541 NA NA
## 2542 NA NA
## 2543 NA NA
## 2544 NA NA
## 2545 NA NA
## 2546 NA NA
## 2547 NA NA
## 2548 NA NA
## 2549 NA NA
## 2550 NA NA
## 2551 NA NA
## 2552 NA NA
## 2553 NA NA
## 2554 NA NA
## 2555 NA NA
## 2556 NA NA
## 2557 NA NA
## 2558 NA NA
## 2559 NA NA
## 2560 NA NA
## 2561 NA NA
## 2562 NA NA
## 2563 NA NA
## 2564 NA NA
## 2565 NA NA
## 2566 NA NA
## 2567 NA NA
## 2568 NA NA
## 2569 NA NA
## 2570 NA NA
## 2571 NA NA
## 2572 NA NA
## 2573 NA NA
## 2574 NA NA
## 2575 NA NA
## 2576 NA NA
## 2577 NA NA
## 2578 NA NA
## 2579 NA NA
## 2580 NA NA
## 2581 NA NA
## 2582 NA NA
## 2583 NA NA
## 2584 NA NA
## 2585 NA NA
## 2586 NA NA
## 2587 NA NA
## 2588 NA NA
## 2589 NA NA
## 2590 NA NA
## 2591 NA NA
## 2592 NA NA
## 2593 NA NA
## 2594 NA NA
## 2595 NA NA
## 2596 NA NA
## 2597 NA NA
## 2598 NA NA
## 2599 NA NA
## 2600 NA NA
## 2601 NA NA
## 2602 NA NA
## 2603 NA NA
## 2604 NA NA
## 2605 NA NA
## 2606 NA NA
## 2607 NA NA
## 2608 NA NA
## 2609 NA NA
## 2610 NA NA
## 2611 NA NA
## 2612 NA NA
## 2613 NA NA
## 2614 NA NA
## 2615 NA NA
## 2616 NA NA
## 2617 NA NA
## 2618 NA NA
## 2619 NA NA
## 2620 NA NA
## 2621 NA NA
## 2622 NA NA
## 2623 NA NA
## 2624 NA NA
## 2625 NA NA
## 2626 NA NA
## 2627 NA NA
## 2628 NA NA
## 2629 NA NA
## 2630 NA NA
## 2631 NA NA
## 2632 NA NA
## 2633 NA NA
## 2634 NA NA
## 2635 NA NA
## 2636 NA NA
## 2637 NA NA
## 2638 NA NA
## 2639 NA NA
## 2640 NA NA
## 2641 NA NA
## 2642 NA NA
## 2643 NA NA
## 2644 NA NA
## 2645 NA NA
## 2646 NA NA
## 2647 NA NA
## 2648 NA NA
## 2649 NA NA
## 2650 NA NA
## 2651 NA NA
## 2652 NA NA
## 2653 NA NA
## 2654 NA NA
## 2655 NA NA
## 2656 NA NA
## 2657 NA NA
## 2658 NA NA
## 2659 NA NA
## 2660 NA NA
## 2661 NA NA
## 2662 NA NA
## 2663 NA NA
## 2664 NA NA
## 2665 NA NA
## 2666 NA NA
## 2667 NA NA
## 2668 NA NA
## 2669 NA NA
## 2670 NA NA
## 2671 NA NA
## 2672 NA NA
## 2673 NA NA
## 2674 NA NA
## 2675 NA NA
## 2676 NA NA
## 2677 NA NA
## 2678 NA NA
## 2679 NA NA
## 2680 NA NA
## 2681 NA NA
## 2682 NA NA
## 2683 NA NA
## 2684 NA NA
## 2685 NA NA
## 2686 NA NA
## 2687 NA NA
## 2688 NA NA
## 2689 NA NA
## 2690 NA NA
## 2691 NA NA
## 2692 NA NA
## 2693 NA NA
## 2694 NA NA
## 2695 NA NA
## 2696 NA NA
## 2697 NA NA
## 2698 NA NA
## 2699 NA NA
## 2700 NA NA
## 2701 NA NA
## 2702 NA NA
## 2703 NA NA
## 2704 NA NA
## 2705 NA NA
## 2706 NA NA
## 2707 NA NA
## 2708 NA NA
## 2709 NA NA
## 2710 NA NA
## 2711 NA NA
## 2712 NA NA
## 2713 NA NA
## 2714 NA NA
## 2715 NA NA
## 2716 NA NA
## 2717 NA NA
## 2718 NA NA
## 2719 NA NA
## 2720 NA NA
## 2721 NA NA
## 2722 NA NA
## 2723 NA NA
## 2724 NA NA
## 2725 NA NA
## 2726 NA NA
## 2727 NA NA
## 2728 NA NA
## 2729 NA NA
## 2730 NA NA
## 2731 NA NA
## 2732 NA NA
## 2733 NA NA
## 2734 NA NA
## 2735 NA NA
## 2736 NA NA
## 2737 NA NA
## 2738 NA NA
## 2739 NA NA
## 2740 NA NA
## 2741 NA NA
## 2742 NA NA
## 2743 NA NA
## 2744 NA NA
## 2745 NA NA
## 2746 NA NA
## 2747 NA NA
## 2748 NA NA
## 2749 NA NA
## 2750 NA NA
## 2751 NA NA
## 2752 NA NA
## 2753 NA NA
## 2754 NA NA
## 2755 NA NA
## 2756 NA NA
## 2757 NA NA
## 2758 NA NA
## 2759 NA NA
## 2760 NA NA
## 2761 NA NA
## 2762 NA NA
## 2763 NA NA
## 2764 NA NA
## 2765 NA NA
## 2766 NA NA
## 2767 NA NA
## 2768 NA NA
## 2769 NA NA
## 2770 NA NA
## 2771 NA NA
## 2772 NA NA
## 2773 NA NA
## 2774 NA NA
## 2775 NA NA
## 2776 NA NA
## 2777 NA NA
## 2778 NA NA
## 2779 NA NA
## 2780 NA NA
## 2781 NA NA
## 2782 NA NA
## 2783 NA NA
## 2784 NA NA
## 2785 NA NA
## 2786 NA NA
## 2787 NA NA
## 2788 NA NA
## 2789 NA NA
## 2790 NA NA
## 2791 NA NA
## 2792 NA NA
## 2793 NA NA
## 2794 NA NA
## 2795 NA NA
## 2796 NA NA
## 2797 NA NA
## 2798 NA NA
## 2799 NA NA
## 2800 NA NA
## 2801 NA NA
## 2802 NA NA
## 2803 NA NA
## 2804 NA NA
## 2805 NA NA
## 2806 NA NA
## 2807 NA NA
## 2808 NA NA
## 2809 NA NA
## 2810 NA NA
## 2811 NA NA
## 2812 NA NA
## 2813 NA NA
## 2814 NA NA
## 2815 NA NA
## 2816 NA NA
## 2817 NA NA
## 2818 NA NA
## 2819 NA NA
## 2820 NA NA
## 2821 NA NA
## 2822 NA NA
## 2823 NA NA
## 2824 NA NA
## 2825 NA NA
## 2826 NA NA
## 2827 NA NA
## 2828 NA NA
## 2829 NA NA
## 2830 NA NA
## 2831 NA NA
## 2832 NA NA
## 2833 NA NA
## 2834 NA NA
## 2835 NA NA
## 2836 NA NA
## 2837 NA NA
## 2838 NA NA
## 2839 NA NA
## 2840 NA NA
## 2841 NA NA
## 2842 NA NA
## 2843 NA NA
## 2844 NA NA
## 2845 NA NA
## 2846 NA NA
## 2847 NA NA
## 2848 NA NA
## 2849 NA NA
## 2850 NA NA
## 2851 NA NA
## 2852 NA NA
## 2853 NA NA
## 2854 NA NA
## 2855 NA NA
## 2856 NA NA
## 2857 NA NA
## 2858 NA NA
## 2859 NA NA
## 2860 NA NA
## 2861 NA NA
## 2862 NA NA
## 2863 NA NA
## 2864 NA NA
## 2865 NA NA
## 2866 NA NA
## 2867 NA NA
## 2868 NA NA
## 2869 NA NA
## 2870 NA NA
## 2871 NA NA
## 2872 NA NA
## 2873 NA NA
## 2874 NA NA
## 2875 NA NA
## 2876 NA NA
## 2877 NA NA
## 2878 NA NA
## 2879 NA NA
## 2880 NA NA
## 2881 NA NA
## 2882 NA NA
## 2883 NA NA
## 2884 NA NA
## 2885 NA NA
## 2886 NA NA
## 2887 NA NA
## 2888 NA NA
## 2889 NA NA
## 2890 NA NA
## 2891 NA NA
## 2892 NA NA
## 2893 NA NA
## 2894 NA NA
## 2895 NA NA
## 2896 NA NA
## 2897 NA NA
## 2898 NA NA
## 2899 NA NA
## 2900 NA NA
## 2901 NA NA
## 2902 NA NA
## 2903 NA NA
## 2904 NA NA
## 2905 NA NA
## 2906 NA NA
## 2907 NA NA
## 2908 NA NA
## 2909 NA NA
## 2910 NA NA
## 2911 NA NA
## 2912 NA NA
## 2913 NA NA
## 2914 NA NA
## 2915 NA NA
## 2916 NA NA
## 2917 NA NA
## 2918 NA NA
## 2919 NA NA
## 2920 NA NA
## 2921 NA NA
## 2922 NA NA
## 2923 NA NA
## 2924 NA NA
## 2925 NA NA
## 2926 NA NA
## 2927 NA NA
## 2928 NA NA
## 2929 NA NA
## 2930 NA NA
## 2931 NA NA
## 2932 NA NA
## 2933 NA NA
## 2934 NA NA
## 2935 NA NA
## 2936 NA NA
## 2937 NA NA
## 2938 NA NA
## 2939 NA NA
## 2940 NA NA
## 2941 NA NA
## 2942 NA NA
## 2943 NA NA
## 2944 NA NA
## 2945 NA NA
## 2946 NA NA
## 2947 NA NA
## 2948 NA NA
## 2949 NA NA
## 2950 NA NA
## 2951 NA NA
## 2952 NA NA
## 2953 NA NA
## 2954 NA NA
## 2955 NA NA
## 2956 NA NA
## 2957 NA NA
## 2958 NA NA
## 2959 NA NA
## 2960 NA NA
## 2961 NA NA
## 2962 NA NA
## 2963 NA NA
## 2964 NA NA
## 2965 NA NA
## 2966 NA NA
## 2967 NA NA
## 2968 NA NA
## 2969 NA NA
## 2970 NA NA
## 2971 NA NA
## 2972 NA NA
## 2973 NA NA
## 2974 NA NA
## 2975 NA NA
## 2976 NA NA
## 2977 NA NA
## 2978 NA NA
## 2979 NA NA
## 2980 NA NA
## 2981 NA NA
## 2982 NA NA
## 2983 NA NA
## 2984 NA NA
## 2985 NA NA
## 2986 NA NA
## 2987 NA NA
## 2988 NA NA
## 2989 NA NA
## 2990 NA NA
## 2991 NA NA
## 2992 NA NA
## 2993 NA NA
## 2994 NA NA
## 2995 NA NA
## 2996 NA NA
## 2997 NA NA
## 2998 NA NA
## 2999 NA NA
## 3000 NA NA
## 3001 NA NA
## 3002 NA NA
## 3003 NA NA
## 3004 NA NA
## 3005 NA NA
## 3006 NA NA
## 3007 NA NA
## 3008 NA NA
## 3009 NA NA
## 3010 NA NA
## 3011 NA NA
## 3012 NA NA
## 3013 NA NA
## 3014 NA NA
## 3015 NA NA
## 3016 NA NA
## 3017 NA NA
## 3018 NA NA
## 3019 NA NA
## 3020 NA NA
## 3021 NA NA
## 3022 NA NA
## 3023 NA NA
## 3024 NA NA
## 3025 NA NA
## 3026 NA NA
## 3027 NA NA
## 3028 NA NA
## 3029 NA NA
## 3030 NA NA
## 3031 NA NA
## 3032 NA NA
## 3033 NA NA
## 3034 NA NA
## 3035 NA NA
## 3036 NA NA
## 3037 NA NA
## 3038 NA NA
## 3039 NA NA
## 3040 NA NA
## 3041 NA NA
## 3042 NA NA
## 3043 NA NA
## 3044 NA NA
## 3045 NA NA
## 3046 NA NA
## 3047 NA NA
## 3048 NA NA
## 3049 NA NA
## 3050 NA NA
## 3051 NA NA
## 3052 NA NA
## 3053 NA NA
## 3054 NA NA
## 3055 NA NA
## 3056 NA NA
## 3057 NA NA
## 3058 NA NA
## 3059 NA NA
## 3060 NA NA
## 3061 NA NA
## 3062 NA NA
## 3063 NA NA
## 3064 NA NA
## 3065 NA NA
## 3066 NA NA
## 3067 NA NA
## 3068 NA NA
## 3069 NA NA
## 3070 NA NA
## 3071 NA NA
## 3072 NA NA
## 3073 NA NA
## 3074 NA NA
## 3075 NA NA
## 3076 NA NA
## 3077 NA NA
## 3078 NA NA
## 3079 NA NA
## 3080 NA NA
## 3081 NA NA
## 3082 NA NA
## 3083 NA NA
## 3084 NA NA
## 3085 NA NA
## 3086 NA NA
## 3087 NA NA
## 3088 NA NA
## 3089 NA NA
## 3090 NA NA
## 3091 NA NA
## 3092 NA NA
## 3093 NA NA
## 3094 NA NA
## 3095 NA NA
## 3096 NA NA
## 3097 NA NA
## 3098 NA NA
## 3099 NA NA
## 3100 NA NA
## 3101 NA NA
## 3102 NA NA
## 3103 NA NA
## 3104 NA NA
## 3105 NA NA
## 3106 NA NA
## 3107 NA NA
## 3108 NA NA
## 3109 NA NA
## 3110 NA NA
## 3111 NA NA
## 3112 NA NA
## 3113 NA NA
## 3114 NA NA
## 3115 NA NA
## 3116 NA NA
## 3117 NA NA
## 3118 NA NA
## 3119 NA NA
## 3120 NA NA
## 3121 NA NA
## 3122 NA NA
## 3123 NA NA
## 3124 NA NA
## 3125 NA NA
## 3126 NA NA
## 3127 NA NA
## 3128 NA NA
## 3129 NA NA
## 3130 NA NA
## 3131 NA NA
## 3132 NA NA
## 3133 NA NA
## 3134 NA NA
## 3135 NA NA
## 3136 NA NA
## 3137 NA NA
## 3138 NA NA
## 3139 NA NA
## 3140 NA NA
## 3141 NA NA
## 3142 NA NA
## 3143 NA NA
## 3144 NA NA
## 3145 NA NA
## 3146 NA NA
## 3147 NA NA
## 3148 NA NA
## 3149 NA NA
## 3150 NA NA
## 3151 NA NA
## 3152 NA NA
## 3153 NA NA
## 3154 NA NA
## 3155 NA NA
## 3156 NA NA
## 3157 NA NA
## 3158 NA NA
## 3159 NA NA
## 3160 NA NA
## 3161 NA NA
## 3162 NA NA
## 3163 NA NA
## 3164 NA NA
## 3165 NA NA
## 3166 NA NA
## 3167 NA NA
## 3168 NA NA
## 3169 NA NA
## 3170 NA NA
## 3171 NA NA
## 3172 NA NA
## 3173 NA NA
## 3174 NA NA
## 3175 NA NA
## 3176 NA NA
## 3177 NA NA
## 3178 NA NA
## 3179 NA NA
## 3180 NA NA
## 3181 NA NA
## 3182 NA NA
## 3183 NA NA
## 3184 NA NA
## 3185 NA NA
## 3186 NA NA
## 3187 NA NA
## 3188 NA NA
## 3189 NA NA
## 3190 NA NA
## 3191 NA NA
## 3192 NA NA
## 3193 NA NA
## 3194 NA NA
## 3195 NA NA
## 3196 NA NA
## 3197 NA NA
## 3198 NA NA
## 3199 NA NA
## 3200 NA NA
## 3201 NA NA
## 3202 NA NA
## 3203 NA NA
## 3204 NA NA
## 3205 NA NA
## 3206 NA NA
## 3207 NA NA
## 3208 NA NA
## 3209 NA NA
## 3210 NA NA
## 3211 NA NA
## 3212 NA NA
## 3213 NA NA
## 3214 NA NA
## 3215 NA NA
## 3216 NA NA
## 3217 NA NA
## 3218 NA NA
## 3219 NA NA
## 3220 NA NA
## 3221 NA NA
## 3222 NA NA
## 3223 NA NA
## 3224 NA NA
## 3225 NA NA
## 3226 NA NA
## 3227 NA NA
## 3228 NA NA
## 3229 NA NA
## 3230 NA NA
## 3231 NA NA
## 3232 NA NA
## 3233 NA NA
## 3234 NA NA
## 3235 NA NA
## 3236 NA NA
## 3237 NA NA
## 3238 NA NA
## 3239 NA NA
## 3240 NA NA
## 3241 NA NA
## 3242 NA NA
## 3243 NA NA
## 3244 NA NA
## 3245 NA NA
## 3246 NA NA
## 3247 NA NA
## 3248 NA NA
## 3249 NA NA
## 3250 NA NA
## 3251 NA NA
## 3252 NA NA
## 3253 NA NA
## 3254 NA NA
## 3255 NA NA
## 3256 NA NA
## 3257 NA NA
## 3258 NA NA
## 3259 NA NA
## 3260 NA NA
## 3261 NA NA
## 3262 NA NA
## 3263 NA NA
## 3264 NA NA
## 3265 NA NA
## 3266 NA NA
## 3267 NA NA
## 3268 NA NA
## 3269 NA NA
## 3270 NA NA
## 3271 NA NA
## 3272 NA NA
## 3273 NA NA
## 3274 NA NA
## 3275 NA NA
## 3276 NA NA
## 3277 NA NA
## 3278 NA NA
## 3279 NA NA
## 3280 NA NA
## 3281 NA NA
## 3282 NA NA
## 3283 NA NA
## 3284 NA NA
## 3285 NA NA
## 3286 NA NA
## 3287 NA NA
## 3288 NA NA
## 3289 NA NA
## 3290 NA NA
## 3291 NA NA
## 3292 NA NA
## 3293 NA NA
## 3294 NA NA
## 3295 NA NA
## 3296 NA NA
## 3297 NA NA
## 3298 NA NA
## 3299 NA NA
## 3300 NA NA
## 3301 NA NA
## 3302 NA NA
## 3303 NA NA
## 3304 NA NA
## 3305 NA NA
## 3306 NA NA
## 3307 NA NA
## 3308 NA NA
## 3309 NA NA
## 3310 NA NA
## 3311 NA NA
## 3312 NA NA
## 3313 NA NA
## 3314 NA NA
## 3315 NA NA
## 3316 NA NA
## 3317 NA NA
## 3318 NA NA
## 3319 NA NA
## 3320 NA NA
## 3321 NA NA
## 3322 NA NA
## 3323 NA NA
## 3324 NA NA
## 3325 NA NA
## 3326 NA NA
## 3327 NA NA
## 3328 NA NA
## 3329 NA NA
## 3330 NA NA
## 3331 NA NA
## 3332 NA NA
## 3333 NA NA
## 3334 NA NA
## 3335 NA NA
## 3336 NA NA
## 3337 NA NA
## 3338 NA NA
## 3339 NA NA
## 3340 NA NA
## 3341 NA NA
## 3342 NA NA
## 3343 NA NA
## 3344 NA NA
## 3345 NA NA
## 3346 NA NA
## 3347 NA NA
## 3348 NA NA
## 3349 NA NA
## 3350 NA NA
## 3351 NA NA
## 3352 NA NA
## 3353 NA NA
## 3354 NA NA
## 3355 NA NA
## 3356 NA NA
## 3357 NA NA
## 3358 NA NA
## 3359 NA NA
## 3360 NA NA
## 3361 NA NA
## 3362 NA NA
## 3363 NA NA
## 3364 NA NA
## 3365 NA NA
## 3366 NA NA
## 3367 NA NA
## 3368 NA NA
## 3369 NA NA
## 3370 NA NA
## 3371 NA NA
## 3372 NA NA
## 3373 NA NA
## 3374 NA NA
## 3375 NA NA
## 3376 NA NA
## 3377 NA NA
## 3378 NA NA
## 3379 NA NA
## 3380 NA NA
## 3381 NA NA
## 3382 NA NA
## 3383 NA NA
## 3384 NA NA
## 3385 NA NA
## 3386 NA NA
## 3387 NA NA
## 3388 NA NA
## 3389 NA NA
## 3390 NA NA
## 3391 NA NA
## 3392 NA NA
## 3393 NA NA
## 3394 NA NA
## 3395 NA NA
## 3396 NA NA
## 3397 NA NA
## 3398 NA NA
## 3399 NA NA
## 3400 NA NA
## 3401 NA NA
## 3402 NA NA
## 3403 NA NA
## 3404 NA NA
## 3405 NA NA
## 3406 NA NA
## 3407 NA NA
## 3408 NA NA
## 3409 NA NA
## 3410 NA NA
## 3411 NA NA
## 3412 NA NA
## 3413 NA NA
## 3414 NA NA
## 3415 NA NA
## 3416 NA NA
## 3417 NA NA
## 3418 NA NA
## 3419 NA NA
## 3420 NA NA
## 3421 NA NA
## 3422 NA NA
## 3423 NA NA
## 3424 NA NA
## 3425 NA NA
## 3426 NA NA
## 3427 NA NA
## 3428 NA NA
## 3429 NA NA
## 3430 NA NA
## 3431 NA NA
## 3432 NA NA
## 3433 NA NA
## 3434 NA NA
## 3435 NA NA
## 3436 NA NA
## 3437 NA NA
## 3438 NA NA
## 3439 NA NA
## 3440 NA NA
## 3441 NA NA
## 3442 NA NA
## 3443 NA NA
## 3444 NA NA
## 3445 NA NA
## 3446 NA NA
## 3447 NA NA
## 3448 NA NA
## 3449 NA NA
## 3450 NA NA
## 3451 NA NA
## 3452 NA NA
## 3453 NA NA
## 3454 NA NA
## 3455 NA NA
## 3456 NA NA
## 3457 NA NA
## 3458 NA NA
## 3459 NA NA
## 3460 NA NA
## 3461 NA NA
## 3462 NA NA
## 3463 NA NA
## 3464 NA NA
## 3465 NA NA
## 3466 NA NA
## 3467 NA NA
## 3468 NA NA
## 3469 NA NA
## 3470 NA NA
## 3471 NA NA
## 3472 NA NA
## 3473 NA NA
## 3474 NA NA
## 3475 NA NA
## 3476 NA NA
## 3477 NA NA
## 3478 NA NA
## 3479 NA NA
## 3480 NA NA
## 3481 NA NA
## 3482 NA NA
## 3483 NA NA
## 3484 NA NA
## 3485 NA NA
## 3486 NA NA
## 3487 NA NA
## 3488 NA NA
## 3489 NA NA
## 3490 NA NA
## 3491 NA NA
## 3492 NA NA
## 3493 NA NA
## 3494 NA NA
## 3495 NA NA
## 3496 NA NA
## 3497 NA NA
## 3498 NA NA
## 3499 NA NA
## 3500 NA NA
## 3501 NA NA
## 3502 NA NA
## 3503 NA NA
## 3504 NA NA
## 3505 NA NA
## 3506 NA NA
## 3507 NA NA
## 3508 NA NA
## 3509 NA NA
## 3510 NA NA
## 3511 NA NA
## 3512 NA NA
## 3513 NA NA
## 3514 NA NA
## 3515 NA NA
## 3516 NA NA
## 3517 NA NA
## 3518 NA NA
## 3519 NA NA
## 3520 NA NA
## 3521 NA NA
## 3522 NA NA
## 3523 NA NA
## 3524 NA NA
## 3525 NA NA
## 3526 NA NA
## 3527 NA NA
## 3528 NA NA
## 3529 NA NA
## 3530 NA NA
## 3531 NA NA
## 3532 NA NA
## 3533 NA NA
## 3534 NA NA
## 3535 NA NA
## 3536 NA NA
## 3537 NA NA
## 3538 NA NA
## 3539 NA NA
## 3540 NA NA
## 3541 NA NA
## 3542 NA NA
## 3543 NA NA
## 3544 NA NA
## 3545 NA NA
## 3546 NA NA
## 3547 NA NA
## 3548 NA NA
## 3549 NA NA
## 3550 NA NA
## 3551 NA NA
## 3552 NA NA
## 3553 NA NA
## 3554 NA NA
## 3555 NA NA
## 3556 NA NA
## 3557 NA NA
## 3558 NA NA
## 3559 NA NA
## 3560 NA NA
## 3561 NA NA
## 3562 NA NA
## 3563 NA NA
## 3564 NA NA
## 3565 NA NA
## 3566 NA NA
## 3567 NA NA
## 3568 NA NA
## 3569 NA NA
## 3570 NA NA
## 3571 NA NA
## 3572 NA NA
## 3573 NA NA
## 3574 NA NA
## 3575 NA NA
## 3576 NA NA
## 3577 NA NA
## 3578 NA NA
## 3579 NA NA
## 3580 NA NA
## 3581 NA NA
## 3582 NA NA
## 3583 NA NA
## 3584 NA NA
## 3585 NA NA
## 3586 NA NA
## 3587 NA NA
## 3588 NA NA
## 3589 NA NA
## 3590 NA NA
## 3591 NA NA
## 3592 NA NA
## 3593 NA NA
## 3594 NA NA
## 3595 NA NA
## 3596 NA NA
## 3597 NA NA
## 3598 NA NA
## 3599 NA NA
## 3600 NA NA
## 3601 NA NA
## 3602 NA NA
## 3603 NA NA
## 3604 NA NA
## 3605 NA NA
## 3606 NA NA
## 3607 NA NA
## 3608 NA NA
## 3609 NA NA
## 3610 NA NA
## 3611 NA NA
## 3612 NA NA
## 3613 NA NA
## 3614 NA NA
## 3615 NA NA
## 3616 NA NA
## 3617 NA NA
## 3618 NA NA
## 3619 NA NA
## 3620 NA NA
## 3621 NA NA
## 3622 NA NA
## 3623 NA NA
## 3624 NA NA
## 3625 NA NA
## 3626 NA NA
## 3627 NA NA
## 3628 NA NA
## 3629 NA NA
## 3630 NA NA
## 3631 NA NA
## 3632 NA NA
## 3633 NA NA
## 3634 NA NA
## 3635 NA NA
## 3636 NA NA
## 3637 NA NA
## 3638 NA NA
## 3639 NA NA
## 3640 NA NA
## 3641 NA NA
## 3642 NA NA
## 3643 NA NA
## 3644 NA NA
## 3645 NA NA
## 3646 NA NA
## 3647 NA NA
## 3648 NA NA
## 3649 NA NA
## 3650 NA NA
## 3651 NA NA
## 3652 NA NA
## 3653 NA NA
## 3654 NA NA
## 3655 NA NA
## 3656 NA NA
## 3657 NA NA
## 3658 NA NA
## 3659 NA NA
## 3660 NA NA
## 3661 NA NA
## 3662 NA NA
## 3663 NA NA
## 3664 NA NA
## 3665 NA NA
## 3666 NA NA
## 3667 NA NA
## 3668 NA NA
## 3669 NA NA
## 3670 NA NA
## 3671 NA NA
## 3672 NA NA
## 3673 NA NA
## 3674 NA NA
## 3675 NA NA
## 3676 NA NA
## 3677 NA NA
## 3678 NA NA
## 3679 NA NA
## 3680 NA NA
## 3681 NA NA
## 3682 NA NA
## 3683 NA NA
## 3684 NA NA
## 3685 NA NA
## 3686 NA NA
## 3687 NA NA
## 3688 NA NA
## 3689 NA NA
## 3690 NA NA
## 3691 NA NA
## 3692 NA NA
## 3693 NA NA
## 3694 NA NA
## 3695 NA NA
## 3696 NA NA
## 3697 NA NA
## 3698 NA NA
## 3699 NA NA
## 3700 NA NA
## 3701 NA NA
## 3702 NA NA
## 3703 NA NA
## 3704 NA NA
## 3705 NA NA
## 3706 NA NA
## 3707 NA NA
## 3708 NA NA
## 3709 NA NA
## 3710 NA NA
## 3711 NA NA
## 3712 NA NA
## 3713 NA NA
## 3714 NA NA
## 3715 NA NA
## 3716 NA NA
## 3717 NA NA
## 3718 NA NA
## 3719 NA NA
## 3720 NA NA
## 3721 NA NA
## 3722 NA NA
## 3723 NA NA
## 3724 NA NA
## 3725 NA NA
## 3726 NA NA
## 3727 NA NA
## 3728 NA NA
## 3729 NA NA
## 3730 NA NA
## 3731 NA NA
## 3732 NA NA
## 3733 NA NA
## 3734 NA NA
## 3735 NA NA
## 3736 NA NA
## 3737 NA NA
## 3738 NA NA
## 3739 NA NA
## 3740 NA NA
## 3741 NA NA
## 3742 NA NA
## 3743 NA NA
## 3744 NA NA
## 3745 NA NA
## 3746 NA NA
## 3747 NA NA
## 3748 NA NA
## 3749 NA NA
## 3750 NA NA
## 3751 NA NA
## 3752 NA NA
## 3753 NA NA
## 3754 NA NA
## 3755 NA NA
## 3756 NA NA
## 3757 NA NA
## 3758 NA NA
## 3759 NA NA
## 3760 NA NA
## 3761 NA NA
## 3762 NA NA
## 3763 NA NA
## 3764 NA NA
## 3765 NA NA
## 3766 NA NA
## 3767 NA NA
## 3768 NA NA
## 3769 NA NA
## 3770 NA NA
## 3771 NA NA
## 3772 NA NA
## 3773 NA NA
## 3774 NA NA
## 3775 NA NA
## 3776 NA NA
## 3777 NA NA
## 3778 NA NA
## 3779 NA NA
## 3780 NA NA
## 3781 NA NA
## 3782 NA NA
## 3783 NA NA
## 3784 NA NA
## 3785 NA NA
## 3786 NA NA
## 3787 NA NA
## 3788 NA NA
## 3789 NA NA
## 3790 NA NA
## 3791 NA NA
## 3792 NA NA
## 3793 NA NA
## 3794 NA NA
## 3795 NA NA
## 3796 NA NA
## 3797 NA NA
## 3798 NA NA
## 3799 NA NA
## 3800 NA NA
## 3801 NA NA
## 3802 NA NA
## 3803 NA NA
## 3804 NA NA
## 3805 NA NA
## 3806 NA NA
## 3807 NA NA
## 3808 NA NA
## 3809 NA NA
## 3810 NA NA
## 3811 NA NA
## 3812 NA NA
## 3813 NA NA
## 3814 NA NA
## 3815 NA NA
## 3816 NA NA
## 3817 NA NA
## 3818 NA NA
## 3819 NA NA
## 3820 NA NA
## 3821 NA NA
## 3822 NA NA
## 3823 NA NA
## 3824 NA NA
## 3825 NA NA
## 3826 NA NA
## 3827 NA NA
## 3828 NA NA
## 3829 NA NA
## 3830 NA NA
## 3831 NA NA
## 3832 NA NA
## 3833 NA NA
## 3834 NA NA
## 3835 NA NA
## 3836 NA NA
## 3837 NA NA
## 3838 NA NA
## 3839 NA NA
## 3840 NA NA
## 3841 NA NA
## 3842 NA NA
## 3843 NA NA
## 3844 NA NA
## 3845 NA NA
## 3846 NA NA
## 3847 NA NA
## 3848 NA NA
## 3849 NA NA
## 3850 NA NA
## 3851 NA NA
## 3852 NA NA
## 3853 NA NA
## 3854 NA NA
## 3855 NA NA
## 3856 NA NA
## 3857 NA NA
## 3858 NA NA
## 3859 NA NA
## 3860 NA NA
## 3861 NA NA
## 3862 NA NA
## 3863 NA NA
## 3864 NA NA
## 3865 NA NA
## 3866 NA NA
## 3867 NA NA
## 3868 NA NA
## 3869 NA NA
## 3870 NA NA
## 3871 NA NA
## 3872 NA NA
## 3873 NA NA
## 3874 NA NA
## 3875 NA NA
## 3876 NA NA
## 3877 NA NA
## 3878 NA NA
## 3879 NA NA
## 3880 NA NA
## 3881 NA NA
## 3882 NA NA
## 3883 NA NA
## 3884 NA NA
## 3885 NA NA
## 3886 NA NA
## 3887 NA NA
## 3888 NA NA
## 3889 NA NA
## 3890 NA NA
## 3891 NA NA
## 3892 NA NA
## 3893 NA NA
## 3894 NA NA
## 3895 NA NA
## 3896 NA NA
## 3897 NA NA
## 3898 NA NA
## 3899 NA NA
## 3900 NA NA
## 3901 NA NA
## 3902 NA NA
## 3903 NA NA
## 3904 NA NA
## 3905 NA NA
## 3906 NA NA
## 3907 NA NA
## 3908 NA NA
## 3909 NA NA
## 3910 NA NA
## 3911 NA NA
## 3912 NA NA
## 3913 NA NA
## 3914 NA NA
## 3915 NA NA
## 3916 NA NA
## 3917 NA NA
## 3918 NA NA
## 3919 NA NA
## 3920 NA NA
## 3921 NA NA
## 3922 NA NA
## 3923 NA NA
## 3924 NA NA
## 3925 NA NA
## 3926 NA NA
## 3927 NA NA
## 3928 NA NA
## 3929 NA NA
## 3930 NA NA
## 3931 NA NA
## 3932 NA NA
## 3933 NA NA
## 3934 NA NA
## 3935 NA NA
## 3936 NA NA
## 3937 NA NA
## 3938 NA NA
## 3939 NA NA
## 3940 NA NA
## 3941 NA NA
## 3942 NA NA
## 3943 NA NA
## 3944 NA NA
## 3945 NA NA
## 3946 NA NA
## 3947 NA NA
## 3948 NA NA
## 3949 NA NA
## 3950 NA NA
## 3951 NA NA
## 3952 NA NA
## 3953 NA NA
## 3954 NA NA
## 3955 NA NA
## 3956 NA NA
## 3957 NA NA
## 3958 NA NA
## 3959 NA NA
## 3960 NA NA
## 3961 NA NA
## 3962 NA NA
## 3963 NA NA
## 3964 NA NA
## 3965 NA NA
## 3966 NA NA
## 3967 NA NA
## 3968 NA NA
## 3969 NA NA
## 3970 NA NA
## 3971 NA NA
## 3972 NA NA
## 3973 NA NA
## 3974 NA NA
## 3975 NA NA
## 3976 NA NA
## 3977 NA NA
## 3978 NA NA
## 3979 NA NA
## 3980 NA NA
## 3981 NA NA
## 3982 NA NA
## 3983 NA NA
## 3984 NA NA
## 3985 NA NA
## 3986 NA NA
## 3987 NA NA
## 3988 NA NA
## 3989 NA NA
## 3990 NA NA
## 3991 NA NA
## 3992 NA NA
## 3993 NA NA
## 3994 NA NA
## 3995 NA NA
## 3996 NA NA
## 3997 NA NA
## 3998 NA NA
## 3999 NA NA
## 4000 NA NA
## 4001 NA NA
## 4002 NA NA
## 4003 NA NA
## 4004 NA NA
## 4005 NA NA
## 4006 NA NA
## 4007 NA NA
## 4008 NA NA
## 4009 NA NA
## 4010 NA NA
## 4011 NA NA
## 4012 NA NA
## 4013 NA NA
## 4014 NA NA
## 4015 NA NA
## 4016 NA NA
## 4017 NA NA
## 4018 NA NA
## 4019 NA NA
## 4020 NA NA
## 4021 NA NA
## 4022 NA NA
## 4023 NA NA
## 4024 NA NA
## 4025 NA NA
## 4026 NA NA
## 4027 NA NA
## 4028 NA NA
## 4029 NA NA
## 4030 NA NA
## 4031 NA NA
## 4032 NA NA
## 4033 NA NA
## 4034 NA NA
## 4035 NA NA
## 4036 NA NA
## 4037 NA NA
## 4038 NA NA
## 4039 NA NA
## 4040 NA NA
## 4041 NA NA
## 4042 NA NA
## 4043 NA NA
## 4044 NA NA
## 4045 NA NA
## 4046 NA NA
## 4047 NA NA
## 4048 NA NA
## 4049 NA NA
## 4050 NA NA
## 4051 NA NA
## 4052 NA NA
## 4053 NA NA
## 4054 NA NA
## 4055 NA NA
## 4056 NA NA
## 4057 NA NA
## 4058 NA NA
## 4059 NA NA
## 4060 NA NA
## 4061 NA NA
## 4062 NA NA
## 4063 NA NA
## 4064 NA NA
## 4065 NA NA
## 4066 NA NA
## 4067 NA NA
## 4068 NA NA
## 4069 NA NA
## 4070 NA NA
## 4071 NA NA
## 4072 NA NA
## 4073 NA NA
## 4074 NA NA
## 4075 NA NA
## 4076 NA NA
## 4077 NA NA
## 4078 NA NA
## 4079 NA NA
## 4080 NA NA
## 4081 NA NA
## 4082 NA NA
## 4083 NA NA
## 4084 NA NA
## 4085 NA NA
## 4086 NA NA
## 4087 NA NA
## 4088 NA NA
## 4089 NA NA
## 4090 NA NA
## 4091 NA NA
## 4092 NA NA
## 4093 NA NA
## 4094 NA NA
## 4095 NA NA
## 4096 NA NA
## 4097 NA NA
## 4098 NA NA
## 4099 NA NA
## 4100 NA NA
## 4101 NA NA
## 4102 NA NA
## 4103 NA NA
## 4104 NA NA
## 4105 NA NA
## 4106 NA NA
## 4107 NA NA
## 4108 NA NA
## 4109 NA NA
## 4110 NA NA
## 4111 NA NA
## 4112 NA NA
## 4113 NA NA
## 4114 NA NA
## 4115 NA NA
## 4116 NA NA
## 4117 NA NA
## 4118 NA NA
## 4119 NA NA
## 4120 NA NA
## 4121 NA NA
## 4122 NA NA
## 4123 NA NA
## 4124 NA NA
## 4125 NA NA
## 4126 NA NA
## 4127 NA NA
## 4128 NA NA
## 4129 NA NA
## 4130 NA NA
## 4131 NA NA
## 4132 NA NA
## 4133 NA NA
## 4134 NA NA
## 4135 NA NA
## 4136 NA NA
## 4137 NA NA
## 4138 NA NA
## 4139 NA NA
## 4140 NA NA
## 4141 NA NA
## 4142 NA NA
## 4143 NA NA
## 4144 NA NA
## 4145 NA NA
## 4146 NA NA
## 4147 NA NA
## 4148 NA NA
## 4149 NA NA
## 4150 NA NA
## 4151 NA NA
## 4152 NA NA
## 4153 NA NA
## 4154 NA NA
## 4155 NA NA
## 4156 NA NA
## 4157 NA NA
## 4158 NA NA
## 4159 NA NA
## 4160 NA NA
## 4161 NA NA
## 4162 NA NA
## 4163 NA NA
## 4164 NA NA
## 4165 NA NA
## 4166 NA NA
## 4167 NA NA
## 4168 NA NA
## 4169 NA NA
## 4170 NA NA
## 4171 NA NA
## 4172 NA NA
## 4173 NA NA
## 4174 NA NA
## 4175 NA NA
## 4176 NA NA
## 4177 NA NA
## 4178 NA NA
## 4179 NA NA
## 4180 NA NA
## 4181 NA NA
## 4182 NA NA
## 4183 NA NA
## 4184 NA NA
## 4185 NA NA
## 4186 NA NA
## 4187 NA NA
## 4188 NA NA
## 4189 NA NA
## 4190 NA NA
## 4191 NA NA
## 4192 NA NA
## 4193 NA NA
## 4194 NA NA
## 4195 NA NA
## 4196 NA NA
## 4197 NA NA
## 4198 NA NA
## 4199 NA NA
## 4200 NA NA
## 4201 NA NA
## 4202 NA NA
## 4203 NA NA
## 4204 NA NA
## 4205 NA NA
## 4206 NA NA
## 4207 NA NA
## 4208 NA NA
## 4209 NA NA
## 4210 NA NA
## 4211 NA NA
## 4212 NA NA
## 4213 NA NA
## 4214 NA NA
## 4215 NA NA
## 4216 NA NA
## 4217 NA NA
## 4218 NA NA
## 4219 NA NA
## 4220 NA NA
## 4221 NA NA
## 4222 NA NA
## 4223 NA NA
## 4224 NA NA
## 4225 NA NA
## 4226 NA NA
## 4227 NA NA
## 4228 NA NA
## 4229 NA NA
## 4230 NA NA
## 4231 NA NA
## 4232 NA NA
## 4233 NA NA
## 4234 NA NA
## 4235 NA NA
## 4236 NA NA
## 4237 NA NA
## 4238 NA NA
## 4239 NA NA
## 4240 NA NA
## 4241 NA NA
## 4242 NA NA
## 4243 NA NA
## 4244 NA NA
## 4245 NA NA
## 4246 NA NA
## 4247 NA NA
## 4248 NA NA
## 4249 NA NA
## 4250 NA NA
## 4251 NA NA
## 4252 NA NA
## 4253 NA NA
## 4254 NA NA
## 4255 NA NA
## 4256 NA NA
## 4257 NA NA
## 4258 NA NA
## 4259 NA NA
## 4260 NA NA
## 4261 NA NA
## 4262 NA NA
## 4263 NA NA
## 4264 NA NA
## 4265 NA NA
## 4266 NA NA
## 4267 NA NA
## 4268 NA NA
## 4269 NA NA
## 4270 NA NA
## 4271 NA NA
## 4272 NA NA
## 4273 NA NA
## 4274 NA NA
## 4275 NA NA
## 4276 NA NA
## 4277 NA NA
## 4278 NA NA
## 4279 NA NA
## 4280 NA NA
## 4281 NA NA
## 4282 NA NA
## 4283 NA NA
## 4284 NA NA
## 4285 NA NA
## 4286 NA NA
## 4287 NA NA
## 4288 NA NA
## 4289 NA NA
## 4290 NA NA
## 4291 NA NA
## 4292 NA NA
## 4293 NA NA
## 4294 NA NA
## 4295 NA NA
## 4296 NA NA
## 4297 NA NA
## 4298 NA NA
## 4299 NA NA
## 4300 NA NA
## 4301 NA NA
## 4302 NA NA
## 4303 NA NA
## 4304 NA NA
## 4305 NA NA
## 4306 NA NA
## 4307 NA NA
## 4308 NA NA
## 4309 NA NA
## 4310 NA NA
## 4311 NA NA
## 4312 NA NA
## 4313 NA NA
## 4314 NA NA
## 4315 NA NA
## 4316 NA NA
## 4317 NA NA
## 4318 NA NA
## 4319 NA NA
## 4320 NA NA
## 4321 NA NA
## 4322 NA NA
## 4323 NA NA
## 4324 NA NA
## 4325 NA NA
## 4326 NA NA
## 4327 NA NA
## 4328 NA NA
## 4329 NA NA
## 4330 NA NA
## 4331 NA NA
## 4332 NA NA
## 4333 NA NA
## 4334 NA NA
## 4335 NA NA
## 4336 NA NA
## 4337 NA NA
## 4338 NA NA
## 4339 NA NA
## 4340 NA NA
## 4341 NA NA
## 4342 NA NA
## 4343 NA NA
## 4344 NA NA
## 4345 NA NA
## 4346 NA NA
## 4347 NA NA
## 4348 NA NA
## 4349 NA NA
## 4350 NA NA
## 4351 NA NA
## 4352 NA NA
## 4353 NA NA
## 4354 NA NA
## 4355 NA NA
## 4356 NA NA
## 4357 NA NA
## 4358 NA NA
## 4359 NA NA
## 4360 NA NA
## 4361 NA NA
## 4362 NA NA
## 4363 NA NA
## 4364 NA NA
## 4365 NA NA
## 4366 NA NA
## 4367 NA NA
## 4368 NA NA
## 4369 NA NA
## 4370 NA NA
## 4371 NA NA
## 4372 NA NA
## 4373 NA NA
## 4374 NA NA
## 4375 NA NA
## 4376 NA NA
## 4377 NA NA
## 4378 NA NA
## 4379 NA NA
## 4380 NA NA
## 4381 NA NA
## 4382 NA NA
## 4383 NA NA
## 4384 NA NA
## 4385 NA NA
## 4386 NA NA
## 4387 NA NA
## 4388 NA NA
## 4389 NA NA
## 4390 NA NA
## 4391 NA NA
## 4392 NA NA
## 4393 NA NA
## 4394 NA NA
## 4395 NA NA
## 4396 NA NA
## 4397 NA NA
## 4398 NA NA
## 4399 NA NA
## 4400 NA NA
## 4401 NA NA
## 4402 NA NA
## 4403 NA NA
## 4404 NA NA
## 4405 NA NA
## 4406 NA NA
## 4407 NA NA
## 4408 NA NA
## 4409 NA NA
## 4410 NA NA
## 4411 NA NA
## 4412 NA NA
## 4413 NA NA
## 4414 NA NA
## 4415 NA NA
## 4416 NA NA
## 4417 NA NA
## 4418 NA NA
## 4419 NA NA
## 4420 NA NA
## 4421 NA NA
## 4422 NA NA
## 4423 NA NA
## 4424 NA NA
## 4425 NA NA
## 4426 NA NA
## 4427 NA NA
## 4428 NA NA
## 4429 NA NA
## 4430 NA NA
## 4431 NA NA
## 4432 NA NA
## 4433 NA NA
## 4434 NA NA
## 4435 NA NA
## 4436 NA NA
## 4437 NA NA
## 4438 NA NA
## 4439 NA NA
## 4440 NA NA
## 4441 NA NA
## 4442 NA NA
## 4443 NA NA
## 4444 NA NA
## 4445 NA NA
## 4446 NA NA
## 4447 NA NA
## 4448 NA NA
## 4449 NA NA
## 4450 NA NA
## 4451 NA NA
## 4452 NA NA
## 4453 NA NA
## 4454 NA NA
## 4455 NA NA
## 4456 NA NA
## 4457 NA NA
## 4458 NA NA
## 4459 NA NA
## 4460 NA NA
## 4461 NA NA
## 4462 NA NA
## 4463 NA NA
## 4464 NA NA
## 4465 NA NA
## 4466 NA NA
## 4467 NA NA
## 4468 NA NA
## 4469 NA NA
## 4470 NA NA
## 4471 NA NA
## 4472 NA NA
## 4473 NA NA
## 4474 NA NA
## 4475 NA NA
## 4476 NA NA
## 4477 NA NA
## 4478 NA NA
## 4479 NA NA
## 4480 NA NA
## 4481 NA NA
## 4482 NA NA
## 4483 NA NA
## 4484 NA NA
## 4485 NA NA
## 4486 NA NA
## 4487 NA NA
## 4488 NA NA
## 4489 NA NA
## 4490 NA NA
## 4491 NA NA
## 4492 NA NA
## 4493 NA NA
## 4494 NA NA
## 4495 NA NA
## 4496 NA NA
## 4497 NA NA
## 4498 NA NA
## 4499 NA NA
## 4500 NA NA
## 4501 NA NA
## 4502 NA NA
## 4503 NA NA
## 4504 NA NA
## 4505 NA NA
## 4506 NA NA
## 4507 NA NA
## 4508 NA NA
## 4509 NA NA
## 4510 NA NA
## 4511 NA NA
## 4512 NA NA
## 4513 NA NA
## 4514 NA NA
## 4515 NA NA
## 4516 NA NA
## 4517 NA NA
## 4518 NA NA
## 4519 NA NA
## 4520 NA NA
## 4521 NA NA
## 4522 NA NA
## 4523 NA NA
## 4524 NA NA
## 4525 NA NA
## 4526 NA NA
## 4527 NA NA
## 4528 NA NA
## 4529 NA NA
## 4530 NA NA
## 4531 NA NA
## 4532 NA NA
## 4533 NA NA
## 4534 NA NA
## 4535 NA NA
## 4536 NA NA
## 4537 NA NA
## 4538 NA NA
## 4539 NA NA
## 4540 NA NA
## 4541 NA NA
## 4542 NA NA
## 4543 NA NA
## 4544 NA NA
## 4545 NA NA
## 4546 NA NA
## 4547 NA NA
## 4548 NA NA
## 4549 NA NA
## 4550 NA NA
## 4551 NA NA
## 4552 NA NA
## 4553 NA NA
## 4554 NA NA
## 4555 NA NA
## 4556 NA NA
## 4557 NA NA
## 4558 NA NA
## 4559 NA NA
## 4560 NA NA
## 4561 NA NA
## 4562 NA NA
## 4563 NA NA
## 4564 NA NA
## 4565 NA NA
## 4566 NA NA
## 4567 NA NA
## 4568 NA NA
## 4569 NA NA
## 4570 NA NA
## 4571 NA NA
## 4572 NA NA
## 4573 NA NA
## 4574 NA NA
## 4575 NA NA
## 4576 NA NA
## 4577 NA NA
## 4578 NA NA
## 4579 NA NA
## 4580 NA NA
## 4581 NA NA
## 4582 NA NA
## 4583 NA NA
## 4584 NA NA
## 4585 NA NA
## 4586 NA NA
## 4587 NA NA
## 4588 NA NA
## 4589 NA NA
## 4590 NA NA
## 4591 NA NA
## 4592 NA NA
## 4593 NA NA
## 4594 NA NA
## 4595 NA NA
## 4596 NA NA
## 4597 NA NA
## 4598 NA NA
## 4599 NA NA
## 4600 NA NA
## 4601 NA NA
## 4602 NA NA
## 4603 NA NA
## 4604 NA NA
## 4605 NA NA
## 4606 NA NA
## 4607 NA NA
## 4608 NA NA
## 4609 NA NA
## 4610 NA NA
## 4611 NA NA
## 4612 NA NA
## 4613 NA NA
## 4614 NA NA
## 4615 NA NA
## 4616 NA NA
## 4617 NA NA
## 4618 NA NA
## 4619 NA NA
## 4620 NA NA
## 4621 NA NA
## 4622 NA NA
## 4623 NA NA
## 4624 NA NA
## 4625 NA NA
## 4626 NA NA
## 4627 NA NA
## 4628 NA NA
## 4629 NA NA
## 4630 NA NA
## 4631 NA NA
## 4632 NA NA
## 4633 NA NA
## 4634 NA NA
## 4635 NA NA
## 4636 NA NA
## 4637 NA NA
## 4638 NA NA
## 4639 NA NA
## 4640 NA NA
## 4641 NA NA
## 4642 NA NA
## 4643 NA NA
## 4644 NA NA
## 4645 NA NA
## 4646 NA NA
## 4647 NA NA
## 4648 NA NA
## 4649 NA NA
## 4650 NA NA
## 4651 NA NA
## 4652 NA NA
## 4653 NA NA
## 4654 NA NA
## 4655 NA NA
## 4656 NA NA
## 4657 NA NA
## 4658 NA NA
## 4659 NA NA
## 4660 NA NA
## 4661 NA NA
## 4662 NA NA
## 4663 NA NA
## 4664 NA NA
## 4665 NA NA
## 4666 NA NA
## 4667 NA NA
## 4668 NA NA
## 4669 NA NA
## 4670 NA NA
## 4671 NA NA
## 4672 NA NA
## 4673 NA NA
## 4674 NA NA
## 4675 NA NA
## 4676 NA NA
## 4677 NA NA
## 4678 NA NA
## 4679 NA NA
## 4680 NA NA
## 4681 NA NA
## 4682 NA NA
## 4683 NA NA
## 4684 NA NA
## 4685 NA NA
## 4686 NA NA
## 4687 NA NA
## 4688 NA NA
## 4689 NA NA
## 4690 NA NA
## 4691 NA NA
## 4692 NA NA
## 4693 NA NA
## 4694 NA NA
## 4695 NA NA
## 4696 NA NA
## 4697 NA NA
## 4698 NA NA
## 4699 NA NA
## 4700 NA NA
## 4701 NA NA
## 4702 NA NA
## 4703 NA NA
## 4704 NA NA
## 4705 NA NA
## 4706 NA NA
## 4707 NA NA
## 4708 NA NA
## 4709 NA NA
## 4710 NA NA
## 4711 NA NA
## 4712 NA NA
## 4713 NA NA
## 4714 NA NA
## 4715 NA NA
## 4716 NA NA
## 4717 NA NA
## 4718 NA NA
## 4719 NA NA
## 4720 NA NA
## 4721 NA NA
## 4722 NA NA
## 4723 NA NA
## 4724 NA NA
## 4725 NA NA
## 4726 NA NA
## 4727 NA NA
## 4728 NA NA
## 4729 NA NA
## 4730 NA NA
## 4731 NA NA
## 4732 NA NA
## 4733 NA NA
## 4734 NA NA
## 4735 NA NA
## 4736 NA NA
## 4737 NA NA
## 4738 NA NA
## 4739 NA NA
## 4740 NA NA
## 4741 NA NA
## 4742 NA NA
## 4743 NA NA
## 4744 NA NA
## 4745 NA NA
## 4746 NA NA
## 4747 NA NA
## 4748 NA NA
## 4749 NA NA
## 4750 NA NA
## 4751 NA NA
## 4752 NA NA
## 4753 NA NA
## 4754 NA NA
## 4755 NA NA
## 4756 NA NA
## 4757 NA NA
## 4758 NA NA
## 4759 NA NA
## 4760 NA NA
## 4761 NA NA
## 4762 NA NA
## 4763 NA NA
## 4764 NA NA
## 4765 NA NA
## 4766 NA NA
## 4767 NA NA
## 4768 NA NA
## 4769 NA NA
## 4770 NA NA
## 4771 NA NA
## 4772 NA NA
## 4773 NA NA
## 4774 NA NA
## 4775 NA NA
## 4776 NA NA
## 4777 NA NA
## 4778 NA NA
## 4779 NA NA
## 4780 NA NA
## 4781 NA NA
## 4782 NA NA
## 4783 NA NA
## 4784 NA NA
## 4785 NA NA
## 4786 NA NA
## 4787 NA NA
## 4788 NA NA
## 4789 NA NA
## 4790 NA NA
## 4791 NA NA
## 4792 NA NA
## 4793 NA NA
## 4794 NA NA
## 4795 NA NA
## 4796 NA NA
## 4797 NA NA
## 4798 NA NA
## 4799 NA NA
## 4800 NA NA
## 4801 NA NA
## 4802 NA NA
## 4803 NA NA
## 4804 NA NA
## 4805 NA NA
## 4806 NA NA
## 4807 NA NA
## 4808 NA NA
## 4809 NA NA
## 4810 NA NA
## 4811 NA NA
## 4812 NA NA
## 4813 NA NA
## 4814 NA NA
## 4815 NA NA
## 4816 NA NA
## 4817 NA NA
## 4818 NA NA
## 4819 NA NA
## 4820 NA NA
## 4821 NA NA
## 4822 NA NA
## 4823 NA NA
## 4824 NA NA
## 4825 NA NA
## 4826 NA NA
## 4827 NA NA
## 4828 NA NA
## 4829 NA NA
## 4830 NA NA
## 4831 NA NA
## 4832 NA NA
## 4833 NA NA
## 4834 NA NA
## 4835 NA NA
## 4836 NA NA
## 4837 NA NA
## 4838 NA NA
## 4839 NA NA
## 4840 NA NA
## 4841 NA NA
## 4842 NA NA
## 4843 NA NA
## 4844 NA NA
## 4845 NA NA
## 4846 NA NA
## 4847 NA NA
## 4848 NA NA
## 4849 NA NA
## 4850 NA NA
## 4851 NA NA
## 4852 NA NA
## 4853 NA NA
## 4854 NA NA
## 4855 NA NA
## 4856 NA NA
## 4857 NA NA
## 4858 NA NA
## 4859 NA NA
## 4860 NA NA
## 4861 NA NA
## 4862 NA NA
## 4863 NA NA
## 4864 NA NA
## 4865 NA NA
## 4866 NA NA
## 4867 NA NA
## 4868 NA NA
## 4869 NA NA
## 4870 NA NA
## 4871 NA NA
## 4872 NA NA
## 4873 NA NA
## 4874 NA NA
## 4875 NA NA
## 4876 NA NA
## 4877 NA NA
## 4878 NA NA
## 4879 NA NA
## 4880 NA NA
## 4881 NA NA
## 4882 NA NA
## 4883 NA NA
## 4884 NA NA
## 4885 NA NA
## 4886 NA NA
## 4887 NA NA
## 4888 NA NA
## 4889 NA NA
## 4890 NA NA
## 4891 NA NA
## 4892 NA NA
## 4893 NA NA
## 4894 NA NA
## 4895 NA NA
## 4896 NA NA
## 4897 NA NA
## 4898 NA NA
## 4899 NA NA
## 4900 NA NA
## 4901 NA NA
## 4902 NA NA
## 4903 NA NA
## 4904 NA NA
## 4905 NA NA
## 4906 NA NA
## 4907 NA NA
## 4908 NA NA
## 4909 NA NA
## 4910 NA NA
## 4911 NA NA
## 4912 NA NA
## 4913 NA NA
## 4914 NA NA
## 4915 NA NA
## 4916 NA NA
## 4917 NA NA
## 4918 NA NA
## 4919 NA NA
## 4920 NA NA
## 4921 NA NA
## 4922 NA NA
## 4923 NA NA
## 4924 NA NA
## 4925 NA NA
## 4926 NA NA
## 4927 NA NA
## 4928 NA NA
## 4929 NA NA
## 4930 NA NA
## 4931 NA NA
## 4932 NA NA
## 4933 NA NA
## 4934 NA NA
## 4935 NA NA
## 4936 NA NA
## 4937 NA NA
## 4938 NA NA
## 4939 NA NA
## 4940 NA NA
## 4941 NA NA
## 4942 NA NA
## 4943 NA NA
## 4944 NA NA
## 4945 NA NA
## 4946 NA NA
## 4947 NA NA
## 4948 NA NA
## 4949 NA NA
## 4950 NA NA
## 4951 NA NA
## 4952 NA NA
## 4953 NA NA
## 4954 NA NA
## 4955 NA NA
## 4956 NA NA
## 4957 NA NA
## 4958 NA NA
## 4959 NA NA
## 4960 NA NA
## 4961 NA NA
## 4962 NA NA
## 4963 NA NA
## 4964 NA NA
## 4965 NA NA
## 4966 NA NA
## 4967 NA NA
## 4968 NA NA
## 4969 NA NA
## 4970 NA NA
## 4971 NA NA
## 4972 NA NA
## 4973 NA NA
## 4974 NA NA
## 4975 NA NA
## 4976 NA NA
## 4977 NA NA
## 4978 NA NA
## 4979 NA NA
## 4980 NA NA
## 4981 NA NA
## 4982 NA NA
## 4983 NA NA
## 4984 NA NA
## 4985 NA NA
## 4986 NA NA
## 4987 NA NA
## 4988 NA NA
## 4989 NA NA
## 4990 NA NA
## 4991 NA NA
## 4992 NA NA
## 4993 NA NA
## 4994 NA NA
## 4995 NA NA
## 4996 NA NA
## 4997 NA NA
## 4998 NA NA
## 4999 NA NA
## 5000 NA NA
## 5001 NA NA
## 5002 NA NA
## 5003 NA NA
## 5004 NA NA
## 5005 NA NA
## 5006 NA NA
## 5007 NA NA
## 5008 NA NA
## 5009 NA NA
## 5010 NA NA
## 5011 NA NA
## 5012 NA NA
## 5013 NA NA
## 5014 NA NA
## 5015 NA NA
## 5016 NA NA
## 5017 NA NA
## 5018 NA NA
## 5019 NA NA
## 5020 NA NA
## 5021 NA NA
## 5022 NA NA
## 5023 NA NA
## 5024 NA NA
## 5025 NA NA
## 5026 NA NA
## 5027 NA NA
## 5028 NA NA
## 5029 NA NA
## 5030 NA NA
## 5031 NA NA
## 5032 NA NA
## 5033 NA NA
## 5034 NA NA
## 5035 NA NA
## 5036 NA NA
## 5037 NA NA
## 5038 NA NA
## 5039 NA NA
## 5040 NA NA
## 5041 NA NA
## 5042 NA NA
## 5043 NA NA
## 5044 NA NA
## 5045 NA NA
## 5046 NA NA
## 5047 NA NA
## 5048 NA NA
## 5049 NA NA
## 5050 NA NA
## 5051 NA NA
## 5052 NA NA
## 5053 NA NA
## 5054 NA NA
## 5055 NA NA
## 5056 NA NA
## 5057 NA NA
## 5058 NA NA
## 5059 NA NA
## 5060 NA NA
## 5061 NA NA
## 5062 NA NA
## 5063 NA NA
## 5064 NA NA
## 5065 NA NA
## 5066 NA NA
## 5067 NA NA
## 5068 NA NA
## 5069 NA NA
## 5070 NA NA
## 5071 NA NA
## 5072 NA NA
## 5073 NA NA
## 5074 NA NA
## 5075 NA NA
## 5076 NA NA
## 5077 NA NA
## 5078 NA NA
## 5079 NA NA
## 5080 NA NA
## 5081 NA NA
## 5082 NA NA
## 5083 NA NA
## 5084 NA NA
## 5085 NA NA
## 5086 NA NA
## 5087 NA NA
## 5088 NA NA
## 5089 NA NA
## 5090 NA NA
## 5091 NA NA
## 5092 NA NA
## 5093 NA NA
## 5094 NA NA
## 5095 NA NA
## 5096 NA NA
## 5097 NA NA
## 5098 NA NA
## 5099 NA NA
## 5100 NA NA
## 5101 NA NA
## 5102 NA NA
## 5103 NA NA
## 5104 NA NA
## 5105 NA NA
## 5106 NA NA
## 5107 NA NA
## 5108 NA NA
## 5109 NA NA
## 5110 NA NA
## 5111 NA NA
## 5112 NA NA
## 5113 NA NA
## 5114 NA NA
## 5115 NA NA
## 5116 NA NA
## 5117 NA NA
## 5118 NA NA
## 5119 NA NA
## 5120 NA NA
## 5121 NA NA
## 5122 NA NA
## 5123 NA NA
## 5124 NA NA
## 5125 NA NA
## 5126 NA NA
## 5127 NA NA
## 5128 NA NA
## 5129 NA NA
## 5130 NA NA
## 5131 NA NA
## 5132 NA NA
## 5133 NA NA
## 5134 NA NA
## 5135 NA NA
## 5136 NA NA
## 5137 NA NA
## 5138 NA NA
## 5139 NA NA
## 5140 NA NA
## 5141 NA NA
## 5142 NA NA
## 5143 NA NA
## 5144 NA NA
## 5145 NA NA
## 5146 NA NA
## 5147 NA NA
## 5148 NA NA
## 5149 NA NA
## 5150 NA NA
## 5151 NA NA
## 5152 NA NA
## 5153 NA NA
## 5154 NA NA
## 5155 NA NA
## 5156 NA NA
## 5157 NA NA
## 5158 NA NA
## 5159 NA NA
## 5160 NA NA
## 5161 NA NA
## 5162 NA NA
## 5163 NA NA
## 5164 NA NA
## 5165 NA NA
## 5166 NA NA
## 5167 NA NA
## 5168 NA NA
## 5169 NA NA
## 5170 NA NA
## 5171 NA NA
## 5172 NA NA
## 5173 NA NA
## 5174 NA NA
## 5175 NA NA
## 5176 NA NA
## 5177 NA NA
## 5178 NA NA
## 5179 NA NA
## 5180 NA NA
## 5181 NA NA
## 5182 NA NA
## 5183 NA NA
## 5184 NA NA
## 5185 NA NA
## 5186 NA NA
## 5187 NA NA
## 5188 NA NA
## 5189 NA NA
## 5190 NA NA
## 5191 NA NA
## 5192 NA NA
## 5193 NA NA
## 5194 NA NA
## 5195 NA NA
## 5196 NA NA
## 5197 NA NA
## 5198 NA NA
## 5199 NA NA
## 5200 NA NA
## 5201 NA NA
## 5202 NA NA
## 5203 NA NA
## 5204 NA NA
## 5205 NA NA
## 5206 NA NA
## 5207 NA NA
## 5208 NA NA
## 5209 NA NA
## 5210 NA NA
## 5211 NA NA
## 5212 NA NA
## 5213 NA NA
## 5214 NA NA
## 5215 NA NA
## 5216 NA NA
## 5217 NA NA
## 5218 NA NA
## 5219 NA NA
## 5220 NA NA
## 5221 NA NA
## 5222 NA NA
## 5223 NA NA
## 5224 NA NA
## 5225 NA NA
## 5226 NA NA
## 5227 NA NA
## 5228 NA NA
## 5229 NA NA
## 5230 NA NA
## 5231 NA NA
## 5232 NA NA
## 5233 NA NA
## 5234 NA NA
## 5235 NA NA
## 5236 NA NA
## 5237 NA NA
## 5238 NA NA
## 5239 NA NA
## 5240 NA NA
## 5241 NA NA
## 5242 NA NA
## 5243 NA NA
## 5244 NA NA
## 5245 NA NA
## 5246 NA NA
## 5247 NA NA
## 5248 NA NA
## 5249 NA NA
## 5250 NA NA
## 5251 NA NA
## 5252 NA NA
## 5253 NA NA
## 5254 NA NA
## 5255 NA NA
## 5256 NA NA
## 5257 NA NA
## 5258 NA NA
## 5259 NA NA
## 5260 NA NA
## 5261 NA NA
## 5262 NA NA
## 5263 NA NA
## 5264 NA NA
## 5265 NA NA
## 5266 NA NA
## 5267 NA NA
## 5268 NA NA
## 5269 NA NA
## 5270 NA NA
## 5271 NA NA
## 5272 NA NA
## 5273 NA NA
## 5274 NA NA
## 5275 NA NA
## 5276 NA NA
## 5277 NA NA
## 5278 NA NA
## 5279 NA NA
## 5280 NA NA
## 5281 NA NA
## 5282 NA NA
## 5283 NA NA
## 5284 NA NA
## 5285 NA NA
## 5286 NA NA
## 5287 NA NA
## 5288 NA NA
## 5289 NA NA
## 5290 NA NA
## 5291 NA NA
## 5292 NA NA
## 5293 NA NA
## 5294 NA NA
## 5295 NA NA
## 5296 NA NA
## 5297 NA NA
## 5298 NA NA
## 5299 NA NA
## 5300 NA NA
## 5301 NA NA
## 5302 NA NA
## 5303 NA NA
## 5304 NA NA
## 5305 NA NA
## 5306 NA NA
## 5307 NA NA
## 5308 NA NA
## 5309 NA NA
## 5310 NA NA
## 5311 NA NA
## 5312 NA NA
## 5313 NA NA
## 5314 NA NA
## 5315 NA NA
## 5316 NA NA
## 5317 NA NA
## 5318 NA NA
## 5319 NA NA
## 5320 NA NA
## 5321 NA NA
## 5322 NA NA
## 5323 NA NA
## 5324 NA NA
## 5325 NA NA
## 5326 NA NA
## 5327 NA NA
## 5328 NA NA
## 5329 NA NA
## 5330 NA NA
## 5331 NA NA
## 5332 NA NA
## 5333 NA NA
## 5334 NA NA
## 5335 NA NA
## 5336 NA NA
## 5337 NA NA
## 5338 NA NA
## 5339 NA NA
## 5340 NA NA
## 5341 NA NA
## 5342 NA NA
## 5343 NA NA
## 5344 NA NA
## 5345 NA NA
## 5346 NA NA
## 5347 NA NA
## 5348 NA NA
## 5349 NA NA
## 5350 NA NA
## 5351 NA NA
## 5352 NA NA
## 5353 NA NA
## 5354 NA NA
## 5355 NA NA
## 5356 NA NA
## 5357 NA NA
## 5358 NA NA
## 5359 NA NA
## 5360 NA NA
## 5361 NA NA
## 5362 NA NA
## 5363 NA NA
## 5364 NA NA
## 5365 NA NA
## 5366 NA NA
## 5367 NA NA
## 5368 NA NA
## 5369 NA NA
## 5370 NA NA
## 5371 NA NA
## 5372 NA NA
## 5373 NA NA
## 5374 NA NA
## 5375 NA NA
## 5376 NA NA
## 5377 NA NA
## 5378 NA NA
## 5379 NA NA
## 5380 NA NA
## 5381 NA NA
## 5382 NA NA
## 5383 NA NA
## 5384 NA NA
## 5385 NA NA
## 5386 NA NA
## 5387 NA NA
## 5388 NA NA
## 5389 NA NA
## 5390 NA NA
## 5391 NA NA
## 5392 NA NA
## 5393 NA NA
## 5394 NA NA
## 5395 NA NA
## 5396 NA NA
## 5397 NA NA
## 5398 NA NA
## 5399 NA NA
## 5400 NA NA
## 5401 NA NA
## 5402 NA NA
## 5403 NA NA
## 5404 NA NA
## 5405 NA NA
## 5406 NA NA
## 5407 NA NA
## 5408 NA NA
## 5409 NA NA
## 5410 NA NA
## 5411 NA NA
## 5412 NA NA
## 5413 NA NA
## 5414 NA NA
## 5415 NA NA
## 5416 NA NA
## 5417 NA NA
## 5418 NA NA
## 5419 NA NA
## 5420 NA NA
## 5421 NA NA
## 5422 NA NA
## 5423 NA NA
## 5424 NA NA
## 5425 NA NA
## 5426 NA NA
## 5427 NA NA
## 5428 NA NA
## 5429 NA NA
## 5430 NA NA
## 5431 NA NA
## 5432 NA NA
## 5433 NA NA
## 5434 NA NA
## 5435 NA NA
## 5436 NA NA
## 5437 NA NA
## 5438 NA NA
## 5439 NA NA
## 5440 NA NA
## 5441 NA NA
## 5442 NA NA
## 5443 NA NA
## 5444 NA NA
## 5445 NA NA
## 5446 NA NA
## 5447 NA NA
## 5448 NA NA
## 5449 NA NA
## 5450 NA NA
## 5451 NA NA
## 5452 NA NA
## 5453 NA NA
## 5454 NA NA
## 5455 NA NA
## 5456 NA NA
## 5457 NA NA
## 5458 NA NA
## 5459 NA NA
## 5460 NA NA
## 5461 NA NA
## 5462 NA NA
## 5463 NA NA
## 5464 NA NA
## 5465 NA NA
## 5466 NA NA
## 5467 NA NA
## 5468 NA NA
## 5469 NA NA
## 5470 NA NA
## 5471 NA NA
## 5472 NA NA
## 5473 NA NA
## 5474 NA NA
## 5475 NA NA
## 5476 NA NA
## 5477 NA NA
## 5478 NA NA
## 5479 NA NA
## 5480 NA NA
## 5481 NA NA
## 5482 NA NA
## 5483 NA NA
## 5484 NA NA
## 5485 NA NA
## 5486 NA NA
## 5487 NA NA
## 5488 NA NA
## 5489 NA NA
## 5490 NA NA
## 5491 NA NA
## 5492 NA NA
## 5493 NA NA
## 5494 NA NA
## 5495 NA NA
## 5496 NA NA
## 5497 NA NA
## 5498 NA NA
## 5499 NA NA
## 5500 NA NA
## 5501 NA NA
## 5502 NA NA
## 5503 NA NA
## 5504 NA NA
## 5505 NA NA
## 5506 NA NA
## 5507 NA NA
## 5508 NA NA
## 5509 NA NA
## 5510 NA NA
## 5511 NA NA
## 5512 NA NA
## 5513 NA NA
## 5514 NA NA
## 5515 NA NA
## 5516 NA NA
## 5517 NA NA
## 5518 NA NA
## 5519 NA NA
## 5520 NA NA
## 5521 NA NA
## 5522 NA NA
## 5523 NA NA
## 5524 NA NA
## 5525 NA NA
## 5526 NA NA
## 5527 NA NA
## 5528 NA NA
## 5529 NA NA
## 5530 NA NA
## 5531 NA NA
## 5532 NA NA
## 5533 NA NA
## 5534 NA NA
## 5535 NA NA
## 5536 NA NA
## 5537 NA NA
## 5538 NA NA
## 5539 NA NA
## 5540 NA NA
## 5541 NA NA
## 5542 NA NA
## 5543 NA NA
## 5544 NA NA
## 5545 NA NA
## 5546 NA NA
## 5547 NA NA
## 5548 NA NA
## 5549 NA NA
## 5550 NA NA
## 5551 NA NA
## 5552 NA NA
## 5553 NA NA
## 5554 NA NA
## 5555 NA NA
## 5556 NA NA
## 5557 NA NA
## 5558 NA NA
## 5559 NA NA
## 5560 NA NA
## 5561 NA NA
## 5562 NA NA
## 5563 NA NA
## 5564 NA NA
## 5565 NA NA
## 5566 NA NA
## 5567 NA NA
## 5568 NA NA
## 5569 NA NA
## 5570 NA NA
## 5571 NA NA
## 5572 NA NA
## 5573 NA NA
## 5574 NA NA
## 5575 NA NA
## 5576 NA NA
## 5577 NA NA
## 5578 NA NA
## 5579 NA NA
## 5580 NA NA
## 5581 NA NA
## 5582 NA NA
## 5583 NA NA
## 5584 NA NA
## 5585 NA NA
## 5586 NA NA
## 5587 NA NA
## 5588 NA NA
## 5589 NA NA
## 5590 NA NA
## 5591 NA NA
## 5592 NA NA
## 5593 NA NA
## 5594 NA NA
## 5595 NA NA
## 5596 NA NA
## 5597 NA NA
## 5598 NA NA
## 5599 NA NA
## 5600 NA NA
A simple interpretation of base weights it ‘the number of units in our population that each unit in our sample represents’. There is a simple but important test that we should perform after computing base weights. The sum of all base weights should be equal to the total number of units in our population. The ESS dataset for UK only included sampling probabilities for respondents (i.e. sampled units that responded to the survey!) but they did not include sampling probabilities of non-respondents. I would guess that this is because sampling probability depends on information that is obtained from the interview (i.e. number of people in household, number of households in dwelling, etc.). Not knowing the sampling probability for some sampled units is not an optimal situation.
The sum of our computed weights in the ESS dataset with 2265 respondents equals 21338524. Doing a very simple Extrapolation to include the 3335 non-respondents would give us a sum of weights equal to 52757498.6313466. This last figure would be much closer to the total UK population over 15.
It is a common practice for many researchers to scale the weights so that their sum equals the sample size (instead of the populatio size). This would be especially true when they do not know the sampling probabilities of some sampled units and when they plan to do post-stratification adjustments (see step 3). Scaled weights would equally adjust for differences in sampling probabilities.
Here we compute our scaled weights and we compare them with the ones given in the ESS dataset. Here we see that our weights scaled (base.weigth.scaled) are almost equal to those computed in the ESS dataset (dweigth). The small differences are probably due to rounding error.
data %>%
filter(!is.na(base.weight)) %>%
select(idno, base.weight) %>%
mutate(base.weight.scaled = base.weight/sum(base.weight, na.rm = T)*nrow(data[!is.na(data$prob),])) %>%
left_join(original.weights %>% select(idno, dweight),
by = "idno")
## idno base.weight base.weight.scaled dweight
## 1 100000003 4924.613 0.5224974 0.5267960
## 2 100000005 4924.613 0.5224974 0.5267960
## 3 100000008 4924.613 0.5224974 0.5267960
## 4 100000009 19698.452 2.0899897 2.1071842
## 5 100000010 9849.226 1.0449949 1.0535921
## 6 100000012 9849.226 1.0449949 1.0535921
## 7 100000015 9849.226 1.0449949 1.0535921
## 8 100000016 4924.613 0.5224974 0.5267960
## 9 100000017 9849.226 1.0449949 1.0535921
## 10 100000020 9849.226 1.0449949 1.0535921
## 11 100000022 9849.226 1.0449949 1.0535921
## 12 100000023 14773.839 1.5674923 1.5803881
## 13 100000025 4924.613 0.5224974 0.5267960
## 14 100000030 9849.226 1.0449949 1.0535921
## 15 100000031 9849.226 1.0449949 1.0535921
## 16 100000033 9849.226 1.0449949 1.0535921
## 17 100000034 4924.613 0.5224974 0.5267960
## 18 100000036 44321.517 4.7024769 4.0000000
## 19 100000037 9849.226 1.0449949 1.0535921
## 20 100000041 9849.226 1.0449949 1.0535921
## 21 100000043 9849.226 1.0449949 1.0535921
## 22 100000046 9849.226 1.0449949 1.0535921
## 23 100000047 4924.613 0.5224974 0.5267960
## 24 100000048 9849.226 1.0449949 1.0535921
## 25 100000050 9849.226 1.0449949 1.0535921
## 26 100000052 4924.613 0.5224974 0.5267960
## 27 100000053 9849.226 1.0449949 1.0535921
## 28 100000054 9849.226 1.0449949 1.0535921
## 29 100000055 4924.613 0.5224974 0.5267960
## 30 100000057 4924.613 0.5224974 0.5267960
## 31 100000062 9849.226 1.0449949 1.0535921
## 32 100000063 9849.226 1.0449949 1.0535921
## 33 100000067 24623.065 2.6124871 2.6339802
## 34 100000070 4924.613 0.5224974 0.5267960
## 35 100000071 9849.226 1.0449949 1.0535921
## 36 100000073 9849.226 1.0449949 1.0535921
## 37 100000075 9849.226 1.0449949 1.0535921
## 38 100000076 4924.613 0.5224974 0.5267960
## 39 100000077 4924.613 0.5224974 0.5267960
## 40 100000080 9849.226 1.0449949 1.0535921
## 41 100000084 14773.839 1.5674923 1.5803881
## 42 100000085 19698.452 2.0899897 2.1071842
## 43 100000086 4924.613 0.5224974 0.5267960
## 44 100000088 9849.226 1.0449949 1.0535921
## 45 100000089 4924.613 0.5224974 0.5267960
## 46 100000091 9849.226 1.0449949 1.0535921
## 47 100000095 9849.226 1.0449949 1.0535921
## 48 100000096 9849.226 1.0449949 1.0535921
## 49 100000103 9849.226 1.0449949 1.0535921
## 50 100000104 9849.226 1.0449949 1.0535921
## 51 100000107 9849.226 1.0449949 1.0535921
## 52 100000108 9849.226 1.0449949 1.0535921
## 53 100000109 4924.613 0.5224974 0.5267960
## 54 100000110 9849.226 1.0449949 1.0535921
## 55 100000111 4924.613 0.5224974 0.5267960
## 56 100000113 4924.613 0.5224974 0.5267960
## 57 100000115 4924.613 0.5224974 0.5267960
## 58 100000121 49246.130 5.2249743 4.0000000
## 59 100000122 9849.226 1.0449949 1.0535921
## 60 100000123 14773.839 1.5674923 1.5803881
## 61 100000124 4924.613 0.5224974 0.5267960
## 62 100000126 9849.226 1.0449949 1.0535921
## 63 100000127 4924.613 0.5224974 0.5267960
## 64 100000139 9849.226 1.0449949 1.0535921
## 65 100000141 4924.613 0.5224974 0.5267960
## 66 100000143 9849.226 1.0449949 1.0535921
## 67 100000145 9849.226 1.0449949 1.0535921
## 68 100000147 4924.613 0.5224974 0.5267960
## 69 100000148 24623.065 2.6124871 2.6339802
## 70 100000152 9849.226 1.0449949 1.0535921
## 71 100000153 14773.839 1.5674923 1.5803881
## 72 100000156 9849.226 1.0449949 1.0535921
## 73 100000157 9849.226 1.0449949 1.0535921
## 74 100000158 4924.613 0.5224974 0.5267960
## 75 100000159 9849.226 1.0449949 1.0535921
## 76 100000167 29547.678 3.1349846 3.1607763
## 77 100000168 4924.613 0.5224974 0.5267960
## 78 100000170 9849.226 1.0449949 1.0535921
## 79 100000171 9849.226 1.0449949 1.0535921
## 80 100000174 19698.452 2.0899897 2.1071842
## 81 100000175 9849.226 1.0449949 1.0535921
## 82 100000176 9849.226 1.0449949 1.0535921
## 83 100000180 9849.226 1.0449949 1.0535921
## 84 100000181 9849.226 1.0449949 1.0535921
## 85 100000182 4924.613 0.5224974 0.5267960
## 86 100000183 9849.226 1.0449949 1.0535921
## 87 100000184 9849.226 1.0449949 1.0535921
## 88 100000185 9849.226 1.0449949 1.0535921
## 89 100000186 14773.839 1.5674923 1.5803881
## 90 100000189 9849.226 1.0449949 1.0535921
## 91 100000193 4924.613 0.5224974 0.5267960
## 92 100000197 9849.226 1.0449949 1.0535921
## 93 100000205 9849.226 1.0449949 1.0535921
## 94 100000207 4924.613 0.5224974 0.5267960
## 95 100000208 19698.452 2.0899897 2.1071842
## 96 100000211 4924.613 0.5224974 0.5267960
## 97 100000212 4924.613 0.5224974 0.5267960
## 98 100000213 4924.613 0.5224974 0.5267960
## 99 100000219 9849.226 1.0449949 1.0535921
## 100 100000221 4924.613 0.5224974 0.5267960
## 101 100000224 9849.226 1.0449949 1.0535921
## 102 100000225 9849.226 1.0449949 1.0535921
## 103 100000227 9849.226 1.0449949 1.0535921
## 104 100000229 9849.226 1.0449949 1.0535921
## 105 100000231 9849.226 1.0449949 1.0535921
## 106 100000235 9849.226 1.0449949 1.0535921
## 107 100000240 4924.613 0.5224974 0.5267960
## 108 100000248 9849.226 1.0449949 1.0535921
## 109 100000250 4924.613 0.5224974 0.5267960
## 110 100000251 9849.226 1.0449949 1.0535921
## 111 100000253 4924.613 0.5224974 0.5267960
## 112 100000256 14773.839 1.5674923 1.5803881
## 113 100000261 9849.226 1.0449949 1.0535921
## 114 100000263 4924.613 0.5224974 0.5267960
## 115 100000264 9849.226 1.0449949 1.0535921
## 116 100000265 4924.613 0.5224974 0.5267960
## 117 100000266 9849.226 1.0449949 1.0535921
## 118 100000267 9849.226 1.0449949 1.0535921
## 119 100000268 44321.517 4.7024769 4.0000000
## 120 100000269 9849.226 1.0449949 1.0535921
## 121 100000270 9849.226 1.0449949 1.0535921
## 122 100000271 9849.226 1.0449949 1.0535921
## 123 100000272 4924.613 0.5224974 0.5267960
## 124 100000275 4924.613 0.5224974 0.5267960
## 125 100000276 4924.613 0.5224974 0.5267960
## 126 100000279 4924.613 0.5224974 0.5267960
## 127 100000281 9849.226 1.0449949 1.0535921
## 128 100000283 9849.226 1.0449949 1.0535921
## 129 100000284 9849.226 1.0449949 1.0535921
## 130 100000285 54170.743 5.7474717 4.0000000
## 131 100000288 4924.613 0.5224974 0.5267960
## 132 100000289 4924.613 0.5224974 0.5267960
## 133 100000290 9849.226 1.0449949 1.0535921
## 134 100000298 4924.613 0.5224974 0.5267960
## 135 100000300 9849.226 1.0449949 1.0535921
## 136 100000302 9849.226 1.0449949 1.0535921
## 137 100000303 14773.839 1.5674923 1.5803881
## 138 100000304 4924.613 0.5224974 0.5267960
## 139 100000305 4924.613 0.5224974 0.5267960
## 140 100000306 4924.613 0.5224974 0.5267960
## 141 100000313 9849.226 1.0449949 1.0535921
## 142 100000314 19698.452 2.0899897 2.1071842
## 143 100000321 4924.613 0.5224974 0.5267960
## 144 100000322 4924.613 0.5224974 0.5267960
## 145 100000326 9849.226 1.0449949 1.0535921
## 146 100000329 9849.226 1.0449949 1.0535921
## 147 100000331 9849.226 1.0449949 1.0535921
## 148 100000333 4924.613 0.5224974 0.5267960
## 149 100000334 9849.226 1.0449949 1.0535921
## 150 100000335 9849.226 1.0449949 1.0535921
## 151 100000341 14773.839 1.5674923 1.5803881
## 152 100000344 14773.839 1.5674923 1.5803881
## 153 100000348 4924.613 0.5224974 0.5267960
## 154 100000350 9849.226 1.0449949 1.0535921
## 155 100000352 9849.226 1.0449949 1.0535921
## 156 100000357 9849.226 1.0449949 1.0535921
## 157 100000358 9849.226 1.0449949 1.0535921
## 158 100000359 4924.613 0.5224974 0.5267960
## 159 100000360 4924.613 0.5224974 0.5267960
## 160 100000365 19698.452 2.0899897 2.1071842
## 161 100000371 9849.226 1.0449949 1.0535921
## 162 100000374 9849.226 1.0449949 1.0535921
## 163 100000375 4924.613 0.5224974 0.5267960
## 164 100000376 4924.613 0.5224974 0.5267960
## 165 100000379 4924.613 0.5224974 0.5267960
## 166 100000386 4924.613 0.5224974 0.5267960
## 167 100000387 9849.226 1.0449949 1.0535921
## 168 100000389 4924.613 0.5224974 0.5267960
## 169 100000390 9849.226 1.0449949 1.0535921
## 170 100000392 9849.226 1.0449949 1.0535921
## 171 100000393 9849.226 1.0449949 1.0535921
## 172 100000395 14773.839 1.5674923 1.5803881
## 173 100000396 4924.613 0.5224974 0.5267960
## 174 100000398 9849.226 1.0449949 1.0535921
## 175 100000400 4924.613 0.5224974 0.5267960
## 176 100000401 9849.226 1.0449949 1.0535921
## 177 100000403 4924.613 0.5224974 0.5267960
## 178 100000405 4924.613 0.5224974 0.5267960
## 179 100000408 4924.613 0.5224974 0.5267960
## 180 100000411 4924.613 0.5224974 0.5267960
## 181 100000412 4924.613 0.5224974 0.5267960
## 182 100000415 4924.613 0.5224974 0.5267960
## 183 100000417 4924.613 0.5224974 0.5267960
## 184 100000418 9849.226 1.0449949 1.0535921
## 185 100000420 9849.226 1.0449949 1.0535921
## 186 100000421 9849.226 1.0449949 1.0535921
## 187 100000422 14773.839 1.5674923 1.5803881
## 188 100000423 4924.613 0.5224974 0.5267960
## 189 100000425 9849.226 1.0449949 1.0535921
## 190 100000427 4924.613 0.5224974 0.5267960
## 191 100000430 14773.839 1.5674923 1.5803881
## 192 100000431 9849.226 1.0449949 1.0535921
## 193 100000435 9849.226 1.0449949 1.0535921
## 194 100000439 44321.517 4.7024769 4.0000000
## 195 100000441 9849.226 1.0449949 1.0535921
## 196 100000449 9849.226 1.0449949 1.0535921
## 197 100000450 4924.613 0.5224974 0.5267960
## 198 100000451 9849.226 1.0449949 1.0535921
## 199 100000452 9849.226 1.0449949 1.0535921
## 200 100000453 19698.452 2.0899897 2.1071842
## 201 100000454 9849.226 1.0449949 1.0535921
## 202 100000456 9849.226 1.0449949 1.0535921
## 203 100000457 9849.226 1.0449949 1.0535921
## 204 100000462 4924.613 0.5224974 0.5267960
## 205 100000463 9849.226 1.0449949 1.0535921
## 206 100000464 4924.613 0.5224974 0.5267960
## 207 100000465 9849.226 1.0449949 1.0535921
## 208 100000467 4924.613 0.5224974 0.5267960
## 209 100000468 9849.226 1.0449949 1.0535921
## 210 100000470 19698.452 2.0899897 2.1071842
## 211 100000471 4924.613 0.5224974 0.5267960
## 212 100000474 9849.226 1.0449949 1.0535921
## 213 100000475 4924.613 0.5224974 0.5267960
## 214 100000477 9849.226 1.0449949 1.0535921
## 215 100000478 9849.226 1.0449949 1.0535921
## 216 100000479 9849.226 1.0449949 1.0535921
## 217 100000480 4924.613 0.5224974 0.5267960
## 218 100000481 9849.226 1.0449949 1.0535921
## 219 100000482 4924.613 0.5224974 0.5267960
## 220 100000485 9849.226 1.0449949 1.0535921
## 221 100000490 9849.226 1.0449949 1.0535921
## 222 100000491 19698.452 2.0899897 2.1071842
## 223 100000494 4924.613 0.5224974 0.5267960
## 224 100000495 4924.613 0.5224974 0.5267960
## 225 100000500 9849.226 1.0449949 1.0535921
## 226 100000501 4924.613 0.5224974 0.5267960
## 227 100000502 9849.226 1.0449949 1.0535921
## 228 100000503 19698.452 2.0899897 2.1071842
## 229 100000511 9849.226 1.0449949 1.0535921
## 230 100000512 9849.226 1.0449949 1.0535921
## 231 100000514 4924.613 0.5224974 0.5267960
## 232 100000515 9849.226 1.0449949 1.0535921
## 233 100000516 4924.613 0.5224974 0.5267960
## 234 100000517 9849.226 1.0449949 1.0535921
## 235 100000518 9849.226 1.0449949 1.0535921
## 236 100000521 9849.226 1.0449949 1.0535921
## 237 100000523 9849.226 1.0449949 1.0535921
## 238 100000524 9849.226 1.0449949 1.0535921
## 239 100000528 9849.226 1.0449949 1.0535921
## 240 100000529 4924.613 0.5224974 0.5267960
## 241 100000531 4924.613 0.5224974 0.5267960
## 242 100000532 4924.613 0.5224974 0.5267960
## 243 100000535 19698.452 2.0899897 2.1071842
## 244 100000538 4924.613 0.5224974 0.5267960
## 245 100000539 9849.226 1.0449949 1.0535921
## 246 100000541 4924.613 0.5224974 0.5267960
## 247 100000544 14773.839 1.5674923 1.5803881
## 248 100000545 4924.613 0.5224974 0.5267960
## 249 100000548 4924.613 0.5224974 0.5267960
## 250 100000550 9849.226 1.0449949 1.0535921
## 251 100000554 9849.226 1.0449949 1.0535921
## 252 100000556 9849.226 1.0449949 1.0535921
## 253 100000558 9849.226 1.0449949 1.0535921
## 254 100000559 9849.226 1.0449949 1.0535921
## 255 100000560 9849.226 1.0449949 1.0535921
## 256 100000561 14773.839 1.5674923 1.5803881
## 257 100000562 4924.613 0.5224974 0.5267960
## 258 100000564 9849.226 1.0449949 1.0535921
## 259 100000565 4924.613 0.5224974 0.5267960
## 260 100000567 9849.226 1.0449949 1.0535921
## 261 100000570 4924.613 0.5224974 0.5267960
## 262 100000574 4924.613 0.5224974 0.5267960
## 263 100000575 9849.226 1.0449949 1.0535921
## 264 100000576 4924.613 0.5224974 0.5267960
## 265 100000577 9849.226 1.0449949 1.0535921
## 266 100000580 4924.613 0.5224974 0.5267960
## 267 100000581 14773.839 1.5674923 1.5803881
## 268 100000583 4924.613 0.5224974 0.5267960
## 269 100000584 4924.613 0.5224974 0.5267960
## 270 100000586 19698.452 2.0899897 2.1071842
## 271 100000589 9849.226 1.0449949 1.0535921
## 272 100000590 9849.226 1.0449949 1.0535921
## 273 100000591 4924.613 0.5224974 0.5267960
## 274 100000593 9849.226 1.0449949 1.0535921
## 275 100000594 9849.226 1.0449949 1.0535921
## 276 100000595 4924.613 0.5224974 0.5267960
## 277 100000596 4924.613 0.5224974 0.5267960
## 278 100000599 9849.226 1.0449949 1.0535921
## 279 100000600 24623.065 2.6124871 2.6339802
## 280 100000602 9849.226 1.0449949 1.0535921
## 281 100000607 4924.613 0.5224974 0.5267960
## 282 100000608 19698.452 2.0899897 2.1071842
## 283 100000609 9849.226 1.0449949 1.0535921
## 284 100000613 9849.226 1.0449949 1.0535921
## 285 100000615 9849.226 1.0449949 1.0535921
## 286 100000617 9849.226 1.0449949 1.0535921
## 287 100000621 4924.613 0.5224974 0.5267960
## 288 100000622 4924.613 0.5224974 0.5267960
## 289 100000623 9849.226 1.0449949 1.0535921
## 290 100000626 9849.226 1.0449949 1.0535921
## 291 100000632 9849.226 1.0449949 1.0535921
## 292 100000634 9849.226 1.0449949 1.0535921
## 293 100000635 9849.226 1.0449949 1.0535921
## 294 100000637 9849.226 1.0449949 1.0535921
## 295 100000638 14773.839 1.5674923 1.5803881
## 296 100000639 9849.226 1.0449949 1.0535921
## 297 100000641 9849.226 1.0449949 1.0535921
## 298 100000642 4924.613 0.5224974 0.5267960
## 299 100000645 9849.226 1.0449949 1.0535921
## 300 100000646 9849.226 1.0449949 1.0535921
## 301 100000648 9849.226 1.0449949 1.0535921
## 302 100000650 9849.226 1.0449949 1.0535921
## 303 100000652 9849.226 1.0449949 1.0535921
## 304 100000655 4924.613 0.5224974 0.5267960
## 305 100000658 19698.452 2.0899897 2.1071842
## 306 100000662 4924.613 0.5224974 0.5267960
## 307 100000663 14773.839 1.5674923 1.5803881
## 308 100000664 14773.839 1.5674923 1.5803881
## 309 100000666 4924.613 0.5224974 0.5267960
## 310 100000671 4924.613 0.5224974 0.5267960
## 311 100000674 4924.613 0.5224974 0.5267960
## 312 100000677 4924.613 0.5224974 0.5267960
## 313 100000678 14773.839 1.5674923 1.5803881
## 314 100000680 4924.613 0.5224974 0.5267960
## 315 100000681 9849.226 1.0449949 1.0535921
## 316 100000688 14773.839 1.5674923 1.5803881
## 317 100000692 9849.226 1.0449949 1.0535921
## 318 100000693 9849.226 1.0449949 1.0535921
## 319 100000698 9849.226 1.0449949 1.0535921
## 320 100000701 4924.613 0.5224974 0.5267960
## 321 100000708 4924.613 0.5224974 0.5267960
## 322 100000720 4924.613 0.5224974 0.5267960
## 323 100000727 9849.226 1.0449949 1.0535921
## 324 100000728 4924.613 0.5224974 0.5267960
## 325 100000730 14773.839 1.5674923 1.5803881
## 326 100000735 4924.613 0.5224974 0.5267960
## 327 100000736 9849.226 1.0449949 1.0535921
## 328 100000739 4924.613 0.5224974 0.5267960
## 329 100000744 4924.613 0.5224974 0.5267960
## 330 100000745 4924.613 0.5224974 0.5267960
## 331 100000747 4924.613 0.5224974 0.5267960
## 332 100000750 9849.226 1.0449949 1.0535921
## 333 100000751 4924.613 0.5224974 0.5267960
## 334 100000752 4924.613 0.5224974 0.5267960
## 335 100000753 4924.613 0.5224974 0.5267960
## 336 100000754 9849.226 1.0449949 1.0535921
## 337 100000755 4924.613 0.5224974 0.5267960
## 338 100000756 4924.613 0.5224974 0.5267960
## 339 100000759 4924.613 0.5224974 0.5267960
## 340 100000762 4924.613 0.5224974 0.5267960
## 341 100000764 4924.613 0.5224974 0.5267960
## 342 100000767 9849.226 1.0449949 1.0535921
## 343 100000768 9849.226 1.0449949 1.0535921
## 344 100000769 9849.226 1.0449949 1.0535921
## 345 100000770 9849.226 1.0449949 1.0535921
## 346 100000772 4924.613 0.5224974 0.5267960
## 347 100000773 9849.226 1.0449949 1.0535921
## 348 100000774 9849.226 1.0449949 1.0535921
## 349 100000776 9849.226 1.0449949 1.0535921
## 350 100000778 4924.613 0.5224974 0.5267960
## 351 100000779 9849.226 1.0449949 1.0535921
## 352 100000781 9849.226 1.0449949 1.0535921
## 353 100000784 4924.613 0.5224974 0.5267960
## 354 100000785 19698.452 2.0899897 2.1071842
## 355 100000791 4924.613 0.5224974 0.5267960
## 356 100000796 4924.613 0.5224974 0.5267960
## 357 100000797 4924.613 0.5224974 0.5267960
## 358 100000798 4924.613 0.5224974 0.5267960
## 359 100000804 9849.226 1.0449949 1.0535921
## 360 100000808 4924.613 0.5224974 0.5267960
## 361 100000810 9849.226 1.0449949 1.0535921
## 362 100000815 4924.613 0.5224974 0.5267960
## 363 100000821 4924.613 0.5224974 0.5267960
## 364 100000827 9849.226 1.0449949 1.0535921
## 365 100000830 4924.613 0.5224974 0.5267960
## 366 100000838 9849.226 1.0449949 1.0535921
## 367 100000839 14773.839 1.5674923 1.5803881
## 368 100000840 9849.226 1.0449949 1.0535921
## 369 100000841 9849.226 1.0449949 1.0535921
## 370 100000842 9849.226 1.0449949 1.0535921
## 371 100000844 19698.452 2.0899897 2.1071842
## 372 100000846 9849.226 1.0449949 1.0535921
## 373 100000847 9849.226 1.0449949 1.0535921
## 374 100000848 4924.613 0.5224974 0.5267960
## 375 100000849 14773.839 1.5674923 1.5803881
## 376 100000850 24623.065 2.6124871 2.6339802
## 377 100000853 9849.226 1.0449949 1.0535921
## 378 100000854 4924.613 0.5224974 0.5267960
## 379 100000855 19698.452 2.0899897 2.1071842
## 380 100000856 9849.226 1.0449949 1.0535921
## 381 100000857 4924.613 0.5224974 0.5267960
## 382 100000859 4924.613 0.5224974 0.5267960
## 383 100000860 9849.226 1.0449949 1.0535921
## 384 100000862 24623.065 2.6124871 2.6339802
## 385 100000863 9849.226 1.0449949 1.0535921
## 386 100000866 9849.226 1.0449949 1.0535921
## 387 100000867 9849.226 1.0449949 1.0535921
## 388 100000877 19698.452 2.0899897 2.1071842
## 389 100000879 9849.226 1.0449949 1.0535921
## 390 100000881 9849.226 1.0449949 1.0535921
## 391 100000883 14773.839 1.5674923 1.5803881
## 392 100000887 9849.226 1.0449949 1.0535921
## 393 100000888 4924.613 0.5224974 0.5267960
## 394 100000892 4924.613 0.5224974 0.5267960
## 395 100000898 9849.226 1.0449949 1.0535921
## 396 100000907 14773.839 1.5674923 1.5803881
## 397 100000909 4924.613 0.5224974 0.5267960
## 398 100000911 9849.226 1.0449949 1.0535921
## 399 100000916 9849.226 1.0449949 1.0535921
## 400 100000919 14773.839 1.5674923 1.5803881
## 401 100000922 9849.226 1.0449949 1.0535921
## 402 100000923 9849.226 1.0449949 1.0535921
## 403 100000927 4924.613 0.5224974 0.5267960
## 404 100000929 4924.613 0.5224974 0.5267960
## 405 100000930 9849.226 1.0449949 1.0535921
## 406 100000931 9849.226 1.0449949 1.0535921
## 407 100000939 9849.226 1.0449949 1.0535921
## 408 100000943 4924.613 0.5224974 0.5267960
## 409 100000945 14773.839 1.5674923 1.5803881
## 410 100000948 4924.613 0.5224974 0.5267960
## 411 100000953 9849.226 1.0449949 1.0535921
## 412 100000956 4924.613 0.5224974 0.5267960
## 413 100000957 4924.613 0.5224974 0.5267960
## 414 100000958 9849.226 1.0449949 1.0535921
## 415 100000959 4924.613 0.5224974 0.5267960
## 416 100000960 4924.613 0.5224974 0.5267960
## 417 100000963 9849.226 1.0449949 1.0535921
## 418 100000964 9849.226 1.0449949 1.0535921
## 419 100000971 9849.226 1.0449949 1.0535921
## 420 100000974 9849.226 1.0449949 1.0535921
## 421 100000977 4924.613 0.5224974 0.5267960
## 422 100000978 9849.226 1.0449949 1.0535921
## 423 100000984 4924.613 0.5224974 0.5267960
## 424 100000987 9849.226 1.0449949 1.0535921
## 425 100000988 9849.226 1.0449949 1.0535921
## 426 100000992 9849.226 1.0449949 1.0535921
## 427 100000993 9849.226 1.0449949 1.0535921
## 428 100000998 9849.226 1.0449949 1.0535921
## 429 100001001 4924.613 0.5224974 0.5267960
## 430 100001003 19698.452 2.0899897 2.1071842
## 431 100001006 4924.613 0.5224974 0.5267960
## 432 100001008 9849.226 1.0449949 1.0535921
## 433 100001011 4924.613 0.5224974 0.5267960
## 434 100001021 9849.226 1.0449949 1.0535921
## 435 100001022 4924.613 0.5224974 0.5267960
## 436 100001023 9849.226 1.0449949 1.0535921
## 437 100001025 4924.613 0.5224974 0.5267960
## 438 100001027 9849.226 1.0449949 1.0535921
## 439 100001031 9849.226 1.0449949 1.0535921
## 440 100001032 9849.226 1.0449949 1.0535921
## 441 100001033 9849.226 1.0449949 1.0535921
## 442 100001034 9849.226 1.0449949 1.0535921
## 443 100001038 9849.226 1.0449949 1.0535921
## 444 100001040 9849.226 1.0449949 1.0535921
## 445 100001041 4924.613 0.5224974 0.5267960
## 446 100001044 9849.226 1.0449949 1.0535921
## 447 100001045 14773.839 1.5674923 1.5803881
## 448 100001047 24623.065 2.6124871 2.6339802
## 449 100001048 9849.226 1.0449949 1.0535921
## 450 100001049 9849.226 1.0449949 1.0535921
## 451 100001052 4924.613 0.5224974 0.5267960
## 452 100001054 9849.226 1.0449949 1.0535921
## 453 100001057 24623.065 2.6124871 2.6339802
## 454 100001063 4924.613 0.5224974 0.5267960
## 455 100001070 9849.226 1.0449949 1.0535921
## 456 100001080 4924.613 0.5224974 0.5267960
## 457 100001081 9849.226 1.0449949 1.0535921
## 458 100001087 4924.613 0.5224974 0.5267960
## 459 100001089 9849.226 1.0449949 1.0535921
## 460 100001094 9849.226 1.0449949 1.0535921
## 461 100001097 9849.226 1.0449949 1.0535921
## 462 100001100 4924.613 0.5224974 0.5267960
## 463 100001102 4924.613 0.5224974 0.5267960
## 464 100001103 9849.226 1.0449949 1.0535921
## 465 100001106 9849.226 1.0449949 1.0535921
## 466 100001107 4924.613 0.5224974 0.5267960
## 467 100001110 9849.226 1.0449949 1.0535921
## 468 100001112 9849.226 1.0449949 1.0535921
## 469 100001114 9849.226 1.0449949 1.0535921
## 470 100001119 4924.613 0.5224974 0.5267960
## 471 100001121 9849.226 1.0449949 1.0535921
## 472 100001122 9849.226 1.0449949 1.0535921
## 473 100001123 4924.613 0.5224974 0.5267960
## 474 100001125 4924.613 0.5224974 0.5267960
## 475 100001126 9849.226 1.0449949 1.0535921
## 476 100001128 4924.613 0.5224974 0.5267960
## 477 100001129 9849.226 1.0449949 1.0535921
## 478 100001130 14773.839 1.5674923 1.5803881
## 479 100001132 19698.452 2.0899897 2.1071842
## 480 100001134 19698.452 2.0899897 2.1071842
## 481 100001136 9849.226 1.0449949 1.0535921
## 482 100001137 9849.226 1.0449949 1.0535921
## 483 100001139 14773.839 1.5674923 1.5803881
## 484 100001140 29547.678 3.1349846 3.1607763
## 485 100001142 4924.613 0.5224974 0.5267960
## 486 100001144 9849.226 1.0449949 1.0535921
## 487 100001145 4924.613 0.5224974 0.5267960
## 488 100001147 9849.226 1.0449949 1.0535921
## 489 100001148 4924.613 0.5224974 0.5267960
## 490 100001153 4924.613 0.5224974 0.5267960
## 491 100001154 9849.226 1.0449949 1.0535921
## 492 100001155 9849.226 1.0449949 1.0535921
## 493 100001160 9849.226 1.0449949 1.0535921
## 494 100001162 9849.226 1.0449949 1.0535921
## 495 100001164 4924.613 0.5224974 0.5267960
## 496 100001167 4924.613 0.5224974 0.5267960
## 497 100001168 4924.613 0.5224974 0.5267960
## 498 100001169 9849.226 1.0449949 1.0535921
## 499 100001176 4924.613 0.5224974 0.5267960
## 500 100001180 14773.839 1.5674923 1.5803881
## 501 100001187 9849.226 1.0449949 1.0535921
## 502 100001188 9849.226 1.0449949 1.0535921
## 503 100001192 4924.613 0.5224974 0.5267960
## 504 100001197 9849.226 1.0449949 1.0535921
## 505 100001202 9849.226 1.0449949 1.0535921
## 506 100001207 9849.226 1.0449949 1.0535921
## 507 100001209 9849.226 1.0449949 1.0535921
## 508 100001215 4924.613 0.5224974 0.5267960
## 509 100001219 4924.613 0.5224974 0.5267960
## 510 100001223 4924.613 0.5224974 0.5267960
## 511 100001225 4924.613 0.5224974 0.5267960
## 512 100001230 4924.613 0.5224974 0.5267960
## 513 100001232 4924.613 0.5224974 0.5267960
## 514 100001234 4924.613 0.5224974 0.5267960
## 515 100001237 9849.226 1.0449949 1.0535921
## 516 100001239 14773.839 1.5674923 1.5803881
## 517 100001240 4924.613 0.5224974 0.5267960
## 518 100001241 9849.226 1.0449949 1.0535921
## 519 100001242 14773.839 1.5674923 1.5803881
## 520 100001243 4924.613 0.5224974 0.5267960
## 521 100001248 9849.226 1.0449949 1.0535921
## 522 100001250 4924.613 0.5224974 0.5267960
## 523 100001252 9849.226 1.0449949 1.0535921
## 524 100001253 4924.613 0.5224974 0.5267960
## 525 100001255 9849.226 1.0449949 1.0535921
## 526 100001259 9849.226 1.0449949 1.0535921
## 527 100001262 9849.226 1.0449949 1.0535921
## 528 100001267 9849.226 1.0449949 1.0535921
## 529 100001271 19698.452 2.0899897 2.1071842
## 530 100001273 4924.613 0.5224974 0.5267960
## 531 100001274 9849.226 1.0449949 1.0535921
## 532 100001275 9849.226 1.0449949 1.0535921
## 533 100001277 9849.226 1.0449949 1.0535921
## 534 100001279 9849.226 1.0449949 1.0535921
## 535 100001285 4924.613 0.5224974 0.5267960
## 536 100001288 9849.226 1.0449949 1.0535921
## 537 100001293 9849.226 1.0449949 1.0535921
## 538 100001295 29547.678 3.1349846 3.1607763
## 539 100001297 9849.226 1.0449949 1.0535921
## 540 100001298 4924.613 0.5224974 0.5267960
## 541 100001299 9849.226 1.0449949 1.0535921
## 542 100001300 4924.613 0.5224974 0.5267960
## 543 100001301 4924.613 0.5224974 0.5267960
## 544 100001303 4924.613 0.5224974 0.5267960
## 545 100001304 4924.613 0.5224974 0.5267960
## 546 100001307 9849.226 1.0449949 1.0535921
## 547 100001310 9849.226 1.0449949 1.0535921
## 548 100001311 4924.613 0.5224974 0.5267960
## 549 100001316 4924.613 0.5224974 0.5267960
## 550 100001318 4924.613 0.5224974 0.5267960
## 551 100001319 9849.226 1.0449949 1.0535921
## 552 100001322 9849.226 1.0449949 1.0535921
## 553 100001323 4924.613 0.5224974 0.5267960
## 554 100001325 9849.226 1.0449949 1.0535921
## 555 100001339 9849.226 1.0449949 1.0535921
## 556 100001340 4924.613 0.5224974 0.5267960
## 557 100001341 9849.226 1.0449949 1.0535921
## 558 100001342 9849.226 1.0449949 1.0535921
## 559 100001347 4924.613 0.5224974 0.5267960
## 560 100001349 9849.226 1.0449949 1.0535921
## 561 100001350 4924.613 0.5224974 0.5267960
## 562 100001353 9849.226 1.0449949 1.0535921
## 563 100001354 4924.613 0.5224974 0.5267960
## 564 100001356 9849.226 1.0449949 1.0535921
## 565 100001360 9849.226 1.0449949 1.0535921
## 566 100001363 9849.226 1.0449949 1.0535921
## 567 100001367 4924.613 0.5224974 0.5267960
## 568 100001373 4924.613 0.5224974 0.5267960
## 569 100001375 9849.226 1.0449949 1.0535921
## 570 100001376 14773.839 1.5674923 1.5803881
## 571 100001378 9849.226 1.0449949 1.0535921
## 572 100001381 4924.613 0.5224974 0.5267960
## 573 100001383 9849.226 1.0449949 1.0535921
## 574 100001391 9849.226 1.0449949 1.0535921
## 575 100001393 19698.452 2.0899897 2.1071842
## 576 100001395 9849.226 1.0449949 1.0535921
## 577 100001401 4924.613 0.5224974 0.5267960
## 578 100001402 9849.226 1.0449949 1.0535921
## 579 100001403 4924.613 0.5224974 0.5267960
## 580 100001404 4924.613 0.5224974 0.5267960
## 581 100001405 19698.452 2.0899897 2.1071842
## 582 100001407 9849.226 1.0449949 1.0535921
## 583 100001411 4924.613 0.5224974 0.5267960
## 584 100001412 4924.613 0.5224974 0.5267960
## 585 100001414 4924.613 0.5224974 0.5267960
## 586 100001417 14773.839 1.5674923 1.5803881
## 587 100001418 4924.613 0.5224974 0.5267960
## 588 100001419 14773.839 1.5674923 1.5803881
## 589 100001420 9849.226 1.0449949 1.0535921
## 590 100001421 9849.226 1.0449949 1.0535921
## 591 100001422 4924.613 0.5224974 0.5267960
## 592 100001423 9849.226 1.0449949 1.0535921
## 593 100001425 4924.613 0.5224974 0.5267960
## 594 100001427 9849.226 1.0449949 1.0535921
## 595 100001428 9849.226 1.0449949 1.0535921
## 596 100001434 4924.613 0.5224974 0.5267960
## 597 100001435 29547.678 3.1349846 3.1607763
## 598 100001436 19698.452 2.0899897 2.1071842
## 599 100001439 4924.613 0.5224974 0.5267960
## 600 100001440 9849.226 1.0449949 1.0535921
## 601 100001441 4924.613 0.5224974 0.5267960
## 602 100001443 4924.613 0.5224974 0.5267960
## 603 100001444 9849.226 1.0449949 1.0535921
## 604 100001445 4924.613 0.5224974 0.5267960
## 605 100001448 9849.226 1.0449949 1.0535921
## 606 100001449 4924.613 0.5224974 0.5267960
## 607 100001456 4924.613 0.5224974 0.5267960
## 608 100001460 4924.613 0.5224974 0.5267960
## 609 100001463 9849.226 1.0449949 1.0535921
## 610 100001468 9849.226 1.0449949 1.0535921
## 611 100001470 4924.613 0.5224974 0.5267960
## 612 100001474 4924.613 0.5224974 0.5267960
## 613 100001480 4924.613 0.5224974 0.5267960
## 614 100001483 9849.226 1.0449949 1.0535921
## 615 100001487 4924.613 0.5224974 0.5267960
## 616 100001488 4924.613 0.5224974 0.5267960
## 617 100001491 4924.613 0.5224974 0.5267960
## 618 100001494 19698.452 2.0899897 2.1071842
## 619 100001495 4924.613 0.5224974 0.5267960
## 620 100001497 9849.226 1.0449949 1.0535921
## 621 100001501 9849.226 1.0449949 1.0535921
## 622 100001503 4924.613 0.5224974 0.5267960
## 623 100001506 9849.226 1.0449949 1.0535921
## 624 100001512 9849.226 1.0449949 1.0535921
## 625 100001517 4924.613 0.5224974 0.5267960
## 626 100001518 4924.613 0.5224974 0.5267960
## 627 100001522 9849.226 1.0449949 1.0535921
## 628 100001523 14773.839 1.5674923 1.5803881
## 629 100001524 9849.226 1.0449949 1.0535921
## 630 100001525 9849.226 1.0449949 1.0535921
## 631 100001526 9849.226 1.0449949 1.0535921
## 632 100001528 9849.226 1.0449949 1.0535921
## 633 100001529 14773.839 1.5674923 1.5803881
## 634 100001530 4924.613 0.5224974 0.5267960
## 635 100001534 9849.226 1.0449949 1.0535921
## 636 100001538 9849.226 1.0449949 1.0535921
## 637 100001540 4924.613 0.5224974 0.5267960
## 638 100001541 9849.226 1.0449949 1.0535921
## 639 100001547 4924.613 0.5224974 0.5267960
## 640 100001549 14773.839 1.5674923 1.5803881
## 641 100001551 9849.226 1.0449949 1.0535921
## 642 100001554 19698.452 2.0899897 2.1071842
## 643 100001564 4924.613 0.5224974 0.5267960
## 644 100001565 4924.613 0.5224974 0.5267960
## 645 100001566 9849.226 1.0449949 1.0535921
## 646 100001569 9849.226 1.0449949 1.0535921
## 647 100001572 4924.613 0.5224974 0.5267960
## 648 100001573 4924.613 0.5224974 0.5267960
## 649 100001574 4924.613 0.5224974 0.5267960
## 650 100001575 9849.226 1.0449949 1.0535921
## 651 100001576 19698.452 2.0899897 2.1071842
## 652 100001586 9849.226 1.0449949 1.0535921
## 653 100001594 9849.226 1.0449949 1.0535921
## 654 100001597 4924.613 0.5224974 0.5267960
## 655 100001598 14773.839 1.5674923 1.5803881
## 656 100001599 4924.613 0.5224974 0.5267960
## 657 100001600 19698.452 2.0899897 2.1071842
## 658 100001602 4924.613 0.5224974 0.5267960
## 659 100001603 14773.839 1.5674923 1.5803881
## 660 100001604 14773.839 1.5674923 1.5803881
## 661 100001615 4924.613 0.5224974 0.5267960
## 662 100001620 19698.452 2.0899897 2.1071842
## 663 100001624 19698.452 2.0899897 2.1071842
## 664 100001626 4924.613 0.5224974 0.5267960
## 665 100001627 9849.226 1.0449949 1.0535921
## 666 100001628 4924.613 0.5224974 0.5267960
## 667 100001629 4924.613 0.5224974 0.5267960
## 668 100001631 4924.613 0.5224974 0.5267960
## 669 100001635 4924.613 0.5224974 0.5267960
## 670 100001638 9849.226 1.0449949 1.0535921
## 671 100001642 9849.226 1.0449949 1.0535921
## 672 100001644 4924.613 0.5224974 0.5267960
## 673 100001649 9849.226 1.0449949 1.0535921
## 674 100001650 4924.613 0.5224974 0.5267960
## 675 100001651 9849.226 1.0449949 1.0535921
## 676 100001652 9849.226 1.0449949 1.0535921
## 677 100001654 9849.226 1.0449949 1.0535921
## 678 100001655 4924.613 0.5224974 0.5267960
## 679 100001656 4924.613 0.5224974 0.5267960
## 680 100001657 4924.613 0.5224974 0.5267960
## 681 100001663 9849.226 1.0449949 1.0535921
## 682 100001665 44321.517 4.7024769 4.0000000
## 683 100001668 14773.839 1.5674923 1.5803881
## 684 100001669 4924.613 0.5224974 0.5267960
## 685 100001672 4924.613 0.5224974 0.5267960
## 686 100001674 9849.226 1.0449949 1.0535921
## 687 100001677 9849.226 1.0449949 1.0535921
## 688 100001678 9849.226 1.0449949 1.0535921
## 689 100001679 7309.389 0.7755203 0.7819005
## 690 100001680 9849.226 1.0449949 1.0535921
## 691 100001681 4924.613 0.5224974 0.5267960
## 692 100001682 4924.613 0.5224974 0.5267960
## 693 100001683 9849.226 1.0449949 1.0535921
## 694 100001688 9849.226 1.0449949 1.0535921
## 695 100001689 4924.613 0.5224974 0.5267960
## 696 100001690 9849.226 1.0449949 1.0535921
## 697 100001691 4924.613 0.5224974 0.5267960
## 698 100001692 9849.226 1.0449949 1.0535921
## 699 100001696 14773.839 1.5674923 1.5803881
## 700 100001700 4924.613 0.5224974 0.5267960
## 701 100001701 9849.226 1.0449949 1.0535921
## 702 100001705 9849.226 1.0449949 1.0535921
## 703 100001707 9849.226 1.0449949 1.0535921
## 704 100001708 9849.226 1.0449949 1.0535921
## 705 100001709 9849.226 1.0449949 1.0535921
## 706 100001713 4924.613 0.5224974 0.5267960
## 707 100001714 9849.226 1.0449949 1.0535921
## 708 100001716 9849.226 1.0449949 1.0535921
## 709 100001717 14773.839 1.5674923 1.5803881
## 710 100001720 9849.226 1.0449949 1.0535921
## 711 100001722 9849.226 1.0449949 1.0535921
## 712 100001726 9849.226 1.0449949 1.0535921
## 713 100001728 9849.226 1.0449949 1.0535921
## 714 100001733 9849.226 1.0449949 1.0535921
## 715 100001734 9849.226 1.0449949 1.0535921
## 716 100001735 14773.839 1.5674923 1.5803881
## 717 100001740 4924.613 0.5224974 0.5267960
## 718 100001744 9849.226 1.0449949 1.0535921
## 719 100001746 9849.226 1.0449949 1.0535921
## 720 100001748 4924.613 0.5224974 0.5267960
## 721 100001749 4924.613 0.5224974 0.5267960
## 722 100001755 4924.613 0.5224974 0.5267960
## 723 100001758 14773.839 1.5674923 1.5803881
## 724 100001760 9849.226 1.0449949 1.0535921
## 725 100001763 4924.613 0.5224974 0.5267960
## 726 100001764 9849.226 1.0449949 1.0535921
## 727 100001767 14773.839 1.5674923 1.5803881
## 728 100001768 9849.226 1.0449949 1.0535921
## 729 100001770 24623.065 2.6124871 2.6339802
## 730 100001771 9849.226 1.0449949 1.0535921
## 731 100001772 9849.226 1.0449949 1.0535921
## 732 100001773 14773.839 1.5674923 1.5803881
## 733 100001774 9849.226 1.0449949 1.0535921
## 734 100001776 9849.226 1.0449949 1.0535921
## 735 100001781 4924.613 0.5224974 0.5267960
## 736 100001783 14773.839 1.5674923 1.5803881
## 737 100001786 9849.226 1.0449949 1.0535921
## 738 100001790 4924.613 0.5224974 0.5267960
## 739 100001791 4924.613 0.5224974 0.5267960
## 740 100001793 4924.613 0.5224974 0.5267960
## 741 100001795 4924.613 0.5224974 0.5267960
## 742 100001796 9849.226 1.0449949 1.0535921
## 743 100001797 9849.226 1.0449949 1.0535921
## 744 100001798 4924.613 0.5224974 0.5267960
## 745 100001800 19698.452 2.0899897 2.1071842
## 746 100001801 9849.226 1.0449949 1.0535921
## 747 100001804 14773.839 1.5674923 1.5803881
## 748 100001805 4924.613 0.5224974 0.5267960
## 749 100001807 14773.839 1.5674923 1.5803881
## 750 100001815 9849.226 1.0449949 1.0535921
## 751 100001817 9849.226 1.0449949 1.0535921
## 752 100001818 9849.226 1.0449949 1.0535921
## 753 100001819 19698.452 2.0899897 2.1071842
## 754 100001820 4924.613 0.5224974 0.5267960
## 755 100001827 9849.226 1.0449949 1.0535921
## 756 100001830 19698.452 2.0899897 2.1071842
## 757 100001832 9849.226 1.0449949 1.0535921
## 758 100001834 4924.613 0.5224974 0.5267960
## 759 100001839 4924.613 0.5224974 0.5267960
## 760 100001842 24623.065 2.6124871 2.6339802
## 761 100001845 9849.226 1.0449949 1.0535921
## 762 100001849 14773.839 1.5674923 1.5803881
## 763 100001850 9849.226 1.0449949 1.0535921
## 764 100001852 9849.226 1.0449949 1.0535921
## 765 100001854 19698.452 2.0899897 2.1071842
## 766 100001856 4924.613 0.5224974 0.5267960
## 767 100001862 9849.226 1.0449949 1.0535921
## 768 100001869 4924.613 0.5224974 0.5267960
## 769 100001871 9849.226 1.0449949 1.0535921
## 770 100001874 9849.226 1.0449949 1.0535921
## 771 100001877 9849.226 1.0449949 1.0535921
## 772 100001880 9849.226 1.0449949 1.0535921
## 773 100001881 9849.226 1.0449949 1.0535921
## 774 100001883 9849.226 1.0449949 1.0535921
## 775 100001885 4924.613 0.5224974 0.5267960
## 776 100001888 4924.613 0.5224974 0.5267960
## 777 100001890 9849.226 1.0449949 1.0535921
## 778 100001892 9849.226 1.0449949 1.0535921
## 779 100001893 14773.839 1.5674923 1.5803881
## 780 100001895 4924.613 0.5224974 0.5267960
## 781 100001897 9849.226 1.0449949 1.0535921
## 782 100001904 14773.839 1.5674923 1.5803881
## 783 100001905 9849.226 1.0449949 1.0535921
## 784 100001909 9849.226 1.0449949 1.0535921
## 785 100001912 9849.226 1.0449949 1.0535921
## 786 100001914 9849.226 1.0449949 1.0535921
## 787 100001915 14773.839 1.5674923 1.5803881
## 788 100001916 9849.226 1.0449949 1.0535921
## 789 100001918 9849.226 1.0449949 1.0535921
## 790 100001919 4924.613 0.5224974 0.5267960
## 791 100001921 9849.226 1.0449949 1.0535921
## 792 100001923 19698.452 2.0899897 2.1071842
## 793 100001924 4924.613 0.5224974 0.5267960
## 794 100001930 4924.613 0.5224974 0.5267960
## 795 100001931 4924.613 0.5224974 0.5267960
## 796 100001934 4924.613 0.5224974 0.5267960
## 797 100001936 14773.839 1.5674923 1.5803881
## 798 100001939 9849.226 1.0449949 1.0535921
## 799 100001948 4924.613 0.5224974 0.5267960
## 800 100001951 9849.226 1.0449949 1.0535921
## 801 100001953 9849.226 1.0449949 1.0535921
## 802 100001955 4924.613 0.5224974 0.5267960
## 803 100001956 9849.226 1.0449949 1.0535921
## 804 100001957 14773.839 1.5674923 1.5803881
## 805 100001961 4924.613 0.5224974 0.5267960
## 806 100001963 9849.226 1.0449949 1.0535921
## 807 100001967 19698.452 2.0899897 2.1071842
## 808 100001969 4924.613 0.5224974 0.5267960
## 809 100001972 19698.452 2.0899897 2.1071842
## 810 100001973 9849.226 1.0449949 1.0535921
## 811 100001974 9849.226 1.0449949 1.0535921
## 812 100001979 9849.226 1.0449949 1.0535921
## 813 100001981 9849.226 1.0449949 1.0535921
## 814 100001986 4924.613 0.5224974 0.5267960
## 815 100001992 9849.226 1.0449949 1.0535921
## 816 100001993 9849.226 1.0449949 1.0535921
## 817 100001995 4924.613 0.5224974 0.5267960
## 818 100001996 4924.613 0.5224974 0.5267960
## 819 100001999 9849.226 1.0449949 1.0535921
## 820 100002000 4924.613 0.5224974 0.5267960
## 821 100002003 9849.226 1.0449949 1.0535921
## 822 100002004 9849.226 1.0449949 1.0535921
## 823 100002005 9849.226 1.0449949 1.0535921
## 824 100002007 4924.613 0.5224974 0.5267960
## 825 100002008 4924.613 0.5224974 0.5267960
## 826 100002011 4924.613 0.5224974 0.5267960
## 827 100002012 4924.613 0.5224974 0.5267960
## 828 100002019 9849.226 1.0449949 1.0535921
## 829 100002024 4924.613 0.5224974 0.5267960
## 830 100002025 9849.226 1.0449949 1.0535921
## 831 100002026 9849.226 1.0449949 1.0535921
## 832 100002030 9849.226 1.0449949 1.0535921
## 833 100002034 19698.452 2.0899897 2.1071842
## 834 100002041 4924.613 0.5224974 0.5267960
## 835 100002043 9849.226 1.0449949 1.0535921
## 836 100002045 9849.226 1.0449949 1.0535921
## 837 100002046 24623.065 2.6124871 2.6339802
## 838 100002047 4924.613 0.5224974 0.5267960
## 839 100002049 29547.678 3.1349846 3.1607763
## 840 100002050 9849.226 1.0449949 1.0535921
## 841 100002051 9849.226 1.0449949 1.0535921
## 842 100002052 9849.226 1.0449949 1.0535921
## 843 100002059 9849.226 1.0449949 1.0535921
## 844 100002061 19698.452 2.0899897 2.1071842
## 845 100002062 4924.613 0.5224974 0.5267960
## 846 100002066 44321.517 4.7024769 4.0000000
## 847 100002067 9849.226 1.0449949 1.0535921
## 848 100002068 9849.226 1.0449949 1.0535921
## 849 100002069 14773.839 1.5674923 1.5803881
## 850 100002072 59426.130 6.3050640 4.0000000
## 851 100002075 9849.226 1.0449949 1.0535921
## 852 100002076 9849.226 1.0449949 1.0535921
## 853 100002077 9849.226 1.0449949 1.0535921
## 854 100002079 4924.613 0.5224974 0.5267960
## 855 100002080 19698.452 2.0899897 2.1071842
## 856 100002081 9849.226 1.0449949 1.0535921
## 857 100002082 4924.613 0.5224974 0.5267960
## 858 100002083 14773.839 1.5674923 1.5803881
## 859 100002085 9849.226 1.0449949 1.0535921
## 860 100002089 9849.226 1.0449949 1.0535921
## 861 100002090 14773.839 1.5674923 1.5803881
## 862 100002095 14773.839 1.5674923 1.5803881
## 863 100002098 4924.613 0.5224974 0.5267960
## 864 100002100 9849.226 1.0449949 1.0535921
## 865 100002105 4924.613 0.5224974 0.5267960
## 866 100002106 9849.226 1.0449949 1.0535921
## 867 100002107 14773.839 1.5674923 1.5803881
## 868 100002112 14773.839 1.5674923 1.5803881
## 869 100002113 4924.613 0.5224974 0.5267960
## 870 100002117 19698.452 2.0899897 2.1071842
## 871 100002118 9849.226 1.0449949 1.0535921
## 872 100002121 4924.613 0.5224974 0.5267960
## 873 100002122 4924.613 0.5224974 0.5267960
## 874 100002123 9849.226 1.0449949 1.0535921
## 875 100002125 4924.613 0.5224974 0.5267960
## 876 100002131 9849.226 1.0449949 1.0535921
## 877 100002132 9849.226 1.0449949 1.0535921
## 878 100002136 4924.613 0.5224974 0.5267960
## 879 100002137 4924.613 0.5224974 0.5267960
## 880 100002140 9849.226 1.0449949 1.0535921
## 881 100002141 9849.226 1.0449949 1.0535921
## 882 100002142 9849.226 1.0449949 1.0535921
## 883 100002143 4924.613 0.5224974 0.5267960
## 884 100002146 4924.613 0.5224974 0.5267960
## 885 100002152 4924.613 0.5224974 0.5267960
## 886 100002154 9849.226 1.0449949 1.0535921
## 887 100002155 34472.291 3.6574820 3.6875723
## 888 100002156 4924.613 0.5224974 0.5267960
## 889 100002159 19698.452 2.0899897 2.1071842
## 890 100002161 9849.226 1.0449949 1.0535921
## 891 100002162 9849.226 1.0449949 1.0535921
## 892 100002164 4924.613 0.5224974 0.5267960
## 893 100002166 4924.613 0.5224974 0.5267960
## 894 100002175 14773.839 1.5674923 1.5803881
## 895 100002176 9849.226 1.0449949 1.0535921
## 896 100002178 4924.613 0.5224974 0.5267960
## 897 100002186 14773.839 1.5674923 1.5803881
## 898 100002187 9849.226 1.0449949 1.0535921
## 899 100002188 9849.226 1.0449949 1.0535921
## 900 100002194 4924.613 0.5224974 0.5267960
## 901 100002195 4924.613 0.5224974 0.5267960
## 902 100002196 9849.226 1.0449949 1.0535921
## 903 100002199 9849.226 1.0449949 1.0535921
## 904 100002200 19698.452 2.0899897 2.1071842
## 905 100002202 9849.226 1.0449949 1.0535921
## 906 100002203 9849.226 1.0449949 1.0535921
## 907 100002204 4924.613 0.5224974 0.5267960
## 908 100002205 9849.226 1.0449949 1.0535921
## 909 100002206 4924.613 0.5224974 0.5267960
## 910 100002207 9849.226 1.0449949 1.0535921
## 911 100002208 9849.226 1.0449949 1.0535921
## 912 100002210 19698.452 2.0899897 2.1071842
## 913 100002213 9849.226 1.0449949 1.0535921
## 914 100002221 14773.839 1.5674923 1.5803881
## 915 100002222 4924.613 0.5224974 0.5267960
## 916 100002226 4924.613 0.5224974 0.5267960
## 917 100002227 4924.613 0.5224974 0.5267960
## 918 100002228 9849.226 1.0449949 1.0535921
## 919 100002229 9849.226 1.0449949 1.0535921
## 920 100002231 9849.226 1.0449949 1.0535921
## 921 100002233 9849.226 1.0449949 1.0535921
## 922 100002241 9849.226 1.0449949 1.0535921
## 923 100002243 9849.226 1.0449949 1.0535921
## 924 100002244 4924.613 0.5224974 0.5267960
## 925 100002245 9849.226 1.0449949 1.0535921
## 926 100002249 9849.226 1.0449949 1.0535921
## 927 100002250 9849.226 1.0449949 1.0535921
## 928 100002251 9849.226 1.0449949 1.0535921
## 929 100002252 4924.613 0.5224974 0.5267960
## 930 100002253 9849.226 1.0449949 1.0535921
## 931 100002254 9849.226 1.0449949 1.0535921
## 932 100002256 9849.226 1.0449949 1.0535921
## 933 100002258 14773.839 1.5674923 1.5803881
## 934 100002261 4924.613 0.5224974 0.5267960
## 935 100002264 9849.226 1.0449949 1.0535921
## 936 100002265 9849.226 1.0449949 1.0535921
## 937 100002269 4924.613 0.5224974 0.5267960
## 938 100002270 9849.226 1.0449949 1.0535921
## 939 100002272 9849.226 1.0449949 1.0535921
## 940 100002273 9849.226 1.0449949 1.0535921
## 941 100002275 9849.226 1.0449949 1.0535921
## 942 100002276 9849.226 1.0449949 1.0535921
## 943 100002278 4924.613 0.5224974 0.5267960
## 944 100002280 9849.226 1.0449949 1.0535921
## 945 100002282 4924.613 0.5224974 0.5267960
## 946 100002285 14773.839 1.5674923 1.5803881
## 947 100002286 4924.613 0.5224974 0.5267960
## 948 100002289 4924.613 0.5224974 0.5267960
## 949 100002293 14773.839 1.5674923 1.5803881
## 950 100002295 9849.226 1.0449949 1.0535921
## 951 100002299 9849.226 1.0449949 1.0535921
## 952 100002300 4924.613 0.5224974 0.5267960
## 953 100002302 24623.065 2.6124871 2.6339802
## 954 100002305 14773.839 1.5674923 1.5803881
## 955 100002306 4924.613 0.5224974 0.5267960
## 956 100002307 4924.613 0.5224974 0.5267960
## 957 100002310 9849.226 1.0449949 1.0535921
## 958 100002313 4924.613 0.5224974 0.5267960
## 959 100002319 4924.613 0.5224974 0.5267960
## 960 100002320 9849.226 1.0449949 1.0535921
## 961 100002325 9849.226 1.0449949 1.0535921
## 962 100002328 9849.226 1.0449949 1.0535921
## 963 100002334 19698.452 2.0899897 2.1071842
## 964 100002336 4924.613 0.5224974 0.5267960
## 965 100002338 14773.839 1.5674923 1.5803881
## 966 100002339 4924.613 0.5224974 0.5267960
## 967 100002341 4924.613 0.5224974 0.5267960
## 968 100002345 9849.226 1.0449949 1.0535921
## 969 100002347 4924.613 0.5224974 0.5267960
## 970 100002348 9849.226 1.0449949 1.0535921
## 971 100002351 19698.452 2.0899897 2.1071842
## 972 100002354 9849.226 1.0449949 1.0535921
## 973 100002356 4924.613 0.5224974 0.5267960
## 974 100002357 9849.226 1.0449949 1.0535921
## 975 100002358 4924.613 0.5224974 0.5267960
## 976 100002360 9849.226 1.0449949 1.0535921
## 977 100002361 24623.065 2.6124871 2.6339802
## 978 100002363 9849.226 1.0449949 1.0535921
## 979 100002364 4924.613 0.5224974 0.5267960
## 980 100002366 9849.226 1.0449949 1.0535921
## 981 100002367 4924.613 0.5224974 0.5267960
## 982 100002368 9849.226 1.0449949 1.0535921
## 983 100002369 9849.226 1.0449949 1.0535921
## 984 100002370 9849.226 1.0449949 1.0535921
## 985 100002371 14773.839 1.5674923 1.5803881
## 986 100002372 9849.226 1.0449949 1.0535921
## 987 100002374 19698.452 2.0899897 2.1071842
## 988 100002379 4924.613 0.5224974 0.5267960
## 989 100002380 4924.613 0.5224974 0.5267960
## 990 100002381 4924.613 0.5224974 0.5267960
## 991 100002383 9849.226 1.0449949 1.0535921
## 992 100002385 9849.226 1.0449949 1.0535921
## 993 100002386 9849.226 1.0449949 1.0535921
## 994 100002387 9849.226 1.0449949 1.0535921
## 995 100002390 4924.613 0.5224974 0.5267960
## 996 100002393 19698.452 2.0899897 2.1071842
## 997 100002396 9849.226 1.0449949 1.0535921
## 998 100002398 4924.613 0.5224974 0.5267960
## 999 100002400 9849.226 1.0449949 1.0535921
## 1000 100002407 14773.839 1.5674923 1.5803881
## 1001 100002408 9849.226 1.0449949 1.0535921
## 1002 100002410 9849.226 1.0449949 1.0535921
## 1003 100002412 9849.226 1.0449949 1.0535921
## 1004 100002418 9849.226 1.0449949 1.0535921
## 1005 100002420 14773.839 1.5674923 1.5803881
## 1006 100002422 14773.839 1.5674923 1.5803881
## 1007 100002424 4924.613 0.5224974 0.5267960
## 1008 100002425 9849.226 1.0449949 1.0535921
## 1009 100002430 9849.226 1.0449949 1.0535921
## 1010 100002433 4924.613 0.5224974 0.5267960
## 1011 100002438 4924.613 0.5224974 0.5267960
## 1012 100002439 4924.613 0.5224974 0.5267960
## 1013 100002440 9849.226 1.0449949 1.0535921
## 1014 100002441 9849.226 1.0449949 1.0535921
## 1015 100002442 9849.226 1.0449949 1.0535921
## 1016 100002444 9849.226 1.0449949 1.0535921
## 1017 100002452 4924.613 0.5224974 0.5267960
## 1018 100002453 4924.613 0.5224974 0.5267960
## 1019 100002455 9849.226 1.0449949 1.0535921
## 1020 100002457 4924.613 0.5224974 0.5267960
## 1021 100002460 19698.452 2.0899897 2.1071842
## 1022 100002462 4924.613 0.5224974 0.5267960
## 1023 100002467 4924.613 0.5224974 0.5267960
## 1024 100002468 9849.226 1.0449949 1.0535921
## 1025 100002474 9849.226 1.0449949 1.0535921
## 1026 100002476 9849.226 1.0449949 1.0535921
## 1027 100002478 19698.452 2.0899897 2.1071842
## 1028 100002479 9849.226 1.0449949 1.0535921
## 1029 100002484 9849.226 1.0449949 1.0535921
## 1030 100002486 14773.839 1.5674923 1.5803881
## 1031 100002490 9849.226 1.0449949 1.0535921
## 1032 100002493 9849.226 1.0449949 1.0535921
## 1033 100002494 4924.613 0.5224974 0.5267960
## 1034 100002495 9849.226 1.0449949 1.0535921
## 1035 100002496 9849.226 1.0449949 1.0535921
## 1036 100002499 9849.226 1.0449949 1.0535921
## 1037 100002500 9849.226 1.0449949 1.0535921
## 1038 100002501 4924.613 0.5224974 0.5267960
## 1039 100002504 9849.226 1.0449949 1.0535921
## 1040 100002505 4924.613 0.5224974 0.5267960
## 1041 100002507 14773.839 1.5674923 1.5803881
## 1042 100002511 4924.613 0.5224974 0.5267960
## 1043 100002513 9849.226 1.0449949 1.0535921
## 1044 100002516 9849.226 1.0449949 1.0535921
## 1045 100002518 4924.613 0.5224974 0.5267960
## 1046 100002523 14773.839 1.5674923 1.5803881
## 1047 100002524 14773.839 1.5674923 1.5803881
## 1048 100002525 14773.839 1.5674923 1.5803881
## 1049 100002526 4924.613 0.5224974 0.5267960
## 1050 100002530 4924.613 0.5224974 0.5267960
## 1051 100002540 9849.226 1.0449949 1.0535921
## 1052 100002541 4924.613 0.5224974 0.5267960
## 1053 100002542 4924.613 0.5224974 0.5267960
## 1054 100002543 9849.226 1.0449949 1.0535921
## 1055 100002546 4924.613 0.5224974 0.5267960
## 1056 100002548 4924.613 0.5224974 0.5267960
## 1057 100002554 9849.226 1.0449949 1.0535921
## 1058 100002555 14773.839 1.5674923 1.5803881
## 1059 100002556 14773.839 1.5674923 1.5803881
## 1060 100002557 4924.613 0.5224974 0.5267960
## 1061 100002559 4924.613 0.5224974 0.5267960
## 1062 100002560 9849.226 1.0449949 1.0535921
## 1063 100002561 4924.613 0.5224974 0.5267960
## 1064 100002564 9849.226 1.0449949 1.0535921
## 1065 100002570 19698.452 2.0899897 2.1071842
## 1066 100002572 4924.613 0.5224974 0.5267960
## 1067 100002573 9849.226 1.0449949 1.0535921
## 1068 100002574 4924.613 0.5224974 0.5267960
## 1069 100002576 14773.839 1.5674923 1.5803881
## 1070 100002577 19698.452 2.0899897 2.1071842
## 1071 100002579 9849.226 1.0449949 1.0535921
## 1072 100002583 9849.226 1.0449949 1.0535921
## 1073 100002584 9849.226 1.0449949 1.0535921
## 1074 100002585 9849.226 1.0449949 1.0535921
## 1075 100002588 4924.613 0.5224974 0.5267960
## 1076 100002590 9849.226 1.0449949 1.0535921
## 1077 100002594 4924.613 0.5224974 0.5267960
## 1078 100002595 9849.226 1.0449949 1.0535921
## 1079 100002599 4924.613 0.5224974 0.5267960
## 1080 100002602 14773.839 1.5674923 1.5803881
## 1081 100002604 4924.613 0.5224974 0.5267960
## 1082 100002605 4924.613 0.5224974 0.5267960
## 1083 100002606 9849.226 1.0449949 1.0535921
## 1084 100002613 9849.226 1.0449949 1.0535921
## 1085 100002614 9849.226 1.0449949 1.0535921
## 1086 100002617 14773.839 1.5674923 1.5803881
## 1087 100002618 9849.226 1.0449949 1.0535921
## 1088 100002620 9849.226 1.0449949 1.0535921
## 1089 100002623 9849.226 1.0449949 1.0535921
## 1090 100002624 9849.226 1.0449949 1.0535921
## 1091 100002626 9849.226 1.0449949 1.0535921
## 1092 100002630 9849.226 1.0449949 1.0535921
## 1093 100002631 4924.613 0.5224974 0.5267960
## 1094 100002632 9849.226 1.0449949 1.0535921
## 1095 100002633 9849.226 1.0449949 1.0535921
## 1096 100002634 9849.226 1.0449949 1.0535921
## 1097 100002636 4924.613 0.5224974 0.5267960
## 1098 100002638 4924.613 0.5224974 0.5267960
## 1099 100002645 9849.226 1.0449949 1.0535921
## 1100 100002647 4924.613 0.5224974 0.5267960
## 1101 100002650 14773.839 1.5674923 1.5803881
## 1102 100002651 4924.613 0.5224974 0.5267960
## 1103 100002655 4924.613 0.5224974 0.5267960
## 1104 100002656 4924.613 0.5224974 0.5267960
## 1105 100002660 4924.613 0.5224974 0.5267960
## 1106 100002661 9849.226 1.0449949 1.0535921
## 1107 100002666 4924.613 0.5224974 0.5267960
## 1108 100002668 4924.613 0.5224974 0.5267960
## 1109 100002672 9849.226 1.0449949 1.0535921
## 1110 100002673 9849.226 1.0449949 1.0535921
## 1111 100002674 4924.613 0.5224974 0.5267960
## 1112 100002676 4924.613 0.5224974 0.5267960
## 1113 100002680 9849.226 1.0449949 1.0535921
## 1114 100002681 9849.226 1.0449949 1.0535921
## 1115 100002686 9849.226 1.0449949 1.0535921
## 1116 100002687 4924.613 0.5224974 0.5267960
## 1117 100002692 9849.226 1.0449949 1.0535921
## 1118 100002696 4924.613 0.5224974 0.5267960
## 1119 100002702 4924.613 0.5224974 0.5267960
## 1120 100002704 9849.226 1.0449949 1.0535921
## 1121 100002705 14773.839 1.5674923 1.5803881
## 1122 100002710 4924.613 0.5224974 0.5267960
## 1123 100002712 9849.226 1.0449949 1.0535921
## 1124 100002715 19698.452 2.0899897 2.1071842
## 1125 100002716 4924.613 0.5224974 0.5267960
## 1126 100002717 19698.452 2.0899897 2.1071842
## 1127 100002721 9849.226 1.0449949 1.0535921
## 1128 100002722 14773.839 1.5674923 1.5803881
## 1129 100002723 9849.226 1.0449949 1.0535921
## 1130 100002727 4924.613 0.5224974 0.5267960
## 1131 100002728 19698.452 2.0899897 2.1071842
## 1132 100002729 44321.517 4.7024769 4.0000000
## 1133 100002732 19698.452 2.0899897 2.1071842
## 1134 100002735 9849.226 1.0449949 1.0535921
## 1135 100002743 4924.613 0.5224974 0.5267960
## 1136 100002745 14773.839 1.5674923 1.5803881
## 1137 100002749 9849.226 1.0449949 1.0535921
## 1138 100002752 9849.226 1.0449949 1.0535921
## 1139 100002756 4924.613 0.5224974 0.5267960
## 1140 100002760 9849.226 1.0449949 1.0535921
## 1141 100002762 4924.613 0.5224974 0.5267960
## 1142 100002764 4924.613 0.5224974 0.5267960
## 1143 100002771 9849.226 1.0449949 1.0535921
## 1144 100002772 19698.452 2.0899897 2.1071842
## 1145 100002774 9849.226 1.0449949 1.0535921
## 1146 100002776 9849.226 1.0449949 1.0535921
## 1147 100002777 4924.613 0.5224974 0.5267960
## 1148 100002779 4924.613 0.5224974 0.5267960
## 1149 100002780 9849.226 1.0449949 1.0535921
## 1150 100002785 4924.613 0.5224974 0.5267960
## 1151 100002787 4924.613 0.5224974 0.5267960
## 1152 100002790 4924.613 0.5224974 0.5267960
## 1153 100002794 4924.613 0.5224974 0.5267960
## 1154 100002797 14773.839 1.5674923 1.5803881
## 1155 100002799 9849.226 1.0449949 1.0535921
## 1156 100002800 9849.226 1.0449949 1.0535921
## 1157 100002801 9849.226 1.0449949 1.0535921
## 1158 100002802 4924.613 0.5224974 0.5267960
## 1159 100002804 4924.613 0.5224974 0.5267960
## 1160 100002805 9849.226 1.0449949 1.0535921
## 1161 100002808 9849.226 1.0449949 1.0535921
## 1162 100002811 9849.226 1.0449949 1.0535921
## 1163 100002815 4924.613 0.5224974 0.5267960
## 1164 100002816 4924.613 0.5224974 0.5267960
## 1165 100002817 4924.613 0.5224974 0.5267960
## 1166 100002819 4924.613 0.5224974 0.5267960
## 1167 100002823 9849.226 1.0449949 1.0535921
## 1168 100002824 24623.065 2.6124871 2.6339802
## 1169 100002826 9849.226 1.0449949 1.0535921
## 1170 100002827 9849.226 1.0449949 1.0535921
## 1171 100002831 9849.226 1.0449949 1.0535921
## 1172 100002832 9849.226 1.0449949 1.0535921
## 1173 100002833 9849.226 1.0449949 1.0535921
## 1174 100002834 4924.613 0.5224974 0.5267960
## 1175 100002836 9849.226 1.0449949 1.0535921
## 1176 100002838 9849.226 1.0449949 1.0535921
## 1177 100002840 14773.839 1.5674923 1.5803881
## 1178 100002845 4924.613 0.5224974 0.5267960
## 1179 100002848 9849.226 1.0449949 1.0535921
## 1180 100002850 9849.226 1.0449949 1.0535921
## 1181 100002852 9849.226 1.0449949 1.0535921
## 1182 100002853 9849.226 1.0449949 1.0535921
## 1183 100002857 4924.613 0.5224974 0.5267960
## 1184 100002859 9849.226 1.0449949 1.0535921
## 1185 100002863 4924.613 0.5224974 0.5267960
## 1186 100002865 9849.226 1.0449949 1.0535921
## 1187 100002866 9849.226 1.0449949 1.0535921
## 1188 100002868 4924.613 0.5224974 0.5267960
## 1189 100002869 4924.613 0.5224974 0.5267960
## 1190 100002873 9849.226 1.0449949 1.0535921
## 1191 100002874 4924.613 0.5224974 0.5267960
## 1192 100002878 9849.226 1.0449949 1.0535921
## 1193 100002889 4924.613 0.5224974 0.5267960
## 1194 100002893 9849.226 1.0449949 1.0535921
## 1195 100002897 9849.226 1.0449949 1.0535921
## 1196 100002901 4924.613 0.5224974 0.5267960
## 1197 100002902 9849.226 1.0449949 1.0535921
## 1198 100002906 9849.226 1.0449949 1.0535921
## 1199 100002908 9849.226 1.0449949 1.0535921
## 1200 100002912 9849.226 1.0449949 1.0535921
## 1201 100002913 9849.226 1.0449949 1.0535921
## 1202 100002914 4924.613 0.5224974 0.5267960
## 1203 100002917 9849.226 1.0449949 1.0535921
## 1204 100002920 4924.613 0.5224974 0.5267960
## 1205 100002921 9849.226 1.0449949 1.0535921
## 1206 100002923 4924.613 0.5224974 0.5267960
## 1207 100002924 4924.613 0.5224974 0.5267960
## 1208 100002927 4924.613 0.5224974 0.5267960
## 1209 100002930 9849.226 1.0449949 1.0535921
## 1210 100002934 9849.226 1.0449949 1.0535921
## 1211 100002935 9849.226 1.0449949 1.0535921
## 1212 100002936 9849.226 1.0449949 1.0535921
## 1213 100002937 9849.226 1.0449949 1.0535921
## 1214 100002941 14773.839 1.5674923 1.5803881
## 1215 100002944 4924.613 0.5224974 0.5267960
## 1216 100002946 4924.613 0.5224974 0.5267960
## 1217 100002950 4924.613 0.5224974 0.5267960
## 1218 100002953 4924.613 0.5224974 0.5267960
## 1219 100002955 9849.226 1.0449949 1.0535921
## 1220 100002961 19698.452 2.0899897 2.1071842
## 1221 100002962 14773.839 1.5674923 1.5803881
## 1222 100002963 19698.452 2.0899897 2.1071842
## 1223 100002964 19698.452 2.0899897 2.1071842
## 1224 100002965 19698.452 2.0899897 2.1071842
## 1225 100002970 14773.839 1.5674923 1.5803881
## 1226 100002972 14773.839 1.5674923 1.5803881
## 1227 100002974 9849.226 1.0449949 1.0535921
## 1228 100002976 9849.226 1.0449949 1.0535921
## 1229 100002980 14773.839 1.5674923 1.5803881
## 1230 100002984 14773.839 1.5674923 1.5803881
## 1231 100002986 4924.613 0.5224974 0.5267960
## 1232 100002987 4924.613 0.5224974 0.5267960
## 1233 100002991 9849.226 1.0449949 1.0535921
## 1234 100002992 9849.226 1.0449949 1.0535921
## 1235 100002998 9849.226 1.0449949 1.0535921
## 1236 100003000 9849.226 1.0449949 1.0535921
## 1237 100003001 9849.226 1.0449949 1.0535921
## 1238 100003002 9849.226 1.0449949 1.0535921
## 1239 100003003 9849.226 1.0449949 1.0535921
## 1240 100003004 4924.613 0.5224974 0.5267960
## 1241 100003005 9849.226 1.0449949 1.0535921
## 1242 100003010 9849.226 1.0449949 1.0535921
## 1243 100003013 4924.613 0.5224974 0.5267960
## 1244 100003014 9849.226 1.0449949 1.0535921
## 1245 100003015 14773.839 1.5674923 1.5803881
## 1246 100003017 4924.613 0.5224974 0.5267960
## 1247 100003018 9849.226 1.0449949 1.0535921
## 1248 100003019 4924.613 0.5224974 0.5267960
## 1249 100003020 4924.613 0.5224974 0.5267960
## 1250 100003022 9849.226 1.0449949 1.0535921
## 1251 100003025 9849.226 1.0449949 1.0535921
## 1252 100003031 4924.613 0.5224974 0.5267960
## 1253 100003036 9849.226 1.0449949 1.0535921
## 1254 100003038 9849.226 1.0449949 1.0535921
## 1255 100003041 4924.613 0.5224974 0.5267960
## 1256 100003042 4924.613 0.5224974 0.5267960
## 1257 100003044 9849.226 1.0449949 1.0535921
## 1258 100003045 9849.226 1.0449949 1.0535921
## 1259 100003046 9849.226 1.0449949 1.0535921
## 1260 100003047 4924.613 0.5224974 0.5267960
## 1261 100003052 9849.226 1.0449949 1.0535921
## 1262 100003054 9849.226 1.0449949 1.0535921
## 1263 100003056 14773.839 1.5674923 1.5803881
## 1264 100003058 4924.613 0.5224974 0.5267960
## 1265 100003064 4924.613 0.5224974 0.5267960
## 1266 100003069 4924.613 0.5224974 0.5267960
## 1267 100003071 4924.613 0.5224974 0.5267960
## 1268 100003072 9849.226 1.0449949 1.0535921
## 1269 100003073 9849.226 1.0449949 1.0535921
## 1270 100003074 14773.839 1.5674923 1.5803881
## 1271 100003075 9849.226 1.0449949 1.0535921
## 1272 100003076 9849.226 1.0449949 1.0535921
## 1273 100003077 9849.226 1.0449949 1.0535921
## 1274 100003078 4924.613 0.5224974 0.5267960
## 1275 100003079 9849.226 1.0449949 1.0535921
## 1276 100003084 4924.613 0.5224974 0.5267960
## 1277 100003087 9849.226 1.0449949 1.0535921
## 1278 100003088 9849.226 1.0449949 1.0535921
## 1279 100003090 9849.226 1.0449949 1.0535921
## 1280 100003092 19698.452 2.0899897 2.1071842
## 1281 100003093 9849.226 1.0449949 1.0535921
## 1282 100003094 9849.226 1.0449949 1.0535921
## 1283 100003098 4924.613 0.5224974 0.5267960
## 1284 100003099 4924.613 0.5224974 0.5267960
## 1285 100003101 4924.613 0.5224974 0.5267960
## 1286 100003103 9849.226 1.0449949 1.0535921
## 1287 100003108 4924.613 0.5224974 0.5267960
## 1288 100003109 4924.613 0.5224974 0.5267960
## 1289 100003112 4924.613 0.5224974 0.5267960
## 1290 100003113 9849.226 1.0449949 1.0535921
## 1291 100003114 4924.613 0.5224974 0.5267960
## 1292 100003115 9849.226 1.0449949 1.0535921
## 1293 100003116 29547.678 3.1349846 3.1607763
## 1294 100003118 9849.226 1.0449949 1.0535921
## 1295 100003119 4924.613 0.5224974 0.5267960
## 1296 100003124 9849.226 1.0449949 1.0535921
## 1297 100003128 4924.613 0.5224974 0.5267960
## 1298 100003130 9849.226 1.0449949 1.0535921
## 1299 100003136 9849.226 1.0449949 1.0535921
## 1300 100003138 7309.389 0.7755203 0.7819005
## 1301 100003140 9849.226 1.0449949 1.0535921
## 1302 100003141 9849.226 1.0449949 1.0535921
## 1303 100003142 4924.613 0.5224974 0.5267960
## 1304 100003143 4924.613 0.5224974 0.5267960
## 1305 100003145 4924.613 0.5224974 0.5267960
## 1306 100003146 9849.226 1.0449949 1.0535921
## 1307 100003150 9849.226 1.0449949 1.0535921
## 1308 100003151 9849.226 1.0449949 1.0535921
## 1309 100003152 9849.226 1.0449949 1.0535921
## 1310 100003154 9849.226 1.0449949 1.0535921
## 1311 100003159 4924.613 0.5224974 0.5267960
## 1312 100003161 19698.452 2.0899897 2.1071842
## 1313 100003162 9849.226 1.0449949 1.0535921
## 1314 100003163 9849.226 1.0449949 1.0535921
## 1315 100003165 4924.613 0.5224974 0.5267960
## 1316 100003166 4924.613 0.5224974 0.5267960
## 1317 100003167 9849.226 1.0449949 1.0535921
## 1318 100003175 4924.613 0.5224974 0.5267960
## 1319 100003177 4924.613 0.5224974 0.5267960
## 1320 100003180 9849.226 1.0449949 1.0535921
## 1321 100003181 9849.226 1.0449949 1.0535921
## 1322 100003183 4924.613 0.5224974 0.5267960
## 1323 100003184 4924.613 0.5224974 0.5267960
## 1324 100003188 9849.226 1.0449949 1.0535921
## 1325 100003189 14773.839 1.5674923 1.5803881
## 1326 100003192 9849.226 1.0449949 1.0535921
## 1327 100003194 4924.613 0.5224974 0.5267960
## 1328 100003196 14773.839 1.5674923 1.5803881
## 1329 100003197 9849.226 1.0449949 1.0535921
## 1330 100003201 9849.226 1.0449949 1.0535921
## 1331 100003206 9849.226 1.0449949 1.0535921
## 1332 100003208 9849.226 1.0449949 1.0535921
## 1333 100003212 4924.613 0.5224974 0.5267960
## 1334 100003216 14773.839 1.5674923 1.5803881
## 1335 100003217 14773.839 1.5674923 1.5803881
## 1336 100003221 9849.226 1.0449949 1.0535921
## 1337 100003222 4924.613 0.5224974 0.5267960
## 1338 100003223 9849.226 1.0449949 1.0535921
## 1339 100003224 4924.613 0.5224974 0.5267960
## 1340 100003225 4924.613 0.5224974 0.5267960
## 1341 100003227 4924.613 0.5224974 0.5267960
## 1342 100003228 4924.613 0.5224974 0.5267960
## 1343 100003230 4924.613 0.5224974 0.5267960
## 1344 100003231 19698.452 2.0899897 2.1071842
## 1345 100003238 4924.613 0.5224974 0.5267960
## 1346 100003246 14773.839 1.5674923 1.5803881
## 1347 100003250 4924.613 0.5224974 0.5267960
## 1348 100003251 9849.226 1.0449949 1.0535921
## 1349 100003253 4924.613 0.5224974 0.5267960
## 1350 100003255 14773.839 1.5674923 1.5803881
## 1351 100003261 4924.613 0.5224974 0.5267960
## 1352 100003263 9849.226 1.0449949 1.0535921
## 1353 100003267 9849.226 1.0449949 1.0535921
## 1354 100003269 9849.226 1.0449949 1.0535921
## 1355 100003270 9849.226 1.0449949 1.0535921
## 1356 100003273 4924.613 0.5224974 0.5267960
## 1357 100003283 9849.226 1.0449949 1.0535921
## 1358 100003288 9849.226 1.0449949 1.0535921
## 1359 100003290 9849.226 1.0449949 1.0535921
## 1360 100003291 4924.613 0.5224974 0.5267960
## 1361 100003297 4924.613 0.5224974 0.5267960
## 1362 100003298 4924.613 0.5224974 0.5267960
## 1363 100003301 9849.226 1.0449949 1.0535921
## 1364 100003302 9849.226 1.0449949 1.0535921
## 1365 100003305 9849.226 1.0449949 1.0535921
## 1366 100003306 9849.226 1.0449949 1.0535921
## 1367 100003307 9849.226 1.0449949 1.0535921
## 1368 100003309 9849.226 1.0449949 1.0535921
## 1369 100003311 9849.226 1.0449949 1.0535921
## 1370 100003312 19698.452 2.0899897 2.1071842
## 1371 100003313 4924.613 0.5224974 0.5267960
## 1372 100003319 4924.613 0.5224974 0.5267960
## 1373 100003323 4924.613 0.5224974 0.5267960
## 1374 100003326 9849.226 1.0449949 1.0535921
## 1375 100003329 9849.226 1.0449949 1.0535921
## 1376 100003332 9849.226 1.0449949 1.0535921
## 1377 100003333 9849.226 1.0449949 1.0535921
## 1378 100003335 9849.226 1.0449949 1.0535921
## 1379 100003337 14773.839 1.5674923 1.5803881
## 1380 100003339 4924.613 0.5224974 0.5267960
## 1381 100003344 9849.226 1.0449949 1.0535921
## 1382 100003345 4924.613 0.5224974 0.5267960
## 1383 100003346 14773.839 1.5674923 1.5803881
## 1384 100003351 9849.226 1.0449949 1.0535921
## 1385 100003352 4924.613 0.5224974 0.5267960
## 1386 100003359 14773.839 1.5674923 1.5803881
## 1387 100003362 4924.613 0.5224974 0.5267960
## 1388 100003365 9849.226 1.0449949 1.0535921
## 1389 100003370 4924.613 0.5224974 0.5267960
## 1390 100003371 4924.613 0.5224974 0.5267960
## 1391 100003376 9849.226 1.0449949 1.0535921
## 1392 100003382 9849.226 1.0449949 1.0535921
## 1393 100003385 9849.226 1.0449949 1.0535921
## 1394 100003386 19698.452 2.0899897 2.1071842
## 1395 100003387 9849.226 1.0449949 1.0535921
## 1396 100003389 14773.839 1.5674923 1.5803881
## 1397 100003390 9849.226 1.0449949 1.0535921
## 1398 100003391 9849.226 1.0449949 1.0535921
## 1399 100003394 9849.226 1.0449949 1.0535921
## 1400 100003395 9849.226 1.0449949 1.0535921
## 1401 100003397 9849.226 1.0449949 1.0535921
## 1402 100003406 19698.452 2.0899897 2.1071842
## 1403 100003408 9849.226 1.0449949 1.0535921
## 1404 100003410 4924.613 0.5224974 0.5267960
## 1405 100003412 9849.226 1.0449949 1.0535921
## 1406 100003417 4924.613 0.5224974 0.5267960
## 1407 100003420 4924.613 0.5224974 0.5267960
## 1408 100003422 9849.226 1.0449949 1.0535921
## 1409 100003423 4924.613 0.5224974 0.5267960
## 1410 100003427 4924.613 0.5224974 0.5267960
## 1411 100003431 4924.613 0.5224974 0.5267960
## 1412 100003432 4924.613 0.5224974 0.5267960
## 1413 100003433 9849.226 1.0449949 1.0535921
## 1414 100003435 4924.613 0.5224974 0.5267960
## 1415 100003437 4924.613 0.5224974 0.5267960
## 1416 100003441 4924.613 0.5224974 0.5267960
## 1417 100003446 9849.226 1.0449949 1.0535921
## 1418 100003447 4924.613 0.5224974 0.5267960
## 1419 100003450 9849.226 1.0449949 1.0535921
## 1420 100003451 9849.226 1.0449949 1.0535921
## 1421 100003452 4924.613 0.5224974 0.5267960
## 1422 100003454 9849.226 1.0449949 1.0535921
## 1423 100003455 14773.839 1.5674923 1.5803881
## 1424 100003456 9849.226 1.0449949 1.0535921
## 1425 100003462 4924.613 0.5224974 0.5267960
## 1426 100003463 9849.226 1.0449949 1.0535921
## 1427 100003464 4924.613 0.5224974 0.5267960
## 1428 100003465 9849.226 1.0449949 1.0535921
## 1429 100003466 9849.226 1.0449949 1.0535921
## 1430 100003467 9849.226 1.0449949 1.0535921
## 1431 100003468 4924.613 0.5224974 0.5267960
## 1432 100003472 9849.226 1.0449949 1.0535921
## 1433 100003473 9849.226 1.0449949 1.0535921
## 1434 100003475 14773.839 1.5674923 1.5803881
## 1435 100003476 9849.226 1.0449949 1.0535921
## 1436 100003481 4924.613 0.5224974 0.5267960
## 1437 100003484 14773.839 1.5674923 1.5803881
## 1438 100003485 9849.226 1.0449949 1.0535921
## 1439 100003487 4924.613 0.5224974 0.5267960
## 1440 100003488 9849.226 1.0449949 1.0535921
## 1441 100003491 9849.226 1.0449949 1.0535921
## 1442 100003496 4924.613 0.5224974 0.5267960
## 1443 100003497 9849.226 1.0449949 1.0535921
## 1444 100003498 4924.613 0.5224974 0.5267960
## 1445 100003501 9849.226 1.0449949 1.0535921
## 1446 100003502 9849.226 1.0449949 1.0535921
## 1447 100003503 9849.226 1.0449949 1.0535921
## 1448 100003505 19698.452 2.0899897 2.1071842
## 1449 100003507 4924.613 0.5224974 0.5267960
## 1450 100003508 4924.613 0.5224974 0.5267960
## 1451 100003509 4924.613 0.5224974 0.5267960
## 1452 100003512 4924.613 0.5224974 0.5267960
## 1453 100003519 4924.613 0.5224974 0.5267960
## 1454 100003524 19698.452 2.0899897 2.1071842
## 1455 100003527 4924.613 0.5224974 0.5267960
## 1456 100003529 9849.226 1.0449949 1.0535921
## 1457 100003530 4924.613 0.5224974 0.5267960
## 1458 100003534 9849.226 1.0449949 1.0535921
## 1459 100003535 9849.226 1.0449949 1.0535921
## 1460 100003538 9849.226 1.0449949 1.0535921
## 1461 100003541 4924.613 0.5224974 0.5267960
## 1462 100003546 9849.226 1.0449949 1.0535921
## 1463 100003547 9849.226 1.0449949 1.0535921
## 1464 100003551 9849.226 1.0449949 1.0535921
## 1465 100003553 9849.226 1.0449949 1.0535921
## 1466 100003557 9849.226 1.0449949 1.0535921
## 1467 100003559 4924.613 0.5224974 0.5267960
## 1468 100003562 19698.452 2.0899897 2.1071842
## 1469 100003565 9849.226 1.0449949 1.0535921
## 1470 100003566 9849.226 1.0449949 1.0535921
## 1471 100003569 9849.226 1.0449949 1.0535921
## 1472 100003570 9849.226 1.0449949 1.0535921
## 1473 100003574 19698.452 2.0899897 2.1071842
## 1474 100003576 4924.613 0.5224974 0.5267960
## 1475 100003577 9849.226 1.0449949 1.0535921
## 1476 100003581 9849.226 1.0449949 1.0535921
## 1477 100003584 14773.839 1.5674923 1.5803881
## 1478 100003586 14773.839 1.5674923 1.5803881
## 1479 100003587 4924.613 0.5224974 0.5267960
## 1480 100003594 4924.613 0.5224974 0.5267960
## 1481 100003595 14773.839 1.5674923 1.5803881
## 1482 100003597 9849.226 1.0449949 1.0535921
## 1483 100003599 14773.839 1.5674923 1.5803881
## 1484 100003600 14773.839 1.5674923 1.5803881
## 1485 100003603 9849.226 1.0449949 1.0535921
## 1486 100003605 9849.226 1.0449949 1.0535921
## 1487 100003610 4924.613 0.5224974 0.5267960
## 1488 100003612 4924.613 0.5224974 0.5267960
## 1489 100003617 9849.226 1.0449949 1.0535921
## 1490 100003619 9849.226 1.0449949 1.0535921
## 1491 100003622 9849.226 1.0449949 1.0535921
## 1492 100003623 9849.226 1.0449949 1.0535921
## 1493 100003626 9849.226 1.0449949 1.0535921
## 1494 100003627 9849.226 1.0449949 1.0535921
## 1495 100003628 4924.613 0.5224974 0.5267960
## 1496 100003631 4924.613 0.5224974 0.5267960
## 1497 100003632 9849.226 1.0449949 1.0535921
## 1498 100003633 4924.613 0.5224974 0.5267960
## 1499 100003635 9849.226 1.0449949 1.0535921
## 1500 100003636 4924.613 0.5224974 0.5267960
## 1501 100003637 4924.613 0.5224974 0.5267960
## 1502 100003641 4924.613 0.5224974 0.5267960
## 1503 100003643 9849.226 1.0449949 1.0535921
## 1504 100003647 9849.226 1.0449949 1.0535921
## 1505 100003652 4924.613 0.5224974 0.5267960
## 1506 100003653 9849.226 1.0449949 1.0535921
## 1507 100003659 4924.613 0.5224974 0.5267960
## 1508 100003661 4924.613 0.5224974 0.5267960
## 1509 100003662 9849.226 1.0449949 1.0535921
## 1510 100003667 4924.613 0.5224974 0.5267960
## 1511 100003669 9849.226 1.0449949 1.0535921
## 1512 100003672 24623.065 2.6124871 2.6339802
## 1513 100003675 4924.613 0.5224974 0.5267960
## 1514 100003693 19698.452 2.0899897 2.1071842
## 1515 100003694 9849.226 1.0449949 1.0535921
## 1516 100003696 4924.613 0.5224974 0.5267960
## 1517 100003699 4924.613 0.5224974 0.5267960
## 1518 100003703 4924.613 0.5224974 0.5267960
## 1519 100003710 9849.226 1.0449949 1.0535921
## 1520 100003711 14773.839 1.5674923 1.5803881
## 1521 100003715 9849.226 1.0449949 1.0535921
## 1522 100003719 9849.226 1.0449949 1.0535921
## 1523 100003720 9849.226 1.0449949 1.0535921
## 1524 100003721 9849.226 1.0449949 1.0535921
## 1525 100003724 14773.839 1.5674923 1.5803881
## 1526 100003725 9849.226 1.0449949 1.0535921
## 1527 100003726 14773.839 1.5674923 1.5803881
## 1528 100003727 4924.613 0.5224974 0.5267960
## 1529 100003729 9849.226 1.0449949 1.0535921
## 1530 100003730 9849.226 1.0449949 1.0535921
## 1531 100003733 9849.226 1.0449949 1.0535921
## 1532 100003736 9849.226 1.0449949 1.0535921
## 1533 100003737 9849.226 1.0449949 1.0535921
## 1534 100003738 9849.226 1.0449949 1.0535921
## 1535 100003740 9849.226 1.0449949 1.0535921
## 1536 100003741 4924.613 0.5224974 0.5267960
## 1537 100003742 9849.226 1.0449949 1.0535921
## 1538 100003746 14773.839 1.5674923 1.5803881
## 1539 100003747 9849.226 1.0449949 1.0535921
## 1540 100003748 9849.226 1.0449949 1.0535921
## 1541 100003749 9849.226 1.0449949 1.0535921
## 1542 100003751 9849.226 1.0449949 1.0535921
## 1543 100003756 4924.613 0.5224974 0.5267960
## 1544 100003758 9849.226 1.0449949 1.0535921
## 1545 100003759 9849.226 1.0449949 1.0535921
## 1546 100003763 14773.839 1.5674923 1.5803881
## 1547 100003764 4924.613 0.5224974 0.5267960
## 1548 100003765 4924.613 0.5224974 0.5267960
## 1549 100003766 14773.839 1.5674923 1.5803881
## 1550 100003767 9849.226 1.0449949 1.0535921
## 1551 100003768 9849.226 1.0449949 1.0535921
## 1552 100003771 4924.613 0.5224974 0.5267960
## 1553 100003773 9849.226 1.0449949 1.0535921
## 1554 100003774 9849.226 1.0449949 1.0535921
## 1555 100003780 4924.613 0.5224974 0.5267960
## 1556 100003781 9849.226 1.0449949 1.0535921
## 1557 100003782 9849.226 1.0449949 1.0535921
## 1558 100003783 4924.613 0.5224974 0.5267960
## 1559 100003784 9849.226 1.0449949 1.0535921
## 1560 100003786 14773.839 1.5674923 1.5803881
## 1561 100003788 9849.226 1.0449949 1.0535921
## 1562 100003791 4924.613 0.5224974 0.5267960
## 1563 100003794 9849.226 1.0449949 1.0535921
## 1564 100003795 4924.613 0.5224974 0.5267960
## 1565 100003800 14773.839 1.5674923 1.5803881
## 1566 100003802 9849.226 1.0449949 1.0535921
## 1567 100003808 4924.613 0.5224974 0.5267960
## 1568 100003810 9849.226 1.0449949 1.0535921
## 1569 100003811 4924.613 0.5224974 0.5267960
## 1570 100003815 9849.226 1.0449949 1.0535921
## 1571 100003816 9849.226 1.0449949 1.0535921
## 1572 100003817 4924.613 0.5224974 0.5267960
## 1573 100003818 14773.839 1.5674923 1.5803881
## 1574 100003820 4924.613 0.5224974 0.5267960
## 1575 100003826 9849.226 1.0449949 1.0535921
## 1576 100003838 9849.226 1.0449949 1.0535921
## 1577 100003839 4924.613 0.5224974 0.5267960
## 1578 100003840 9849.226 1.0449949 1.0535921
## 1579 100003842 4924.613 0.5224974 0.5267960
## 1580 100003845 19698.452 2.0899897 2.1071842
## 1581 100003849 9849.226 1.0449949 1.0535921
## 1582 100003858 9849.226 1.0449949 1.0535921
## 1583 100003860 24623.065 2.6124871 2.6339802
## 1584 100003861 14773.839 1.5674923 1.5803881
## 1585 100003863 9849.226 1.0449949 1.0535921
## 1586 100003864 9849.226 1.0449949 1.0535921
## 1587 100003870 4924.613 0.5224974 0.5267960
## 1588 100003871 4924.613 0.5224974 0.5267960
## 1589 100003873 19698.452 2.0899897 2.1071842
## 1590 100003874 4924.613 0.5224974 0.5267960
## 1591 100003882 9849.226 1.0449949 1.0535921
## 1592 100003888 9849.226 1.0449949 1.0535921
## 1593 100003891 9849.226 1.0449949 1.0535921
## 1594 100003892 19698.452 2.0899897 2.1071842
## 1595 100003894 4924.613 0.5224974 0.5267960
## 1596 100003897 4924.613 0.5224974 0.5267960
## 1597 100003898 9849.226 1.0449949 1.0535921
## 1598 100003901 4924.613 0.5224974 0.5267960
## 1599 100003903 9849.226 1.0449949 1.0535921
## 1600 100003904 4924.613 0.5224974 0.5267960
## 1601 100003910 4924.613 0.5224974 0.5267960
## 1602 100003913 9849.226 1.0449949 1.0535921
## 1603 100003917 4924.613 0.5224974 0.5267960
## 1604 100003923 9849.226 1.0449949 1.0535921
## 1605 100003925 9849.226 1.0449949 1.0535921
## 1606 100003927 4924.613 0.5224974 0.5267960
## 1607 100003928 9849.226 1.0449949 1.0535921
## 1608 100003930 9849.226 1.0449949 1.0535921
## 1609 100003932 4924.613 0.5224974 0.5267960
## 1610 100003936 9849.226 1.0449949 1.0535921
## 1611 100003937 9849.226 1.0449949 1.0535921
## 1612 100003942 9849.226 1.0449949 1.0535921
## 1613 100003943 9849.226 1.0449949 1.0535921
## 1614 100003944 9849.226 1.0449949 1.0535921
## 1615 100003946 9849.226 1.0449949 1.0535921
## 1616 100003948 4924.613 0.5224974 0.5267960
## 1617 100003950 9849.226 1.0449949 1.0535921
## 1618 100003951 19698.452 2.0899897 2.1071842
## 1619 100003952 4924.613 0.5224974 0.5267960
## 1620 100003956 4924.613 0.5224974 0.5267960
## 1621 100003957 4924.613 0.5224974 0.5267960
## 1622 100003959 4924.613 0.5224974 0.5267960
## 1623 100003961 9849.226 1.0449949 1.0535921
## 1624 100003962 4924.613 0.5224974 0.5267960
## 1625 100003967 9849.226 1.0449949 1.0535921
## 1626 100003969 4924.613 0.5224974 0.5267960
## 1627 100003970 9849.226 1.0449949 1.0535921
## 1628 100003972 4924.613 0.5224974 0.5267960
## 1629 100003973 24623.065 2.6124871 2.6339802
## 1630 100003976 14773.839 1.5674923 1.5803881
## 1631 100003977 9849.226 1.0449949 1.0535921
## 1632 100003979 4924.613 0.5224974 0.5267960
## 1633 100003980 9849.226 1.0449949 1.0535921
## 1634 100003981 9849.226 1.0449949 1.0535921
## 1635 100003983 9849.226 1.0449949 1.0535921
## 1636 100003986 9849.226 1.0449949 1.0535921
## 1637 100003987 4924.613 0.5224974 0.5267960
## 1638 100003988 9849.226 1.0449949 1.0535921
## 1639 100003991 9849.226 1.0449949 1.0535921
## 1640 100003993 4924.613 0.5224974 0.5267960
## 1641 100003995 9849.226 1.0449949 1.0535921
## 1642 100004001 9849.226 1.0449949 1.0535921
## 1643 100004004 9849.226 1.0449949 1.0535921
## 1644 100004006 9849.226 1.0449949 1.0535921
## 1645 100004011 9849.226 1.0449949 1.0535921
## 1646 100004016 9849.226 1.0449949 1.0535921
## 1647 100004019 9849.226 1.0449949 1.0535921
## 1648 100004021 9849.226 1.0449949 1.0535921
## 1649 100004023 9849.226 1.0449949 1.0535921
## 1650 100004027 9849.226 1.0449949 1.0535921
## 1651 100004029 9849.226 1.0449949 1.0535921
## 1652 100004030 19698.452 2.0899897 2.1071842
## 1653 100004038 9849.226 1.0449949 1.0535921
## 1654 100004040 4924.613 0.5224974 0.5267960
## 1655 100004045 9849.226 1.0449949 1.0535921
## 1656 100004047 9849.226 1.0449949 1.0535921
## 1657 100004048 9849.226 1.0449949 1.0535921
## 1658 100004049 4924.613 0.5224974 0.5267960
## 1659 100004050 9849.226 1.0449949 1.0535921
## 1660 100004051 9849.226 1.0449949 1.0535921
## 1661 100004054 9849.226 1.0449949 1.0535921
## 1662 100004060 4924.613 0.5224974 0.5267960
## 1663 100004067 14773.839 1.5674923 1.5803881
## 1664 100004069 4924.613 0.5224974 0.5267960
## 1665 100004070 4924.613 0.5224974 0.5267960
## 1666 100004072 19698.452 2.0899897 2.1071842
## 1667 100004077 9849.226 1.0449949 1.0535921
## 1668 100004078 4924.613 0.5224974 0.5267960
## 1669 100004082 9849.226 1.0449949 1.0535921
## 1670 100004083 9849.226 1.0449949 1.0535921
## 1671 100004089 4924.613 0.5224974 0.5267960
## 1672 100004092 9849.226 1.0449949 1.0535921
## 1673 100004094 9849.226 1.0449949 1.0535921
## 1674 100004098 9849.226 1.0449949 1.0535921
## 1675 100004099 9849.226 1.0449949 1.0535921
## 1676 100004102 9849.226 1.0449949 1.0535921
## 1677 100004103 9849.226 1.0449949 1.0535921
## 1678 100004106 4924.613 0.5224974 0.5267960
## 1679 100004107 4924.613 0.5224974 0.5267960
## 1680 100004108 19698.452 2.0899897 2.1071842
## 1681 100004111 4924.613 0.5224974 0.5267960
## 1682 100004116 4924.613 0.5224974 0.5267960
## 1683 100004117 9849.226 1.0449949 1.0535921
## 1684 100004119 9849.226 1.0449949 1.0535921
## 1685 100004121 14773.839 1.5674923 1.5803881
## 1686 100004127 4924.613 0.5224974 0.5267960
## 1687 100004129 9849.226 1.0449949 1.0535921
## 1688 100004135 4924.613 0.5224974 0.5267960
## 1689 100004136 4924.613 0.5224974 0.5267960
## 1690 100004144 9849.226 1.0449949 1.0535921
## 1691 100004145 4924.613 0.5224974 0.5267960
## 1692 100004147 4924.613 0.5224974 0.5267960
## 1693 100004150 4924.613 0.5224974 0.5267960
## 1694 100004152 14773.839 1.5674923 1.5803881
## 1695 100004158 14773.839 1.5674923 1.5803881
## 1696 100004159 9849.226 1.0449949 1.0535921
## 1697 100004160 9849.226 1.0449949 1.0535921
## 1698 100004161 9849.226 1.0449949 1.0535921
## 1699 100004163 9849.226 1.0449949 1.0535921
## 1700 100004165 9849.226 1.0449949 1.0535921
## 1701 100004166 9849.226 1.0449949 1.0535921
## 1702 100004167 4924.613 0.5224974 0.5267960
## 1703 100004173 9849.226 1.0449949 1.0535921
## 1704 100004175 4924.613 0.5224974 0.5267960
## 1705 100004177 9849.226 1.0449949 1.0535921
## 1706 100004182 4924.613 0.5224974 0.5267960
## 1707 100004183 9849.226 1.0449949 1.0535921
## 1708 100004185 9849.226 1.0449949 1.0535921
## 1709 100004187 14773.839 1.5674923 1.5803881
## 1710 100004191 9849.226 1.0449949 1.0535921
## 1711 100004193 14773.839 1.5674923 1.5803881
## 1712 100004194 9849.226 1.0449949 1.0535921
## 1713 100004196 4924.613 0.5224974 0.5267960
## 1714 100004202 4924.613 0.5224974 0.5267960
## 1715 100004204 9849.226 1.0449949 1.0535921
## 1716 100004206 9849.226 1.0449949 1.0535921
## 1717 100004210 4924.613 0.5224974 0.5267960
## 1718 100004214 9849.226 1.0449949 1.0535921
## 1719 100004216 4924.613 0.5224974 0.5267960
## 1720 100004219 4924.613 0.5224974 0.5267960
## 1721 100004220 19698.452 2.0899897 2.1071842
## 1722 100004222 14773.839 1.5674923 1.5803881
## 1723 100004223 9849.226 1.0449949 1.0535921
## 1724 100004224 4924.613 0.5224974 0.5267960
## 1725 100004225 9849.226 1.0449949 1.0535921
## 1726 100004229 9849.226 1.0449949 1.0535921
## 1727 100004230 4924.613 0.5224974 0.5267960
## 1728 100004232 9849.226 1.0449949 1.0535921
## 1729 100004236 4924.613 0.5224974 0.5267960
## 1730 100004244 9849.226 1.0449949 1.0535921
## 1731 100004245 9849.226 1.0449949 1.0535921
## 1732 100004246 9849.226 1.0449949 1.0535921
## 1733 100004247 4924.613 0.5224974 0.5267960
## 1734 100004248 9849.226 1.0449949 1.0535921
## 1735 100004249 9849.226 1.0449949 1.0535921
## 1736 100004252 14773.839 1.5674923 1.5803881
## 1737 100004254 9849.226 1.0449949 1.0535921
## 1738 100004260 9849.226 1.0449949 1.0535921
## 1739 100004264 4924.613 0.5224974 0.5267960
## 1740 100004265 9849.226 1.0449949 1.0535921
## 1741 100004273 4924.613 0.5224974 0.5267960
## 1742 100004274 9849.226 1.0449949 1.0535921
## 1743 100004275 9849.226 1.0449949 1.0535921
## 1744 100004277 14773.839 1.5674923 1.5803881
## 1745 100004282 14773.839 1.5674923 1.5803881
## 1746 100004285 9849.226 1.0449949 1.0535921
## 1747 100004289 14773.839 1.5674923 1.5803881
## 1748 100004291 9849.226 1.0449949 1.0535921
## 1749 100004296 9849.226 1.0449949 1.0535921
## 1750 100004297 9849.226 1.0449949 1.0535921
## 1751 100004298 4924.613 0.5224974 0.5267960
## 1752 100004300 9849.226 1.0449949 1.0535921
## 1753 100004302 9849.226 1.0449949 1.0535921
## 1754 100004306 9849.226 1.0449949 1.0535921
## 1755 100004311 14773.839 1.5674923 1.5803881
## 1756 100004312 4924.613 0.5224974 0.5267960
## 1757 100004313 9849.226 1.0449949 1.0535921
## 1758 100004317 4924.613 0.5224974 0.5267960
## 1759 100004318 9849.226 1.0449949 1.0535921
## 1760 100004320 9849.226 1.0449949 1.0535921
## 1761 100004330 4924.613 0.5224974 0.5267960
## 1762 100004336 9849.226 1.0449949 1.0535921
## 1763 100004337 4924.613 0.5224974 0.5267960
## 1764 100004343 9849.226 1.0449949 1.0535921
## 1765 100004344 4924.613 0.5224974 0.5267960
## 1766 100004346 14773.839 1.5674923 1.5803881
## 1767 100004348 9849.226 1.0449949 1.0535921
## 1768 100004352 9849.226 1.0449949 1.0535921
## 1769 100004356 9849.226 1.0449949 1.0535921
## 1770 100004361 9849.226 1.0449949 1.0535921
## 1771 100004364 14773.839 1.5674923 1.5803881
## 1772 100004366 9849.226 1.0449949 1.0535921
## 1773 100004367 14773.839 1.5674923 1.5803881
## 1774 100004372 14773.839 1.5674923 1.5803881
## 1775 100004374 14773.839 1.5674923 1.5803881
## 1776 100004376 4924.613 0.5224974 0.5267960
## 1777 100004379 4924.613 0.5224974 0.5267960
## 1778 100004381 4924.613 0.5224974 0.5267960
## 1779 100004384 14773.839 1.5674923 1.5803881
## 1780 100004386 9849.226 1.0449949 1.0535921
## 1781 100004388 9849.226 1.0449949 1.0535921
## 1782 100004389 4924.613 0.5224974 0.5267960
## 1783 100004390 4924.613 0.5224974 0.5267960
## 1784 100004391 9849.226 1.0449949 1.0535921
## 1785 100004394 9849.226 1.0449949 1.0535921
## 1786 100004398 9849.226 1.0449949 1.0535921
## 1787 100004399 4924.613 0.5224974 0.5267960
## 1788 100004401 9849.226 1.0449949 1.0535921
## 1789 100004405 9849.226 1.0449949 1.0535921
## 1790 100004406 9849.226 1.0449949 1.0535921
## 1791 100004411 9849.226 1.0449949 1.0535921
## 1792 100004414 19698.452 2.0899897 2.1071842
## 1793 100004417 19698.452 2.0899897 2.1071842
## 1794 100004419 9849.226 1.0449949 1.0535921
## 1795 100004420 4924.613 0.5224974 0.5267960
## 1796 100004424 4924.613 0.5224974 0.5267960
## 1797 100004425 9849.226 1.0449949 1.0535921
## 1798 100004426 9849.226 1.0449949 1.0535921
## 1799 100004427 9849.226 1.0449949 1.0535921
## 1800 100004428 9849.226 1.0449949 1.0535921
## 1801 100004429 4924.613 0.5224974 0.5267960
## 1802 100004432 9849.226 1.0449949 1.0535921
## 1803 100004433 9849.226 1.0449949 1.0535921
## 1804 100004436 9849.226 1.0449949 1.0535921
## 1805 100004437 4924.613 0.5224974 0.5267960
## 1806 100004440 9849.226 1.0449949 1.0535921
## 1807 100004441 4924.613 0.5224974 0.5267960
## 1808 100004442 4924.613 0.5224974 0.5267960
## 1809 100004443 9849.226 1.0449949 1.0535921
## 1810 100004444 9849.226 1.0449949 1.0535921
## 1811 100004446 9849.226 1.0449949 1.0535921
## 1812 100004448 4924.613 0.5224974 0.5267960
## 1813 100004450 9849.226 1.0449949 1.0535921
## 1814 100004454 4924.613 0.5224974 0.5267960
## 1815 100004457 9849.226 1.0449949 1.0535921
## 1816 100004461 9849.226 1.0449949 1.0535921
## 1817 100004462 9849.226 1.0449949 1.0535921
## 1818 100004463 9849.226 1.0449949 1.0535921
## 1819 100004465 9849.226 1.0449949 1.0535921
## 1820 100004466 4924.613 0.5224974 0.5267960
## 1821 100004467 4924.613 0.5224974 0.5267960
## 1822 100004468 9849.226 1.0449949 1.0535921
## 1823 100004469 9849.226 1.0449949 1.0535921
## 1824 100004473 9849.226 1.0449949 1.0535921
## 1825 100004474 14773.839 1.5674923 1.5803881
## 1826 100004475 9849.226 1.0449949 1.0535921
## 1827 100004477 9849.226 1.0449949 1.0535921
## 1828 100004479 9849.226 1.0449949 1.0535921
## 1829 100004481 14773.839 1.5674923 1.5803881
## 1830 100004486 9849.226 1.0449949 1.0535921
## 1831 100004487 9849.226 1.0449949 1.0535921
## 1832 100004488 4924.613 0.5224974 0.5267960
## 1833 100004495 9849.226 1.0449949 1.0535921
## 1834 100004496 14773.839 1.5674923 1.5803881
## 1835 100004498 9849.226 1.0449949 1.0535921
## 1836 100004500 9849.226 1.0449949 1.0535921
## 1837 100004501 4924.613 0.5224974 0.5267960
## 1838 100004502 4924.613 0.5224974 0.5267960
## 1839 100004504 14773.839 1.5674923 1.5803881
## 1840 100004509 9849.226 1.0449949 1.0535921
## 1841 100004510 9849.226 1.0449949 1.0535921
## 1842 100004511 9849.226 1.0449949 1.0535921
## 1843 100004512 4924.613 0.5224974 0.5267960
## 1844 100004513 9849.226 1.0449949 1.0535921
## 1845 100004516 4924.613 0.5224974 0.5267960
## 1846 100004517 4924.613 0.5224974 0.5267960
## 1847 100004518 4924.613 0.5224974 0.5267960
## 1848 100004519 4924.613 0.5224974 0.5267960
## 1849 100004520 4924.613 0.5224974 0.5267960
## 1850 100004521 4924.613 0.5224974 0.5267960
## 1851 100004522 4924.613 0.5224974 0.5267960
## 1852 100004529 4924.613 0.5224974 0.5267960
## 1853 100004531 19698.452 2.0899897 2.1071842
## 1854 100004537 9849.226 1.0449949 1.0535921
## 1855 100004538 9849.226 1.0449949 1.0535921
## 1856 100004539 9849.226 1.0449949 1.0535921
## 1857 100004542 9849.226 1.0449949 1.0535921
## 1858 100004547 4924.613 0.5224974 0.5267960
## 1859 100004549 9849.226 1.0449949 1.0535921
## 1860 100004550 4924.613 0.5224974 0.5267960
## 1861 100004552 4924.613 0.5224974 0.5267960
## 1862 100004554 4924.613 0.5224974 0.5267960
## 1863 100004556 4924.613 0.5224974 0.5267960
## 1864 100004558 9849.226 1.0449949 1.0535921
## 1865 100004559 14773.839 1.5674923 1.5803881
## 1866 100004561 9849.226 1.0449949 1.0535921
## 1867 100004562 9849.226 1.0449949 1.0535921
## 1868 100004563 9849.226 1.0449949 1.0535921
## 1869 100004564 4924.613 0.5224974 0.5267960
## 1870 100004566 9849.226 1.0449949 1.0535921
## 1871 100004568 9849.226 1.0449949 1.0535921
## 1872 100004569 14773.839 1.5674923 1.5803881
## 1873 100004576 9849.226 1.0449949 1.0535921
## 1874 100004579 9849.226 1.0449949 1.0535921
## 1875 100004580 4924.613 0.5224974 0.5267960
## 1876 100004581 4924.613 0.5224974 0.5267960
## 1877 100004582 9849.226 1.0449949 1.0535921
## 1878 100004583 9849.226 1.0449949 1.0535921
## 1879 100004585 9849.226 1.0449949 1.0535921
## 1880 100004586 9849.226 1.0449949 1.0535921
## 1881 100004589 14773.839 1.5674923 1.5803881
## 1882 100004590 4924.613 0.5224974 0.5267960
## 1883 100004595 4924.613 0.5224974 0.5267960
## 1884 100004599 9849.226 1.0449949 1.0535921
## 1885 100004600 4924.613 0.5224974 0.5267960
## 1886 100004601 14773.839 1.5674923 1.5803881
## 1887 100004605 14773.839 1.5674923 1.5803881
## 1888 100004608 9849.226 1.0449949 1.0535921
## 1889 100004612 9849.226 1.0449949 1.0535921
## 1890 100004614 19698.452 2.0899897 2.1071842
## 1891 100004618 9849.226 1.0449949 1.0535921
## 1892 100004619 9849.226 1.0449949 1.0535921
## 1893 100004624 9849.226 1.0449949 1.0535921
## 1894 100004625 9849.226 1.0449949 1.0535921
## 1895 100004628 9849.226 1.0449949 1.0535921
## 1896 100004629 24623.065 2.6124871 2.6339802
## 1897 100004634 9849.226 1.0449949 1.0535921
## 1898 100004635 4924.613 0.5224974 0.5267960
## 1899 100004638 4924.613 0.5224974 0.5267960
## 1900 100004640 9849.226 1.0449949 1.0535921
## 1901 100004642 4924.613 0.5224974 0.5267960
## 1902 100004644 9849.226 1.0449949 1.0535921
## 1903 100004651 24623.065 2.6124871 2.6339802
## 1904 100004652 9849.226 1.0449949 1.0535921
## 1905 100004653 9849.226 1.0449949 1.0535921
## 1906 100004655 9849.226 1.0449949 1.0535921
## 1907 100004661 4924.613 0.5224974 0.5267960
## 1908 100004667 4924.613 0.5224974 0.5267960
## 1909 100004668 19698.452 2.0899897 2.1071842
## 1910 100004669 9849.226 1.0449949 1.0535921
## 1911 100004671 14773.839 1.5674923 1.5803881
## 1912 100004672 4924.613 0.5224974 0.5267960
## 1913 100004679 9849.226 1.0449949 1.0535921
## 1914 100004684 4924.613 0.5224974 0.5267960
## 1915 100004685 4924.613 0.5224974 0.5267960
## 1916 100004686 9849.226 1.0449949 1.0535921
## 1917 100004687 9849.226 1.0449949 1.0535921
## 1918 100004688 9849.226 1.0449949 1.0535921
## 1919 100004689 9849.226 1.0449949 1.0535921
## 1920 100004691 9849.226 1.0449949 1.0535921
## 1921 100004692 9849.226 1.0449949 1.0535921
## 1922 100004694 4924.613 0.5224974 0.5267960
## 1923 100004698 9849.226 1.0449949 1.0535921
## 1924 100004700 9849.226 1.0449949 1.0535921
## 1925 100004701 9849.226 1.0449949 1.0535921
## 1926 100004702 4924.613 0.5224974 0.5267960
## 1927 100004703 19698.452 2.0899897 2.1071842
## 1928 100004710 9849.226 1.0449949 1.0535921
## 1929 100004713 9849.226 1.0449949 1.0535921
## 1930 100004714 9849.226 1.0449949 1.0535921
## 1931 100004715 4924.613 0.5224974 0.5267960
## 1932 100004729 9849.226 1.0449949 1.0535921
## 1933 100004731 9849.226 1.0449949 1.0535921
## 1934 100004736 9849.226 1.0449949 1.0535921
## 1935 100004738 4924.613 0.5224974 0.5267960
## 1936 100004739 9849.226 1.0449949 1.0535921
## 1937 100004742 14773.839 1.5674923 1.5803881
## 1938 100004749 4924.613 0.5224974 0.5267960
## 1939 100004751 4924.613 0.5224974 0.5267960
## 1940 100004753 4924.613 0.5224974 0.5267960
## 1941 100004754 9849.226 1.0449949 1.0535921
## 1942 100004763 9849.226 1.0449949 1.0535921
## 1943 100004769 9849.226 1.0449949 1.0535921
## 1944 100004771 19698.452 2.0899897 2.1071842
## 1945 100004773 14773.839 1.5674923 1.5803881
## 1946 100004776 9849.226 1.0449949 1.0535921
## 1947 100004780 9849.226 1.0449949 1.0535921
## 1948 100004781 9849.226 1.0449949 1.0535921
## 1949 100004785 9849.226 1.0449949 1.0535921
## 1950 100004786 9849.226 1.0449949 1.0535921
## 1951 100004787 9849.226 1.0449949 1.0535921
## 1952 100004788 4924.613 0.5224974 0.5267960
## 1953 100004793 4924.613 0.5224974 0.5267960
## 1954 100004794 4924.613 0.5224974 0.5267960
## 1955 100004795 9849.226 1.0449949 1.0535921
## 1956 100004797 4924.613 0.5224974 0.5267960
## 1957 100004801 4924.613 0.5224974 0.5267960
## 1958 100004803 14773.839 1.5674923 1.5803881
## 1959 100004809 9849.226 1.0449949 1.0535921
## 1960 100004810 9849.226 1.0449949 1.0535921
## 1961 100004811 4924.613 0.5224974 0.5267960
## 1962 100004817 4924.613 0.5224974 0.5267960
## 1963 100004820 4924.613 0.5224974 0.5267960
## 1964 100004821 24623.065 2.6124871 2.6339802
## 1965 100004824 4924.613 0.5224974 0.5267960
## 1966 100004828 4924.613 0.5224974 0.5267960
## 1967 100004832 9849.226 1.0449949 1.0535921
## 1968 100004834 4924.613 0.5224974 0.5267960
## 1969 100004837 9849.226 1.0449949 1.0535921
## 1970 100004843 9849.226 1.0449949 1.0535921
## 1971 100004844 4924.613 0.5224974 0.5267960
## 1972 100004846 9849.226 1.0449949 1.0535921
## 1973 100004848 9849.226 1.0449949 1.0535921
## 1974 100004850 9849.226 1.0449949 1.0535921
## 1975 100004852 4924.613 0.5224974 0.5267960
## 1976 100004854 4924.613 0.5224974 0.5267960
## 1977 100004856 4924.613 0.5224974 0.5267960
## 1978 100004857 9849.226 1.0449949 1.0535921
## 1979 100004867 9849.226 1.0449949 1.0535921
## 1980 100004871 4924.613 0.5224974 0.5267960
## 1981 100004872 14773.839 1.5674923 1.5803881
## 1982 100004873 4924.613 0.5224974 0.5267960
## 1983 100004875 4924.613 0.5224974 0.5267960
## 1984 100004879 9849.226 1.0449949 1.0535921
## 1985 100004886 9849.226 1.0449949 1.0535921
## 1986 100004889 14773.839 1.5674923 1.5803881
## 1987 100004896 9849.226 1.0449949 1.0535921
## 1988 100004897 9849.226 1.0449949 1.0535921
## 1989 100004901 9849.226 1.0449949 1.0535921
## 1990 100004904 4924.613 0.5224974 0.5267960
## 1991 100004905 9849.226 1.0449949 1.0535921
## 1992 100004909 19698.452 2.0899897 2.1071842
## 1993 100004910 9849.226 1.0449949 1.0535921
## 1994 100004911 14773.839 1.5674923 1.5803881
## 1995 100004912 9849.226 1.0449949 1.0535921
## 1996 100004915 9849.226 1.0449949 1.0535921
## 1997 100004917 4924.613 0.5224974 0.5267960
## 1998 100004918 4924.613 0.5224974 0.5267960
## 1999 100004919 4924.613 0.5224974 0.5267960
## 2000 100004920 9849.226 1.0449949 1.0535921
## 2001 100004923 14773.839 1.5674923 1.5803881
## 2002 100004924 9849.226 1.0449949 1.0535921
## 2003 100004925 4924.613 0.5224974 0.5267960
## 2004 100004926 14773.839 1.5674923 1.5803881
## 2005 100004929 9849.226 1.0449949 1.0535921
## 2006 100004932 9849.226 1.0449949 1.0535921
## 2007 100004933 9849.226 1.0449949 1.0535921
## 2008 100004937 4924.613 0.5224974 0.5267960
## 2009 100004939 4924.613 0.5224974 0.5267960
## 2010 100004944 4924.613 0.5224974 0.5267960
## 2011 100004946 9849.226 1.0449949 1.0535921
## 2012 100004947 14773.839 1.5674923 1.5803881
## 2013 100004950 4924.613 0.5224974 0.5267960
## 2014 100004951 9849.226 1.0449949 1.0535921
## 2015 100004955 9849.226 1.0449949 1.0535921
## 2016 100004956 9849.226 1.0449949 1.0535921
## 2017 100004959 9849.226 1.0449949 1.0535921
## 2018 100004960 4924.613 0.5224974 0.5267960
## 2019 100004962 9849.226 1.0449949 1.0535921
## 2020 100004965 4924.613 0.5224974 0.5267960
## 2021 100004976 9849.226 1.0449949 1.0535921
## 2022 100004980 9849.226 1.0449949 1.0535921
## 2023 100004982 4924.613 0.5224974 0.5267960
## 2024 100004983 9849.226 1.0449949 1.0535921
## 2025 100004987 9849.226 1.0449949 1.0535921
## 2026 100004992 9849.226 1.0449949 1.0535921
## 2027 100004993 4924.613 0.5224974 0.5267960
## 2028 100004996 14773.839 1.5674923 1.5803881
## 2029 100004998 19698.452 2.0899897 2.1071842
## 2030 100005000 9849.226 1.0449949 1.0535921
## 2031 100005002 9849.226 1.0449949 1.0535921
## 2032 100005004 4924.613 0.5224974 0.5267960
## 2033 100005006 9849.226 1.0449949 1.0535921
## 2034 100005007 19698.452 2.0899897 2.1071842
## 2035 100005014 4924.613 0.5224974 0.5267960
## 2036 100005017 9849.226 1.0449949 1.0535921
## 2037 100005028 9849.226 1.0449949 1.0535921
## 2038 100005029 4924.613 0.5224974 0.5267960
## 2039 100005031 4924.613 0.5224974 0.5267960
## 2040 100005035 9849.226 1.0449949 1.0535921
## 2041 100005038 9849.226 1.0449949 1.0535921
## 2042 100005039 9849.226 1.0449949 1.0535921
## 2043 100005040 9849.226 1.0449949 1.0535921
## 2044 100005041 4924.613 0.5224974 0.5267960
## 2045 100005043 4924.613 0.5224974 0.5267960
## 2046 100005045 4924.613 0.5224974 0.5267960
## 2047 100005047 9849.226 1.0449949 1.0535921
## 2048 100005049 4924.613 0.5224974 0.5267960
## 2049 100005050 14773.839 1.5674923 1.5803881
## 2050 100005051 4924.613 0.5224974 0.5267960
## 2051 100005057 4924.613 0.5224974 0.5267960
## 2052 100005063 14773.839 1.5674923 1.5803881
## 2053 100005064 39396.904 4.1799794 4.0000000
## 2054 100005072 9849.226 1.0449949 1.0535921
## 2055 100005073 14773.839 1.5674923 1.5803881
## 2056 100005079 4924.613 0.5224974 0.5267960
## 2057 100005082 4924.613 0.5224974 0.5267960
## 2058 100005085 59095.356 6.2699691 4.0000000
## 2059 100005086 9849.226 1.0449949 1.0535921
## 2060 100005089 9849.226 1.0449949 1.0535921
## 2061 100005090 9849.226 1.0449949 1.0535921
## 2062 100005096 9849.226 1.0449949 1.0535921
## 2063 100005097 4924.613 0.5224974 0.5267960
## 2064 100005098 9849.226 1.0449949 1.0535921
## 2065 100005104 4924.613 0.5224974 0.5267960
## 2066 100005107 9849.226 1.0449949 1.0535921
## 2067 100005109 9849.226 1.0449949 1.0535921
## 2068 100005110 4924.613 0.5224974 0.5267960
## 2069 100005112 9849.226 1.0449949 1.0535921
## 2070 100005113 14773.839 1.5674923 1.5803881
## 2071 100005115 9849.226 1.0449949 1.0535921
## 2072 100005118 9849.226 1.0449949 1.0535921
## 2073 100005119 9849.226 1.0449949 1.0535921
## 2074 100005123 9849.226 1.0449949 1.0535921
## 2075 100005125 4924.613 0.5224974 0.5267960
## 2076 100005134 9849.226 1.0449949 1.0535921
## 2077 100005137 4924.613 0.5224974 0.5267960
## 2078 100005140 9849.226 1.0449949 1.0535921
## 2079 100005142 4924.613 0.5224974 0.5267960
## 2080 100005144 19698.452 2.0899897 2.1071842
## 2081 100005147 9849.226 1.0449949 1.0535921
## 2082 100005152 4924.613 0.5224974 0.5267960
## 2083 100005153 9849.226 1.0449949 1.0535921
## 2084 100005156 9849.226 1.0449949 1.0535921
## 2085 100005157 14773.839 1.5674923 1.5803881
## 2086 100005158 9849.226 1.0449949 1.0535921
## 2087 100005160 9849.226 1.0449949 1.0535921
## 2088 100005161 9849.226 1.0449949 1.0535921
## 2089 100005166 9849.226 1.0449949 1.0535921
## 2090 100005167 9849.226 1.0449949 1.0535921
## 2091 100005168 14773.839 1.5674923 1.5803881
## 2092 100005169 9849.226 1.0449949 1.0535921
## 2093 100005170 4924.613 0.5224974 0.5267960
## 2094 100005171 4924.613 0.5224974 0.5267960
## 2095 100005172 9849.226 1.0449949 1.0535921
## 2096 100005175 19698.452 2.0899897 2.1071842
## 2097 100005177 4924.613 0.5224974 0.5267960
## 2098 100005179 9849.226 1.0449949 1.0535921
## 2099 100005181 9849.226 1.0449949 1.0535921
## 2100 100005182 4924.613 0.5224974 0.5267960
## 2101 100005183 9849.226 1.0449949 1.0535921
## 2102 100005187 9849.226 1.0449949 1.0535921
## 2103 100005189 14773.839 1.5674923 1.5803881
## 2104 100005190 14773.839 1.5674923 1.5803881
## 2105 100005193 4924.613 0.5224974 0.5267960
## 2106 100005203 9849.226 1.0449949 1.0535921
## 2107 100005204 4924.613 0.5224974 0.5267960
## 2108 100005205 14773.839 1.5674923 1.5803881
## 2109 100005206 14773.839 1.5674923 1.5803881
## 2110 100005209 9849.226 1.0449949 1.0535921
## 2111 100005210 4924.613 0.5224974 0.5267960
## 2112 100005212 4924.613 0.5224974 0.5267960
## 2113 100005213 9849.226 1.0449949 1.0535921
## 2114 100005217 9849.226 1.0449949 1.0535921
## 2115 100005219 14773.839 1.5674923 1.5803881
## 2116 100005223 9849.226 1.0449949 1.0535921
## 2117 100005226 9849.226 1.0449949 1.0535921
## 2118 100005227 9849.226 1.0449949 1.0535921
## 2119 100005228 9849.226 1.0449949 1.0535921
## 2120 100005230 9849.226 1.0449949 1.0535921
## 2121 100005231 4924.613 0.5224974 0.5267960
## 2122 100005233 14773.839 1.5674923 1.5803881
## 2123 100005235 9849.226 1.0449949 1.0535921
## 2124 100005237 14773.839 1.5674923 1.5803881
## 2125 100005238 9849.226 1.0449949 1.0535921
## 2126 100005240 4924.613 0.5224974 0.5267960
## 2127 100005244 4924.613 0.5224974 0.5267960
## 2128 100005245 4924.613 0.5224974 0.5267960
## 2129 100005246 9849.226 1.0449949 1.0535921
## 2130 100005247 9849.226 1.0449949 1.0535921
## 2131 100005250 14773.839 1.5674923 1.5803881
## 2132 100005253 4924.613 0.5224974 0.5267960
## 2133 100005258 9849.226 1.0449949 1.0535921
## 2134 100005265 9849.226 1.0449949 1.0535921
## 2135 100005267 4924.613 0.5224974 0.5267960
## 2136 100005271 9849.226 1.0449949 1.0535921
## 2137 100005274 9849.226 1.0449949 1.0535921
## 2138 100005275 9849.226 1.0449949 1.0535921
## 2139 100005279 9849.226 1.0449949 1.0535921
## 2140 100005282 9849.226 1.0449949 1.0535921
## 2141 100005283 9849.226 1.0449949 1.0535921
## 2142 100005284 9849.226 1.0449949 1.0535921
## 2143 100005289 4924.613 0.5224974 0.5267960
## 2144 100005290 4924.613 0.5224974 0.5267960
## 2145 100005294 4924.613 0.5224974 0.5267960
## 2146 100005295 9849.226 1.0449949 1.0535921
## 2147 100005297 14773.839 1.5674923 1.5803881
## 2148 100005307 9849.226 1.0449949 1.0535921
## 2149 100005308 4924.613 0.5224974 0.5267960
## 2150 100005311 19698.452 2.0899897 2.1071842
## 2151 100005313 14773.839 1.5674923 1.5803881
## 2152 100005314 4924.613 0.5224974 0.5267960
## 2153 100005316 9849.226 1.0449949 1.0535921
## 2154 100005320 4924.613 0.5224974 0.5267960
## 2155 100005324 19698.452 2.0899897 2.1071842
## 2156 100005325 9849.226 1.0449949 1.0535921
## 2157 100005334 9849.226 1.0449949 1.0535921
## 2158 100005337 9849.226 1.0449949 1.0535921
## 2159 100005338 9849.226 1.0449949 1.0535921
## 2160 100005343 19698.452 2.0899897 2.1071842
## 2161 100005344 4924.613 0.5224974 0.5267960
## 2162 100005348 4924.613 0.5224974 0.5267960
## 2163 100005352 9849.226 1.0449949 1.0535921
## 2164 100005353 9849.226 1.0449949 1.0535921
## 2165 100005357 4924.613 0.5224974 0.5267960
## 2166 100005358 14773.839 1.5674923 1.5803881
## 2167 100005361 4924.613 0.5224974 0.5267960
## 2168 100005363 9849.226 1.0449949 1.0535921
## 2169 100005376 19698.452 2.0899897 2.1071842
## 2170 100005377 4924.613 0.5224974 0.5267960
## 2171 100005380 9849.226 1.0449949 1.0535921
## 2172 100005384 9849.226 1.0449949 1.0535921
## 2173 100005385 14773.839 1.5674923 1.5803881
## 2174 100005387 9849.226 1.0449949 1.0535921
## 2175 100005389 9849.226 1.0449949 1.0535921
## 2176 100005394 9849.226 1.0449949 1.0535921
## 2177 100005395 9849.226 1.0449949 1.0535921
## 2178 100005396 9849.226 1.0449949 1.0535921
## 2179 100005398 4924.613 0.5224974 0.5267960
## 2180 100005400 9849.226 1.0449949 1.0535921
## 2181 100005401 9849.226 1.0449949 1.0535921
## 2182 100005403 14773.839 1.5674923 1.5803881
## 2183 100005405 9849.226 1.0449949 1.0535921
## 2184 100005406 9849.226 1.0449949 1.0535921
## 2185 100005407 9849.226 1.0449949 1.0535921
## 2186 100005408 9849.226 1.0449949 1.0535921
## 2187 100005410 24623.065 2.6124871 2.6339802
## 2188 100005413 9849.226 1.0449949 1.0535921
## 2189 100005416 9849.226 1.0449949 1.0535921
## 2190 100005418 4924.613 0.5224974 0.5267960
## 2191 100005419 9849.226 1.0449949 1.0535921
## 2192 100005420 9849.226 1.0449949 1.0535921
## 2193 100005423 14773.839 1.5674923 1.5803881
## 2194 100005425 4924.613 0.5224974 0.5267960
## 2195 100005426 4924.613 0.5224974 0.5267960
## 2196 100005427 19698.452 2.0899897 2.1071842
## 2197 100005428 4924.613 0.5224974 0.5267960
## 2198 100005436 4924.613 0.5224974 0.5267960
## 2199 100005443 24623.065 2.6124871 2.6339802
## 2200 100005446 9849.226 1.0449949 1.0535921
## 2201 100005448 9849.226 1.0449949 1.0535921
## 2202 100005450 9849.226 1.0449949 1.0535921
## 2203 100005451 4924.613 0.5224974 0.5267960
## 2204 100005452 4924.613 0.5224974 0.5267960
## 2205 100005455 9849.226 1.0449949 1.0535921
## 2206 100005456 9849.226 1.0449949 1.0535921
## 2207 100005457 9849.226 1.0449949 1.0535921
## 2208 100005459 4924.613 0.5224974 0.5267960
## 2209 100005460 9849.226 1.0449949 1.0535921
## 2210 100005464 4924.613 0.5224974 0.5267960
## 2211 100005470 4924.613 0.5224974 0.5267960
## 2212 100005472 4924.613 0.5224974 0.5267960
## 2213 100005474 54170.743 5.7474717 4.0000000
## 2214 100005475 4924.613 0.5224974 0.5267960
## 2215 100005478 4924.613 0.5224974 0.5267960
## 2216 100005480 9849.226 1.0449949 1.0535921
## 2217 100005481 9849.226 1.0449949 1.0535921
## 2218 100005482 4924.613 0.5224974 0.5267960
## 2219 100005486 4924.613 0.5224974 0.5267960
## 2220 100005489 4924.613 0.5224974 0.5267960
## 2221 100005492 4924.613 0.5224974 0.5267960
## 2222 100005494 4924.613 0.5224974 0.5267960
## 2223 100005496 4924.613 0.5224974 0.5267960
## 2224 100005500 4924.613 0.5224974 0.5267960
## 2225 100005501 9849.226 1.0449949 1.0535921
## 2226 100005502 9849.226 1.0449949 1.0535921
## 2227 100005503 4924.613 0.5224974 0.5267960
## 2228 100005507 9849.226 1.0449949 1.0535921
## 2229 100005511 19698.452 2.0899897 2.1071842
## 2230 100005514 24623.065 2.6124871 2.6339802
## 2231 100005516 9849.226 1.0449949 1.0535921
## 2232 100005519 9849.226 1.0449949 1.0535921
## 2233 100005520 9849.226 1.0449949 1.0535921
## 2234 100005521 4924.613 0.5224974 0.5267960
## 2235 100005527 4924.613 0.5224974 0.5267960
## 2236 100005528 4924.613 0.5224974 0.5267960
## 2237 100005535 4924.613 0.5224974 0.5267960
## 2238 100005536 9849.226 1.0449949 1.0535921
## 2239 100005537 9849.226 1.0449949 1.0535921
## 2240 100005539 9849.226 1.0449949 1.0535921
## 2241 100005540 4924.613 0.5224974 0.5267960
## 2242 100005544 9849.226 1.0449949 1.0535921
## 2243 100005547 4924.613 0.5224974 0.5267960
## 2244 100005548 78793.809 8.3599589 4.0000000
## 2245 100005552 19698.452 2.0899897 2.1071842
## 2246 100005553 9849.226 1.0449949 1.0535921
## 2247 100005555 4924.613 0.5224974 0.5267960
## 2248 100005557 9849.226 1.0449949 1.0535921
## 2249 100005558 9849.226 1.0449949 1.0535921
## 2250 100005560 19698.452 2.0899897 2.1071842
## 2251 100005562 9849.226 1.0449949 1.0535921
## 2252 100005566 9849.226 1.0449949 1.0535921
## 2253 100005567 4924.613 0.5224974 0.5267960
## 2254 100005569 9849.226 1.0449949 1.0535921
## 2255 100005570 4924.613 0.5224974 0.5267960
## 2256 100005571 9849.226 1.0449949 1.0535921
## 2257 100005572 9849.226 1.0449949 1.0535921
## 2258 100005590 9849.226 1.0449949 1.0535921
## 2259 100005591 4924.613 0.5224974 0.5267960
## 2260 100005592 4924.613 0.5224974 0.5267960
## 2261 100005593 9849.226 1.0449949 1.0535921
## 2262 100005594 9849.226 1.0449949 1.0535921
## 2263 100005597 9849.226 1.0449949 1.0535921
## 2264 100005599 4924.613 0.5224974 0.5267960
As I mentioned before, base weights should sum up to the entire population from which the sample is drawn or to the total number of respondents if scaled (as they did in the ESS).
The second basic step in weighting a survey is accounting for differences in the propensity to respond. Imagine a situation in which a profile of sampled units had higher propensity to respond than another profile. Imagine as well that the characteristics of both profiles were associated to our y variables (here alcohol and cigarretes consumption). This would create a bias in our analyses.
If we compute the sample ourselves, we can also compute the probability of a unit of being sampled. Computing the probability of replying to the survey is, however, more challenging. As we can not direclty observe the probability of a unit of replying to the survey, we need to estimate it. This is done using information which we know for both respondent and non-respondent units. Here it is useful to think about the probability of response as a latent (i.e. not directly observable) variable.
There are two main ways of using this information. The first one would be creating cells from variable intersections (i.e. sampled units 15-24 & countryside; 15-24 & cities; 25-34 & countryside, etc.) and then calculate the probability of response in each cell. The second method is to estimate the probability of response by modelling it.
The first approach has the advantage of being more simple. However, computing a large number of cells from crossing variable could most probably lead to having empty cells or cells with a very small number of sampled units. The probability estimated for these cells with smaller number of units could be far from the real one. We could apply it if we thought that the probability of responding can actually be explained by the variable intersections we used.
The second approach relies on the modelling skills of the researcher computing the weights. In order to estimate the proability of response we need to predict it. ‘Predictive modelling’ is slightly different than the usual ‘inference modelling’. Here we are not interested in understanding the causes of differences in response propensities. We are just interested in predicting these. Therefore, we should take a ‘data driven’ approach that differs from those we usually see in social sciences. For an excellent introduction to ‘predictive statistics’ you can check the free book ‘An Introduction to Statistical Learning’ by James et al..
This is not a guide on ‘predictive modelling’. However, it might be worth it to very briefly explain the basic principle behind it. We should try to build a model which is able to estimate the probability using only ‘relevant’ information and excluding ‘noise’ from the model. Therefore, a predictive model should be fitting the observed data well enough but at the same time not too specific to it.
For this specific case of non-response weighting, we are especially interested in using propensity predictors which are related to both the response propensity and our dependent variables.
Here we will use the paradata information to model the probability of response. The variables describing the type of house and the immediate vicinity around houses have a relatively small number of missing values (~ 8%) these missings seem to be related (i.e. all columns missing). Those sampled units that have missing values on all these paradata variables are always non-respondents. It would be useful to know why this pattern exists. I would guess that these are sampled units which interviewers could not reach for some reason. For this analysis, we will not use these units with missing values in ALL paradata variables. This should only result in a linear transformation of the estimated probabilities of response.
data.nonresponse.model <- data[vars.paradata] %>% select(idno, interva, type:vandaa)
data.nonresponse.model$all.missing <- NA
data.nonresponse.model$all.missing[is.na(data.nonresponse.model$type) &
is.na(data.nonresponse.model$access) &
is.na(data.nonresponse.model$physa) &
is.na(data.nonresponse.model$littera) &
is.na(data.nonresponse.model$vandaa)] <- 1
data.nonresponse.model %<>%
filter(is.na(all.missing)) %>%
select(-all.missing)
indep.vars.nonresponse <- c("type", "access", "physa", "littera", "vandaa")
data.nonresponse.model[,c("type", "access")] %<>% map(function(x){as.character(x)})
data.nonresponse.model %>% map(function(x){sum(is.na(x))})
## $idno
## [1] 0
##
## $interva
## [1] 0
##
## $type
## [1] 13
##
## $access
## [1] 15
##
## $physa
## [1] 6
##
## $littera
## [1] 0
##
## $vandaa
## [1] 0
# Missing category for missings in multinomial variables.
for(i in c("type", "access")) {
data.nonresponse.model[[i]][is.na(data.nonresponse.model[[i]])] <- "Missing"
}
# Mean imputation for ordinal variables.
for(i in c("physa", "littera", "vandaa")) {
data.nonresponse.model[[i]][is.na(data.nonresponse.model[[i]])] <- levels(data.nonresponse.model[[i]])[median(data.nonresponse.model[[i]] %>% as.numeric(), na.rm = T) ]
}
data.nonresponse.model %<>%
mutate(response = as.numeric(as.numeric(interva) == 1))
mean(data.nonresponse.model$response) # Create a new paragraph for the adjustment of the log reg and delete this.
## [1] 0.4414344
Valliant et al (2013) recommend estimating the response propensities and then grouping them in classes. This should avoid extreme weights. One way of estimating the response propensities is using logistic regression. This logistic regression should be unweighted. Later in this section we will try other ways of computing estimates of response propensities.
In order to do a Logistic regression in R, we need to specify the dependent variable (response) and predictors (type, access, physa, littera and vandaa) in a formula. Then we input the formula and the dataset into the ‘lm’ function.
formula <- as.formula("response ~ type + access + physa + littera + vandaa")
options(na.action = 'na.pass')
x.matrix <- model.matrix(formula, data = data.nonresponse.model)[, -1]
log.reg.m <- glm(formula,
data = data.nonresponse.model,
family = "binomial")
coef.response.log <- coef(log.reg.m)
predicted.log <- log.reg.m$fitted.values
data.nonresponse.model$predicted.log <- predicted.log
predicted.log %>% head()
## 1 2 3 4 5 6
## 0.4101303 0.4586384 0.4675598 0.5551654 0.4117369 0.5143249
rm(coef.response.log, formula, i, log.reg.m)
Here I’ll follow the procedure for creating classes explained in pag. 329 of Valliant et al. It is not so clear how many classes should be created.
Looking at the distribution of estimated probabilities of response, we observe a large majority of values between 0.4 and 0.5. However, there are several outliers at both ends of the distribution.
As there is not so much dispersion in values in the middle of the distribution, creating classess accoring to quintiles might not be the best way to account for differences in estimated response propensities. However, other methods might create classess which are too specific to outliers. This is kind of a bias-variance trade off. If we fit broad classes which encompass very different estimated probabilities within them, we will be adjusting less and so keeping more bias in our estiamtes. If we create tight classes capturing these outliers, then we will have large differences in weights and so more variance in our estimates.
predicted.log %>% quantile(probs = seq(0,1,0.05)) %>% round(4)
## 0% 5% 10% 15% 20% 25% 30% 35% 40% 45%
## 0.0135 0.3064 0.3662 0.3847 0.4101 0.4117 0.4238 0.4254 0.4431 0.4447
## 50% 55% 60% 65% 70% 75% 80% 85% 90% 95%
## 0.4447 0.4586 0.4586 0.4586 0.4591 0.4591 0.4849 0.5284 0.5288 0.5288
## 100%
## 0.7689
These are the 5 classes created using 20th, 40th, 60th and 80th quintiles.
data.nonresponse.model$predicted.class <- cut(x = data.nonresponse.model$predicted.log, breaks = c(0,quantile(predicted.log, probs = seq(0,1,0.2))[-1] ))
data.nonresponse.model$predicted.class %>% levels()
## [1] "(0,0.41]" "(0.41,0.443]" "(0.443,0.459]" "(0.459,0.485]"
## [5] "(0.485,0.769]"
And below there is a summary of the estimated propensities included in each of them (in boxplots).We can see that the first and last groups have more dispersion in propensities. The middle three groups have very little dispersion and are similar between them.
ggplot(data.nonresponse.model, aes(x = predicted.class, y = predicted.log)) +
geom_boxplot()
To compute the non-response weights, we can use the mean estimated probability of response in each class.
data.nonresponse.model %>%
group_by(predicted.class) %>%
summarise(mean.prob = mean(predicted.log) %>% round(4))
## # A tibble: 5 × 2
## predicted.class mean.prob
## <fctr> <dbl>
## 1 (0,0.41] 0.3479
## 2 (0.41,0.443] 0.4233
## 3 (0.443,0.459] 0.4530
## 4 (0.459,0.485] 0.4608
## 5 (0.485,0.769] 0.5367
And then we can compute the non-response weight as the inverse of the mean probabilities in each class.
data.nonresponse.model %<>% left_join(
data.nonresponse.model %>%
group_by(predicted.class) %>%
summarise(mean.prob = mean(predicted.log) ), by = "predicted.class")
data.nonresponse.model %<>%
mutate(nonresp.weight = round(1/mean.prob, 4) )
data.nonresponse.model$nonresp.weight %>% unique %>% sort
## [1] 1.8634 2.1700 2.2073 2.3626 2.8742
After creating the classes, a good practice would be to check for covariate balance. This procedure is explained in pag. 330 of Valliant et al. Units in the same class should have similar values in covariates. At the same time, we would ideally find differencess between classes. In plain words, here we would check if classe are made of homogeneous units (within-class check) and if classes really distinguish different profiles of these (between-class check). For the within-group check, we are especially interested in checking if profiles of respondents and non-respondents within each class are similar.
In my opinion, the best way of doing this analysis is by fitting two different regressions for each covariate. As an example I will do the balance analysis for the ordinal covariate physa. In a real analysis this should be repeated for all covariates.
For the between-class check, we can fit a model only with class predictors. This should show if classes explain differences in covariate variables. As we have an ordinal covariate (physa), I will use al ordered logistic regression. An alternative would be to treat the covariate as a continous varaible and use an OLS regression.
The variable physa compares the ‘Overall physical condition building/house’. The variable is negativelly coded so larger values mean worse physical condition. The coefficients of the ordered logistic regression show that the larger the estimated propensity, the smaller the probability of being in bad physical conditions. Therefore, people in houses with worse physical conditions would have smaller response propensity and so be underrepresented in our sample. From the coefficients below we see that the classes we have created for non-response adjustment somehow explain differences in our analysed covariate. However, ideally we would have a more clear effect of classes on our covariate. We see that the second adjustment class created (that for estimated propensities between 0.41 and 0.443) actually has larger probabilities of having worse physical conditions than the base category (0 to 0.41). At the same time, the third and fourth categories (0.443 to 0.459) and (0.459 to 0.485) have very similar coefficients, which might indicate that they do not really distinguish different classes of sampled units.
formula. <- as.formula("physa ~ predicted.class")
test.between.model <- polr(formula = formula., data = data.nonresponse.model, method = "logistic")
ctable.between <- coef(summary(test.between.model))
p <- pnorm(abs(ctable.between[, "t value"]), lower.tail = FALSE) %>% round(4)
ctable.between <- cbind(ctable.between, "p value" = p)
ctable.between
## Value Std. Error t value p value
## predicted.class(0.41,0.443] 0.4616699 0.08909791 5.181602 0
## predicted.class(0.443,0.459] -3.0018358 0.10543331 -28.471419 0
## predicted.class(0.459,0.485] -2.8379051 0.12184972 -23.290207 0
## predicted.class(0.485,0.769] -7.1107000 0.14993912 -47.423915 0
## Very good|Good -5.1316957 0.11232331 -45.686826 0
## Good|Satisfactory -0.6246051 0.06405379 -9.751260 0
## Satisfactory|Bad 2.5006755 0.08826855 28.330310 0
## Bad|Very bad 4.6467655 0.20292616 22.898799 0
For the within-class check, we can extend our model to include interactions between class and response. This will check if, within a non-response class, there are differences between respondents and non-respondents in our covariate physa (ideally they wouldn’t be and we would not find them).
In this second test (see coefficients below) we see that one of the interactions has a significant coefficient at 5% confidence level. Ideally, all interaction terms would be non-significant, meaning that we do not observe within-group differences between respondents and non-respondents in our covariates. A way of dealing with this situation with one significant coefficient would be to explore other ways of spliting units into classes. However, as explained before, these other categorisations would have drawbacks in terms of inflated variance. Moreover, if we have a large number of classes and covariates, we would expect to find significant coefficients just by chance. Therefore, as long as these unbalances are not extended most classes and covariates, reporting these unbalances should be enough.
formula. <- as.formula("physa ~ response + predicted.class + response * predicted.class")
test.within.model <- polr(formula = formula., data = data.nonresponse.model, method = "logistic")
ctable.within <- coef(summary(test.within.model))
p <- pnorm(abs(ctable.within[, "t value"]), lower.tail = FALSE) %>% round(4)
ctable.within <- cbind(ctable.within, "p value" = p)
ctable.within
## Value Std. Error t value
## response 0.16629093 0.12952169 1.28388484
## predicted.class(0.41,0.443] 0.59606463 0.11503347 5.18166279
## predicted.class(0.443,0.459] -2.93757529 0.12899719 -22.77239763
## predicted.class(0.459,0.485] -2.70924911 0.15584853 -17.38386062
## predicted.class(0.485,0.769] -7.13945161 0.19426167 -36.75172547
## response:predicted.class(0.41,0.443] -0.34119548 0.18198801 -1.87482398
## response:predicted.class(0.443,0.459] -0.18968461 0.18651462 -1.01699595
## response:predicted.class(0.459,0.485] -0.32814861 0.22822726 -1.43781515
## response:predicted.class(0.485,0.769] -0.02271575 0.23907967 -0.09501331
## Very good|Good -5.07916071 0.12147163 -41.81355457
## Good|Satisfactory -0.56711343 0.07902913 -7.17600521
## Satisfactory|Bad 2.56185632 0.10036301 25.52590104
## Bad|Very bad 4.70784119 0.20850649 22.57887082
## p value
## response 0.0996
## predicted.class(0.41,0.443] 0.0000
## predicted.class(0.443,0.459] 0.0000
## predicted.class(0.459,0.485] 0.0000
## predicted.class(0.485,0.769] 0.0000
## response:predicted.class(0.41,0.443] 0.0304
## response:predicted.class(0.443,0.459] 0.1546
## response:predicted.class(0.459,0.485] 0.0752
## response:predicted.class(0.485,0.769] 0.4622
## Very good|Good 0.0000
## Good|Satisfactory 0.0000
## Satisfactory|Bad 0.0000
## Bad|Very bad 0.0000
rm(formula., test.within.model, p)
Adjust log reg!
Glmnet alternative
flds <- createFolds(data.nonresponse.model$response, k = 10, list = TRUE, returnTrain = FALSE)
library(cvAUC)
ci.cvAUC(predicted.log, data.nonresponse.model$response, folds = flds, confidence = 0.95)
cvAUC
ctrl <- trainControl(method = "repeatedcv", number = 10, savePredictions = TRUE)
mod_binomial <- train(response ~ type + access + physa + littera + vandaa, data=data.nonresponse.model, method="glm", family="binomial", trControl = ctrl)
predicted <- mod_binomial$finalModel$fitted.values
predicted. <- function(t) ifelse(predicted > t , 1,0)
confusionMatrix(predicted.(0.5), data.nonresponse.model$response)
mod_rf <- train(as.factor(response) ~ type + access + physa + littera + vandaa, data=data.nonresponse.model, method="rf", trControl = ctrl)